Fix native naming after new additions

This commit is contained in:
alphanu1 2019-02-12 15:58:41 +00:00
parent 84a784e28b
commit bdf2526f80

View File

@ -1195,10 +1195,11 @@ static void setting_get_string_representation_crt_switch_resolution_super(
return;
if (*setting->value.target.unsigned_integer == 0)
strlcpy(s, msg_hash_to_str(MSG_NATIVE), len);
strlcpy(s, "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, "DYNAMIC", len);
else