mirror of https://github.com/bsnes-emu/bsnes.git
Fixed a silly bug that prevented libretro automatic model selection from functioning correctly.
This commit is contained in:
parent
95234036bb
commit
f3c07f1f99
|
@ -391,6 +391,7 @@ bool retro_load_game(const struct retro_game_info *info)
|
|||
|
||||
snprintf(retro_game_path, sizeof(retro_game_path), "%s", info->path);
|
||||
|
||||
auto_model = (info->path[strlen(info->path) - 1] & ~0x20) == 'C' ? MODEL_CGB : MODEL_DMG;
|
||||
init_for_current_model();
|
||||
|
||||
if (GB_load_rom(&gb,info->path)) {
|
||||
|
@ -398,8 +399,6 @@ bool retro_load_game(const struct retro_game_info *info)
|
|||
return false;
|
||||
}
|
||||
|
||||
auto_model = (info->path[strlen(info->path) - 1] & ~0x20) == 'c' ? MODEL_CGB : MODEL_DMG;
|
||||
|
||||
bool yes = true;
|
||||
environ_cb(RETRO_ENVIRONMENT_SET_SUPPORT_ACHIEVEMENTS, &yes);
|
||||
|
||||
|
|
Loading…
Reference in New Issue