diff options
author | Eugene Sandulenko | 2017-02-21 23:29:51 +0100 |
---|---|---|
committer | GitHub | 2017-02-21 23:29:51 +0100 |
commit | 8458e3deb7d76358b41f6e0b7f39cec9db358413 (patch) | |
tree | ba69d4b382270968305ffed8ff985d83d37fe2c5 /common | |
parent | 98bbb92a8e04dfb31ca942805a8ac36e1aafbcf8 (diff) | |
parent | cdda943c8a3089551843be3dedaaddb6c5348555 (diff) | |
download | scummvm-rg350-8458e3deb7d76358b41f6e0b7f39cec9db358413.tar.gz scummvm-rg350-8458e3deb7d76358b41f6e0b7f39cec9db358413.tar.bz2 scummvm-rg350-8458e3deb7d76358b41f6e0b7f39cec9db358413.zip |
Merge pull request #905 from lubomyr/master
ANDROIDSDL: added tab Control in main Options menu for switching some features
Diffstat (limited to 'common')
-rw-r--r-- | common/system.h | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/common/system.h b/common/system.h index 41f217fc0b..1b03fb0a15 100644 --- a/common/system.h +++ b/common/system.h @@ -336,7 +336,22 @@ public: * * This feature has no associated state. */ - kFeatureOpenUrl + kFeatureOpenUrl , + + /** + * show on-screen control + */ + kFeatureOnScreenControl, + + /** + * mouse emulation mode + */ + kFeatureTouchpadMode, + + /** + * swap menu and back buttons + */ + kFeatureSwapMenuAndBackButtons }; /** |