mirror of https://github.com/snes9xgit/snes9x.git
libretro: Pass ROM directory for any unknown.
This commit is contained in:
parent
0eaa701954
commit
28a62e9bf2
|
@ -1795,12 +1795,10 @@ const char* S9xGetDirectory(s9x_getdirtype type)
|
||||||
{
|
{
|
||||||
switch (type)
|
switch (type)
|
||||||
{
|
{
|
||||||
case ROMFILENAME_DIR:
|
|
||||||
return g_rom_dir;
|
|
||||||
case BIOS_DIR:
|
case BIOS_DIR:
|
||||||
return retro_system_directory;
|
return retro_system_directory;
|
||||||
default:
|
default:
|
||||||
break;
|
return g_rom_dir;
|
||||||
}
|
}
|
||||||
|
|
||||||
return "";
|
return "";
|
||||||
|
|
Loading…
Reference in New Issue