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:
nattthebear 2020-12-12 13:40:33 -05:00
parent 2f2f104e3d
commit 6130a7241f
7 changed files with 19 additions and 1 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -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)
{