diff options
author | Joe Rmz | 2018-04-25 19:43:32 -0500 |
---|---|---|
committer | Joe Rmz | 2018-04-25 19:43:32 -0500 |
commit | f4cceff67b56fe112f6440b7e9c97238fb7b1e69 (patch) | |
tree | 8b70d4253ed729c9f1e4df2f01fcc906690a63d6 /frontend | |
parent | 80f9de579899d0345ee1d4589fd0ddbcb6fa0c73 (diff) | |
download | pcsx_rearmed-f4cceff67b56fe112f6440b7e9c97238fb7b1e69.tar.gz pcsx_rearmed-f4cceff67b56fe112f6440b7e9c97238fb7b1e69.tar.bz2 pcsx_rearmed-f4cceff67b56fe112f6440b7e9c97238fb7b1e69.zip |
Fix region core option. Fixed value to match setting and removed harcoded config value.
Diffstat (limited to 'frontend')
-rw-r--r-- | frontend/libretro.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/frontend/libretro.c b/frontend/libretro.c index 9d99413..70dc171 100644 --- a/frontend/libretro.c +++ b/frontend/libretro.c @@ -437,7 +437,7 @@ void retro_set_environment(retro_environment_t cb) { static const struct retro_variable vars[] = { { "pcsx_rearmed_frameskip", "Frameskip; 0|1|2|3" }, - { "pcsx_rearmed_region", "Region; Auto|NTSC|PAL" }, + { "pcsx_rearmed_region", "Region; auto|NTSC|PAL" }, { "pcsx_rearmed_pad1type", "Pad 1 Type; default|none|standard|analog|negcon" }, { "pcsx_rearmed_pad2type", "Pad 2 Type; default|none|standard|analog|negcon" }, { "pcsx_rearmed_pad3type", "Pad 3 Type; default|none|standard|analog|negcon" }, @@ -1251,7 +1251,6 @@ bool retro_load_game(const struct retro_game_info *info) plugin_call_rearmed_cbs(); dfinput_activate(); - Config.PsxAuto = 1; if (CheckCdrom() == -1) { log_cb(RETRO_LOG_INFO, "unsupported/invalid CD image: %s\n", info->path); return false; @@ -1340,7 +1339,7 @@ static void update_variables(bool in_flight) if (environ_cb(RETRO_ENVIRONMENT_GET_VARIABLE, &var) || var.value) { Config.PsxAuto = 0; - if (strcmp(var.value, "Automatic") == 0) + if (strcmp(var.value, "auto") == 0) Config.PsxAuto = 1; else if (strcmp(var.value, "NTSC") == 0) Config.PsxType = 0; |