GameDatabase: Add DisableAutoAnalogMode trait

For games that can handle analog controllers, but the sticks do not do
anything.
This commit is contained in:
Stenzek
2024-08-18 20:33:15 +10:00
parent aa9a5e383d
commit fda6140088
7 changed files with 25 additions and 8 deletions

View File

@ -134,5 +134,8 @@ public:
static bool InCircularDeadzone(float deadzone, float pos_x, float pos_y);
protected:
/// Returns true if automatic analog mode can be used.
static bool CanStartInAnalogMode(ControllerType ctype);
u32 m_index;
};