gpgx: recover from early onset alzheimer
This commit is contained in:
parent
bafd4ae62e
commit
79349aeb39
|
@ -216,12 +216,11 @@ namespace BizHawk.Emulation.Cores.Consoles.Sega.gpgx
|
|||
}
|
||||
if (firmwareID != null)
|
||||
{
|
||||
srcdata = CoreComm.CoreFileProvider.GetFirmware("GEN", firmwareID, false);
|
||||
// this path will be the most common PEBKAC error, so be a bit more vocal about the problem
|
||||
srcdata = CoreComm.CoreFileProvider.GetFirmware("GEN", firmwareID, false, "GPGX firmwares are usually required.");
|
||||
if (srcdata == null)
|
||||
{
|
||||
Console.WriteLine("Frontend couldn't satisfy firmware request GEN:{0}", firmwareID);
|
||||
// this path will be the most common PEBKAC error, so be a bit more vocal about the problem
|
||||
CoreComm.ShowMessage(string.Format("GPGX couldn't load firmware {0}. This is usually fatal.", firmwareID));
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue