diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-02-21 23:58:54 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-02-21 23:58:54 +0300 |
commit | 826ead0896ab8d47ec032627e39874c859260736 (patch) | |
tree | cbf9272934382f287fe3acbe51ad80bcb97ec405 /src/gui | |
parent | df1e9664e176377cb8f9501d1b828ee42cd8e8f8 (diff) | |
download | plus-826ead0896ab8d47ec032627e39874c859260736.tar.gz plus-826ead0896ab8d47ec032627e39874c859260736.tar.bz2 plus-826ead0896ab8d47ec032627e39874c859260736.tar.xz plus-826ead0896ab8d47ec032627e39874c859260736.zip |
Add vsync option.
Diffstat (limited to 'src/gui')
-rw-r--r-- | src/gui/setup_visual.cpp | 9 | ||||
-rw-r--r-- | src/gui/setup_visual.h | 2 |
2 files changed, 11 insertions, 0 deletions
diff --git a/src/gui/setup_visual.cpp b/src/gui/setup_visual.cpp index 22df1ffa7..454a2c3f6 100644 --- a/src/gui/setup_visual.cpp +++ b/src/gui/setup_visual.cpp @@ -94,6 +94,13 @@ Setup_Visual::Setup_Visual() new SetupItemSlider(_("Gamma"), "", "gamma", this, "gammeEvent", 1, 20, 350, true); + mVSyncList = new SetupItemNames(); + mVSyncList->push_back(_("default")); + mVSyncList->push_back(_("off")); + mVSyncList->push_back(_("on")); + new SetupItemSlider2(_("Vsync"), "", "vsync", this, + "vsyncEvent", 0, 2, mVSyncList); + setDimension(gcn::Rectangle(0, 0, 550, 350)); } @@ -105,6 +112,8 @@ Setup_Visual::~Setup_Visual() mAmbientFxList = nullptr; delete mParticleList; mParticleList = nullptr; + delete mVSyncList; + mVSyncList = nullptr; } void Setup_Visual::apply() diff --git a/src/gui/setup_visual.h b/src/gui/setup_visual.h index 30ae18645..3c4c8a6d2 100644 --- a/src/gui/setup_visual.h +++ b/src/gui/setup_visual.h @@ -45,6 +45,8 @@ class Setup_Visual : public SetupTabScroll SetupItemNames *mAmbientFxList; SetupItemNames *mParticleList; + + SetupItemNames *mVSyncList; }; #endif |