Skip to content

Commit

Permalink
Remove unneeded check
Browse files Browse the repository at this point in the history
  • Loading branch information
RocketRobz committed Jul 5, 2023
1 parent 9134a03 commit d197e80
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion title/arm9/source/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -504,7 +504,7 @@ void lastRunROM()
fclose(f_nds_file);

if ((perGameSettings_useBootstrap == -1 ? ms().useBootstrap : perGameSettings_useBootstrap) || !ms().previousUsedDevice || (dsiFeatures() && unitCode > 0 && (perGameSettings_dsiMode == -1 ? DEFAULT_DSI_MODE : perGameSettings_dsiMode))
|| (game_TID[0] == 'D' && unitCode == 3)) {
|| unitCode == 3) {
std::string savepath;

bool useWidescreen = (perGameSettings_wideScreen == -1 ? ms().wideScreen : perGameSettings_wideScreen);
Expand Down

0 comments on commit d197e80

Please sign in to comment.