Fix Saturn cart detection
Closes #2513.
Similar to ddd229e03d
, Mednafen internals expect enumeration setting types to work with MDFN_GetSettingI, but we weren't doing that.
This commit is contained in:
parent
2f2f104e3d
commit
6130a7241f
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -164,9 +164,27 @@ namespace Mednafen
|
|||
}
|
||||
int64 MDFN_GetSettingI(const char *name)
|
||||
{
|
||||
auto s = GetSetting(name);
|
||||
char tmp[SETTING_VALUE_MAX_LENGTH];
|
||||
FrontendSettingQuery(name, tmp);
|
||||
return strtol(tmp, nullptr, 10);
|
||||
if (s && s->type == MDFNST_ENUM)
|
||||
{
|
||||
for (int i = 0; s->enum_list[i].string; i++)
|
||||
{
|
||||
if (strcmp(s->enum_list[i].string, tmp) == 0)
|
||||
return s->enum_list[i].number;
|
||||
}
|
||||
for (int i = 0; s->enum_list[i].string; i++)
|
||||
{
|
||||
if (strcmp(s->enum_list[i].string, s->default_value) == 0)
|
||||
return s->enum_list[i].number;
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
else
|
||||
{
|
||||
return strtol(tmp, nullptr, 10);
|
||||
}
|
||||
}
|
||||
double MDFN_GetSettingF(const char *name)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue