diff --git a/Changes.txt b/Changes.txt index 57a72fe38..27825e1cf 100644 --- a/Changes.txt +++ b/Changes.txt @@ -23,6 +23,9 @@ then back again would pass a 'Tab' key event to the app, which in most cases would navigate to the next UI element. + * Reverted joystick changes for Decathlon ROMs from last release, as + it was added by mistake. + -Have fun! diff --git a/src/emucore/Console.cxx b/src/emucore/Console.cxx index d3e964e26..a5591490d 100644 --- a/src/emucore/Console.cxx +++ b/src/emucore/Console.cxx @@ -183,18 +183,13 @@ Console::Console(OSystem& osystem, unique_ptr& cart, myConsoleTiming = ConsoleTiming::secam; } - // Bumper Bash and Decathlon always require all 4 directions + // Bumper Bash always require all 4 directions // Other ROMs can use it if the setting is enabled // Hopefully this list should stay short // If it starts to get too long, we should add a ROM properties entry bool joyallow4 = md5 == "aa1c41f86ec44c0a44eb64c332ce08af" || // Bumper Bash md5 == "16ee443c990215f61f7dd1e55a0d2256" || // Bumper Bash (PAL) md5 == "1bf503c724001b09be79c515ecfcbd03" || // Bumper Bash (Unknown) - md5 == "ac7c2260378975614192ca2bc3d20e0b" || // Decathlon - md5 == "883258dcd68cefc6cd4d40b1185116dc" || // Decathlon (PAL) - md5 == "ede4ab11ca346bd023b2c21d941e0c50" || // Decathlon (SECAM) - md5 == "525f2dfc8b21b0186cff2568e0509bfc" || // Decathlon [fixed] - md5 == "bf52327c2197d9d2c4544be053caded1" || // Decathlon (HES) myOSystem.settings().getBool("joyallow4"); myOSystem.eventHandler().allowAllDirections(joyallow4);