From 3062b1846779354eb3ed59e6411fa5b52869ade2 Mon Sep 17 00:00:00 2001 From: nattthebear Date: Sat, 22 Jul 2017 17:37:40 -0400 Subject: [PATCH] gpgx: disable prev and next disk for now --- BizHawk.Emulation.Cores/Consoles/Sega/gpgx64/GPGX.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BizHawk.Emulation.Cores/Consoles/Sega/gpgx64/GPGX.cs b/BizHawk.Emulation.Cores/Consoles/Sega/gpgx64/GPGX.cs index 417e0a5bcb..fafb34dde3 100644 --- a/BizHawk.Emulation.Cores/Consoles/Sega/gpgx64/GPGX.cs +++ b/BizHawk.Emulation.Cores/Consoles/Sega/gpgx64/GPGX.cs @@ -376,7 +376,7 @@ namespace BizHawk.Emulation.Cores.Consoles.Sega.gpgx if (!Core.gpgx_get_control(input, inputsize)) throw new Exception("gpgx_get_control() failed"); - ControlConverter = new GPGXControlConverter(input, _cds != null); + ControlConverter = new GPGXControlConverter(input, false); // _cds != null); ControllerDefinition = ControlConverter.ControllerDef; }