Skip to content

Commit

Permalink
Swiss Cleanboot has a bug where it forces BS2 to run
Browse files Browse the repository at this point in the history
  • Loading branch information
trevor403 committed Jan 11, 2025
1 parent c4bdcc8 commit 550cf45
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cubeboot/source/settings.c
Original file line number Diff line number Diff line change
Expand Up @@ -114,9 +114,9 @@ void load_settings() {
}

// force_legacy_boot
int force_legacy_boot = 0;
int force_legacy_boot = 1;
if (!ini_sget(conf, "cubeboot", "force_legacy_boot", "%d", &force_legacy_boot)) {
settings.force_legacy_boot = 0;
settings.force_legacy_boot = 1;
} else {
iprintf("Found force_legacy_boot = %d\n", force_legacy_boot);
settings.force_legacy_boot = force_legacy_boot;
Expand Down

0 comments on commit 550cf45

Please sign in to comment.