From f6cc4c17494d84398bc7659cc57a33964b5ab5d0 Mon Sep 17 00:00:00 2001 From: nattthebear Date: Sat, 22 Jul 2017 17:07:27 -0400 Subject: [PATCH] stuff --- BizHawk.Emulation.Cores/Consoles/Sega/gpgx64/GPGX.IEmulator.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/BizHawk.Emulation.Cores/Consoles/Sega/gpgx64/GPGX.IEmulator.cs b/BizHawk.Emulation.Cores/Consoles/Sega/gpgx64/GPGX.IEmulator.cs index 5e3cefb72b..e0a3ac20b1 100644 --- a/BizHawk.Emulation.Cores/Consoles/Sega/gpgx64/GPGX.IEmulator.cs +++ b/BizHawk.Emulation.Cores/Consoles/Sega/gpgx64/GPGX.IEmulator.cs @@ -26,6 +26,9 @@ namespace BizHawk.Emulation.Cores.Consoles.Sega.gpgx if (next && !_nextDiskPressed) newDisk++; + _prevDiskPressed = prev; + _nextDiskPressed = next; + if (newDisk < -1) newDisk = -1; if (newDisk >= _cds.Length)