Skip to content

Commit

Permalink
use the correct swiss behavior and IPL exit
Browse files Browse the repository at this point in the history
  • Loading branch information
trevor403 committed Jan 12, 2025
1 parent 7ec4154 commit ef20edb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cubeboot/source/config.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
// #define TEST_SKIP_ANIMATION
// #define DOLPHIN_DELAY_ENABLE

#define CONFIG_BETA_RC "09"
#define CONFIG_BETA_RC "10"

// #define USE_FAT_LIBFAT
// #define USE_FAT_FATFS
Expand Down
2 changes: 1 addition & 1 deletion patches/source/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -450,7 +450,7 @@ __attribute_used__ void bs2start() {
bool is_xeno_crisis = (game_code[0] == 'G' && game_code[1] == 'C' && game_code[2] == 'R');
bool use_swiss_patches = force_swiss_boot;

if (force_legacy_boot || is_xeno_crisis) {
if ((force_legacy_boot && !use_swiss_patches) || is_xeno_crisis) {
custom_OSReport("Booting ISO (custom apploader)\n");
legacy_chainload_boot_game(&boot_entry, false);
} else {
Expand Down

0 comments on commit ef20edb

Please sign in to comment.