|
|
|
|
@ -1453,7 +1453,7 @@ void SDLHostInterface::DoStartDisc()
|
|
|
|
|
Assert(!m_system);
|
|
|
|
|
|
|
|
|
|
nfdchar_t* path = nullptr;
|
|
|
|
|
if (!NFD_OpenDialog("bin,img,cue,exe,psexe", nullptr, &path) || !path || std::strlen(path) == 0)
|
|
|
|
|
if (!NFD_OpenDialog("bin,img,cue,chd,exe,psexe", nullptr, &path) || !path || std::strlen(path) == 0)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
AddFormattedOSDMessage(2.0f, "Starting disc from '%s'...", path);
|
|
|
|
|
@ -1489,7 +1489,7 @@ void SDLHostInterface::DoChangeDisc()
|
|
|
|
|
Assert(m_system);
|
|
|
|
|
|
|
|
|
|
nfdchar_t* path = nullptr;
|
|
|
|
|
if (!NFD_OpenDialog("bin,img,cue,exe,psexe", nullptr, &path) || !path || std::strlen(path) == 0)
|
|
|
|
|
if (!NFD_OpenDialog("bin,img,cue,chd,exe,psexe", nullptr, &path) || !path || std::strlen(path) == 0)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
if (m_system->InsertMedia(path))
|
|
|
|
|
|