video: Add support for [arcade_vertical] section (#691)

This commit is contained in:
Martin Donlon
2022-09-11 00:12:46 -07:00
committed by GitHub
parent b1d6ee2f52
commit a845f8407f
4 changed files with 42 additions and 16 deletions

View File

@@ -1280,7 +1280,7 @@ void user_io_init(const char *path, const char *xml)
if (xml)
{
if (isXmlName(xml) == 1) is_arcade_type = 1;
arcade_override_name(xml);
arcade_pre_parse(xml);
}
if (core_type == CORE_TYPE_8BIT)
@@ -1318,7 +1318,7 @@ void user_io_init(const char *path, const char *xml)
xml = (const char*)defmra;
strcpy(core_path, xml);
is_arcade_type = 1;
arcade_override_name(xml);
arcade_pre_parse(xml);
user_io_read_core_name();
printf("Using default MRA: %s\n", xml);
}