mirror of https://github.com/stella-emu/stella.git
fixed Atari mouse auto detection
This commit is contained in:
parent
ce5bd61d85
commit
196e8919cc
|
@ -69,7 +69,7 @@ Controller::Type ControllerDetector::autodetectPort(
|
||||||
if(isProbablyTrakBall(image, size))
|
if(isProbablyTrakBall(image, size))
|
||||||
type = Controller::Type::TrakBall;
|
type = Controller::Type::TrakBall;
|
||||||
else if(isProbablyAtariMouse(image, size))
|
else if(isProbablyAtariMouse(image, size))
|
||||||
type = Controller::Type::AmigaMouse;
|
type = Controller::Type::AtariMouse;
|
||||||
else if(isProbablyAmigaMouse(image, size))
|
else if(isProbablyAmigaMouse(image, size))
|
||||||
type = Controller::Type::AmigaMouse;
|
type = Controller::Type::AmigaMouse;
|
||||||
else if(usesKeyboard(image, size, port))
|
else if(usesKeyboard(image, size, port))
|
||||||
|
|
Loading…
Reference in New Issue