fixed Atari mouse auto detection

This commit is contained in:
thrust26 2020-10-23 19:46:06 +02:00
parent ce5bd61d85
commit 196e8919cc
1 changed files with 1 additions and 1 deletions

View File

@ -69,7 +69,7 @@ Controller::Type ControllerDetector::autodetectPort(
if(isProbablyTrakBall(image, size))
type = Controller::Type::TrakBall;
else if(isProbablyAtariMouse(image, size))
type = Controller::Type::AmigaMouse;
type = Controller::Type::AtariMouse;
else if(isProbablyAmigaMouse(image, size))
type = Controller::Type::AmigaMouse;
else if(usesKeyboard(image, size, port))