From 5577328f359496e36cd33a79ba771cf0b5ef3bd3 Mon Sep 17 00:00:00 2001 From: Stenzek Date: Thu, 12 Dec 2024 17:42:33 +1000 Subject: [PATCH] Controller: Allow !compatsettings to always start in analog mode --- src/core/controller.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/core/controller.cpp b/src/core/controller.cpp index d6d568ce0..a7f106fa2 100644 --- a/src/core/controller.cpp +++ b/src/core/controller.cpp @@ -274,6 +274,9 @@ bool Controller::InCircularDeadzone(float deadzone, float pos_x, float pos_y) bool Controller::CanStartInAnalogMode(ControllerType ctype) { + if (!g_settings.apply_compatibility_settings) + return true; + const GameDatabase::Entry* dbentry = System::GetGameDatabaseEntry(); if (!dbentry) return false;