diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-12-09 16:27:05 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-12-09 16:27:05 +0300 |
commit | 1324fd68e1a049fea14f38c0aece770778d1b225 (patch) | |
tree | 22ac54b4b06b4bb5d894bbde50410e361ebda81a /src/gui/setup.cpp | |
parent | 50ca2750f73025be4e73ed1c6271c4433f081062 (diff) | |
download | plus-1324fd68e1a049fea14f38c0aece770778d1b225.tar.gz plus-1324fd68e1a049fea14f38c0aece770778d1b225.tar.bz2 plus-1324fd68e1a049fea14f38c0aece770778d1b225.tar.xz plus-1324fd68e1a049fea14f38c0aece770778d1b225.zip |
Add initial setup page for touch interfaces.
Diffstat (limited to 'src/gui/setup.cpp')
-rw-r--r-- | src/gui/setup.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/gui/setup.cpp b/src/gui/setup.cpp index 92900cffc..9677e052a 100644 --- a/src/gui/setup.cpp +++ b/src/gui/setup.cpp @@ -37,6 +37,7 @@ #include "gui/setup_perfomance.h" #include "gui/setup_players.h" #include "gui/setup_relations.h" +#include "gui/setup_touch.h" #include "gui/setup_video.h" #include "gui/setup_visual.h" @@ -97,8 +98,9 @@ Setup::Setup(): mTabs.push_back(new Setup_Visual(this)); mTabs.push_back(new Setup_Audio(this)); mTabs.push_back(new Setup_Perfomance(this)); - mTabs.push_back(new Setup_Joystick(this)); + mTabs.push_back(new Setup_Touch(this)); mTabs.push_back(new Setup_Input(this)); + mTabs.push_back(new Setup_Joystick(this)); mTabs.push_back(new Setup_Colors(this)); mTabs.push_back(new Setup_Chat(this)); mTabs.push_back(new Setup_Players(this)); |