when quicknes doesn't support a game and we magically fallback to neshawk, show a message on screen, since nobody reads the statusbar information

This commit is contained in:
adelikat 2015-04-19 14:29:26 +00:00
parent 0d59fd622e
commit e8cc7f5cc9
1 changed files with 5 additions and 0 deletions

View File

@ -536,6 +536,11 @@ namespace BizHawk.Client.Common
// Specific hack here, as we get more cores of the same system, this isn't scalable
if (ex is UnsupportedGameException)
{
if (system == "NES")
{
DoMessageCallback("Unable to use quicknes, using NESHawk instead");
}
return LoadRom(path, nextComm, forceAccurateCore: true);
}
else if (ex is MissingFirmwareException)