IDE support for Uneon core.

This commit is contained in:
Sorgelig
2023-10-24 22:36:22 +08:00
parent 64b6cc5a88
commit 4fab9a5aa7
5 changed files with 41 additions and 8 deletions

View File

@@ -2333,6 +2333,12 @@ void HandleUI(void)
}
else
{
if (!bit && is_uneon())
{
x86_ide_set();
menustate = MENU_NONE1;
}
if (is_megacd())
{
if (!bit) mcd_set_image(0, "");
@@ -2462,7 +2468,7 @@ void HandleUI(void)
char idx = user_io_ext_idx(selPath, fs_pFileExt) << 6 | ioctl_index;
if (addon[0] == 'f' && addon[1] != '1') process_addon(addon, idx);
else if (is_x86() || is_pcxt())
else if (is_x86() || is_pcxt() || (is_uneon() && idx >= 2))
{
x86_set_image(ioctl_index, selPath);
}