diff options
author | Eugene Sandulenko | 2017-02-24 22:00:10 +0100 |
---|---|---|
committer | GitHub | 2017-02-24 22:00:10 +0100 |
commit | 8a547c8711a63c07bef974ad9457f57bf5658634 (patch) | |
tree | c1baf5d112f35dc1b80a3087fb6b164712b03b27 /common | |
parent | 4b364787863b62f7a141f38646a8772e921fb1e7 (diff) | |
parent | 45bd7a8b75ebd8227ec4a09e427a66b1bb2796d1 (diff) | |
download | scummvm-rg350-8a547c8711a63c07bef974ad9457f57bf5658634.tar.gz scummvm-rg350-8a547c8711a63c07bef974ad9457f57bf5658634.tar.bz2 scummvm-rg350-8a547c8711a63c07bef974ad9457f57bf5658634.zip |
Merge pull request #908 from rsn8887/upstream
SDL: Fix erratic analog pointer + control options
Diffstat (limited to 'common')
-rw-r--r-- | common/system.h | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/common/system.h b/common/system.h index 1b03fb0a15..83bc457707 100644 --- a/common/system.h +++ b/common/system.h @@ -351,7 +351,18 @@ public: /** * swap menu and back buttons */ - kFeatureSwapMenuAndBackButtons + kFeatureSwapMenuAndBackButtons, + + /** + * keyboard mouse and joystick mouse speed + */ + kFeatureKbdMouseSpeed, + + /** + * change analog joystick deadzone + */ + kFeatureJoystickDeadzone + }; /** |