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:
parent
5bae8df811
commit
0e7a82db28
|
@ -100,7 +100,9 @@ namespace BizHawk.Emulation.Cores.Sony.PSX
|
||||||
ControllerDefinition.FloatControls.Add("Disc Select");
|
ControllerDefinition.FloatControls.Add("Disc Select");
|
||||||
|
|
||||||
ControllerDefinition.FloatRanges.Add(
|
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}
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue