Skip to content

Commit

Permalink
- Add exception for PAL games booted through IPL.
Browse files Browse the repository at this point in the history
  • Loading branch information
Extrems committed Feb 27, 2020
1 parent 24993dc commit 6b40ae9
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions cube/swiss/source/swiss.c
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,11 @@ void ogc_video__reset()
__SYS_UnlockSram(1);
while(!__SYS_SyncSram());

if(region == 'P' && swissSettings.bs2Boot) {
if(swissSettings.gameVMode >= 1 && swissSettings.gameVMode <= 7)
swissSettings.gameVMode += 7;
}

for(i = 0; i < sizeof(DiscIDNoNTSC)/sizeof(char*); i++) {
if(!strncmp(gameID, DiscIDNoNTSC[i], 6)) {
if(swissSettings.gameVMode >= 1 && swissSettings.gameVMode <= 7)
Expand Down

0 comments on commit 6b40ae9

Please sign in to comment.