fix error in snes Select and Start button binding (was using the NES bindings due to copy/paste error)
This commit is contained in:
parent
5888536ac3
commit
88fab46b21
|
@ -166,7 +166,7 @@ namespace BizHawk.Emulation.Consoles.Nintendo
|
||||||
byte old_value = value;
|
byte old_value = value;
|
||||||
value &= ReadPRG(addr);
|
value &= ReadPRG(addr);
|
||||||
//Debug.Assert(old_value == value, "Found a test case of bus conflict. please report.");
|
//Debug.Assert(old_value == value, "Found a test case of bus conflict. please report.");
|
||||||
//report: pinball quest (J)
|
//report: pinball quest (J). also: double dare
|
||||||
return value;
|
return value;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -763,8 +763,8 @@ namespace BizHawk.MultiClient
|
||||||
snesControls.BindMulti("P" + (i + 1) + " Y", Global.Config.SNESController[i].Y);
|
snesControls.BindMulti("P" + (i + 1) + " Y", Global.Config.SNESController[i].Y);
|
||||||
snesControls.BindMulti("P" + (i + 1) + " L", Global.Config.SNESController[i].L);
|
snesControls.BindMulti("P" + (i + 1) + " L", Global.Config.SNESController[i].L);
|
||||||
snesControls.BindMulti("P" + (i + 1) + " R", Global.Config.SNESController[i].R);
|
snesControls.BindMulti("P" + (i + 1) + " R", Global.Config.SNESController[i].R);
|
||||||
snesControls.BindMulti("P" + (i + 1) + " Select", Global.Config.NESController[i].Select);
|
snesControls.BindMulti("P" + (i + 1) + " Select", Global.Config.SNESController[i].Select);
|
||||||
snesControls.BindMulti("P" + (i + 1) + " Start", Global.Config.NESController[i].Start);
|
snesControls.BindMulti("P" + (i + 1) + " Start", Global.Config.SNESController[i].Start);
|
||||||
}
|
}
|
||||||
Global.SNESControls = snesControls;
|
Global.SNESControls = snesControls;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue