From 79349aeb39e826029850beca827e7a8eb3e118ce Mon Sep 17 00:00:00 2001 From: goyuken Date: Wed, 28 May 2014 03:35:21 +0000 Subject: [PATCH] gpgx: recover from early onset alzheimer --- BizHawk.Emulation.Cores/Consoles/Sega/gpgx/GPGX.cs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/BizHawk.Emulation.Cores/Consoles/Sega/gpgx/GPGX.cs b/BizHawk.Emulation.Cores/Consoles/Sega/gpgx/GPGX.cs index e53f4f13c7..05af29fd77 100644 --- a/BizHawk.Emulation.Cores/Consoles/Sega/gpgx/GPGX.cs +++ b/BizHawk.Emulation.Cores/Consoles/Sega/gpgx/GPGX.cs @@ -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; } }