From 0e7a82db28342fe7356414768268f5e333356ea1 Mon Sep 17 00:00:00 2001 From: zeromus Date: Fri, 17 Jul 2015 16:04:56 -0500 Subject: [PATCH] change default disc select input to 1 instead of -1. i think the -1 was an older idea which isnt needed anymore --- BizHawk.Emulation.Cores/Consoles/Sony/PSX/Octoshock.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/BizHawk.Emulation.Cores/Consoles/Sony/PSX/Octoshock.cs b/BizHawk.Emulation.Cores/Consoles/Sony/PSX/Octoshock.cs index a5cadae18d..4b6a143894 100644 --- a/BizHawk.Emulation.Cores/Consoles/Sony/PSX/Octoshock.cs +++ b/BizHawk.Emulation.Cores/Consoles/Sony/PSX/Octoshock.cs @@ -100,7 +100,9 @@ namespace BizHawk.Emulation.Cores.Sony.PSX ControllerDefinition.FloatControls.Add("Disc Select"); ControllerDefinition.FloatRanges.Add( - new[] {-1f,-1f,-1f} //this is carefully chosen so that we end up with a -1 disc by default (indicating that it's never been set) + //new[] {-1f,-1f,-1f} //this is carefully chosen so that we end up with a -1 disc by default (indicating that it's never been set) + //hmm.. I don't see why this wouldn't work + new[] {0f,1f,1f} ); }