Fix native naming after new additions
This commit is contained in:
parent
84a784e28b
commit
bdf2526f80
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue