mirror of
https://github.com/libretro/RetroArch
synced 2025-02-01 00:32:46 +00:00
Merge pull request #116 from alphanu1/alphanu1-patch-103
change super resolution 1 to read DYNAMIC
This commit is contained in:
commit
a27b4e1912
@ -1198,11 +1198,11 @@ static void setting_get_string_representation_crt_switch_resolution_super(
|
||||
strlcpy(s, msg_hash_to_str(MSG_NATIVE), len);
|
||||
else
|
||||
snprintf(s, len, "%d", *setting->value.target.unsigned_integer);
|
||||
|
||||
/* TO DO make 1 read as DYNAMIC */
|
||||
if (*setting->value.target.unsigned_integer == 1)
|
||||
strlcpy(s, msg_hash_to_str(MSG_DYNAMIC), len);
|
||||
else
|
||||
snprintf(s, len, "%d", *setting->value.target.unsigned_integer);
|
||||
snprintf(s, len, "%d", *setting->value.target.unsigned_integer);
|
||||
}
|
||||
|
||||
static int setting_action_left_analog_dpad_mode(rarch_setting_t *setting, bool wraparound)
|
||||
|
Loading…
x
Reference in New Issue
Block a user