Reverse SNES Mouse (for BSNES)

This commit is contained in:
YoshiRulz 2020-04-27 09:23:46 +10:00
parent 8a6868be4a
commit 34b84e7098
No known key found for this signature in database
GPG Key ID: C4DE31C245353FB7
1 changed files with 1 additions and 1 deletions

View File

@ -291,7 +291,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.SNES
"0Mouse X",
"0Mouse Y"
},
AxisRanges = ControllerDefinition.CreateAxisRangePair(-127, 0, 127, ControllerDefinition.AxisPairOrientation.RightAndUp) //TODO verify direction against hardware
AxisRanges = ControllerDefinition.CreateAxisRangePair(-127, 0, 127, ControllerDefinition.AxisPairOrientation.RightAndDown) //TODO verify direction against hardware, R+D inferred from behaviour in Mario Paint
};
public ControllerDefinition Definition => _definition;