Offer limited kart animations mode in GFX choice

git-svn-id: svn+ssh://svn.code.sf.net/p/supertuxkart/code/main/trunk@7488 178a84e3-b1eb-0310-8ba1-8eac791a3b58
This commit is contained in:
auria
2011-01-20 02:49:36 +00:00
parent f774aef2c4
commit 8064063796
2 changed files with 5 additions and 5 deletions

View File

@@ -37,7 +37,7 @@
<label width="100%" I18N="In the graphics settings" text="Graphical Effects Settings"/>
<!-- FIXME: don't hardcode size -->
<gauge id="gfx_level" min_value="1" max_value="4" width="300" height="50"/>
<gauge id="gfx_level" min_value="1" max_value="5" width="300" height="50"/>
</div>
</div>

View File

@@ -42,10 +42,10 @@ using namespace GUIEngine;
DEFINE_SCREEN_SINGLETON( OptionsScreenVideo );
// Look-up table for GFX levels
const bool GFX [] = {false, true, true, true};
const int GFX_ANIM_KARTS[] = {0, 0, 2, 2 }; // TODO: use new limited anims mode
const bool GFX_WEATHER [] = {false, false, false, true};
const int GFX_LEVEL_AMOUNT = 4;
const bool GFX [] = {false, true, true, true, true};
const int GFX_ANIM_KARTS[] = {0, 0, 1, 2, 2 };
const bool GFX_WEATHER [] = {false, false, false, false, true};
const int GFX_LEVEL_AMOUNT = 5;
// -----------------------------------------------------------------------------