Input: Fix - SNES mouse only has 3 levels of sensitivity, not 4
This commit is contained in:
parent
e3ef83a1cf
commit
a78b14e1ab
1 changed files with 1 additions and 1 deletions
|
@ -50,7 +50,7 @@ public:
|
|||
uint8_t output = 0;
|
||||
if((addr == 0x4016 && (_port & 0x01) == 0) || (addr == 0x4017 && (_port & 0x01) == 1)) {
|
||||
if(_strobe) {
|
||||
_sensitivity = (_sensitivity + 1) & 0x03;
|
||||
_sensitivity = (_sensitivity + 1) % 3;
|
||||
}
|
||||
|
||||
output = (_stateBuffer & 0x80000000) >> 31;
|
||||
|
|
Loading…
Add table
Reference in a new issue