Skip to content

Commit

Permalink
Fix for load kernal when overlay screen is selected at cold boot.
Browse files Browse the repository at this point in the history
  • Loading branch information
GideonZ committed Jul 23, 2021
1 parent e204239 commit 40d8076
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion software/io/c64/c64.cc
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ C64::C64()

C64_STOP_MODE = STOP_COND_FORCE;
C64_MODE = MODE_NORMAL;
isFrozen = ((C64_STOP & C64_HAS_STOPPED) == C64_HAS_STOPPED);
isFrozen = false; // ((C64_STOP & C64_HAS_STOPPED) == C64_HAS_STOPPED); Freeze is not the same as stop
backupIsValid = false;
buttonPushSeen = false;
client = 0;
Expand Down

0 comments on commit 40d8076

Please sign in to comment.