From 0259d6c9c7ab69c0a79ee2bf15e6753b79330d52 Mon Sep 17 00:00:00 2001 From: thrust26 Date: Fri, 23 Oct 2020 19:46:06 +0200 Subject: [PATCH] fixed Atari mouse auto detection --- src/emucore/ControllerDetector.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/emucore/ControllerDetector.cxx b/src/emucore/ControllerDetector.cxx index 644d4e23b..d8799c365 100644 --- a/src/emucore/ControllerDetector.cxx +++ b/src/emucore/ControllerDetector.cxx @@ -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))