Skip to content
This repository has been archived by the owner on Nov 25, 2024. It is now read-only.

Commit

Permalink
Replicating upstream fork changes to main.ts & app.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
KierPalin committed Nov 7, 2024
1 parent 94d05dd commit e8130ba
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ namespace microcode {
this.sceneManager = new SceneManager()
datalogger.includeTimestamp(FlashLogTimeStampFormat.None)

if (shieldhelpers.shieldPresent())
const arcadeShieldConnected = shieldhelpers.shieldPresent();
if (arcadeShieldConnected)
this.pushScene(new Home(this))
else
new DistributedLoggingProtocol(this, false);
Expand Down
3 changes: 2 additions & 1 deletion main.ts
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
new microcode.App();
new microcode.App();

0 comments on commit e8130ba

Please sign in to comment.