ANDROID: Let user customize its preferred touch modes

There are 3 settings: in menus, in 2D games, in 3D games
This commit is contained in:
Le Philousophe 2022-06-04 20:04:01 +02:00
parent b15b2f519e
commit ad5993d24f
14 changed files with 354 additions and 96 deletions

View file

@ -89,7 +89,6 @@ public:
protected:
void setSystemMousePosition(const int x, const int y) override {}
bool showMouse(bool visible) override;
void showOverlay() override;
void hideOverlay() override;
@ -103,7 +102,7 @@ protected:
private:
OpenGL::Surface *_touchcontrols;
bool _old_touch_3d_mode;
int _old_touch_mode;
};
#endif