change default disc select input to 1 instead of -1. i think the -1 was an older idea which isnt needed anymore

This commit is contained in:
zeromus 2015-07-17 16:04:56 -05:00
parent 5bae8df811
commit 0e7a82db28
1 changed files with 3 additions and 1 deletions

View File

@ -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}
);
}