diff options
| author | oy <Tom_Adams@web.de> | 2011-11-30 01:41:00 +0100 |
|---|---|---|
| committer | oy <Tom_Adams@web.de> | 2011-11-30 01:41:00 +0100 |
| commit | 05f77f64affc2445c7e386088e97c6411664cab3 (patch) | |
| tree | aacf529b0a195bac83ab576be2b21c5760226318 /src/game | |
| parent | 48d367db204adb2eb0bef9764b12773891d6975f (diff) | |
| download | zcatch-05f77f64affc2445c7e386088e97c6411664cab3.tar.gz zcatch-05f77f64affc2445c7e386088e97c6411664cab3.zip | |
added caching for the play command. Closes #891
Diffstat (limited to 'src/game')
| -rw-r--r-- | src/game/client/components/menus.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/game/client/components/menus.cpp b/src/game/client/components/menus.cpp index 8813c667..a39139c8 100644 --- a/src/game/client/components/menus.cpp +++ b/src/game/client/components/menus.cpp @@ -35,11 +35,10 @@ vec4 CMenus::ms_GuiColor; vec4 CMenus::ms_ColorTabbarInactiveOutgame; vec4 CMenus::ms_ColorTabbarActiveOutgame; vec4 CMenus::ms_ColorTabbarInactive; -vec4 CMenus::ms_ColorTabbarActive; +vec4 CMenus::ms_ColorTabbarActive = vec4(0,0,0,0.5f); vec4 CMenus::ms_ColorTabbarInactiveIngame; vec4 CMenus::ms_ColorTabbarActiveIngame; - float CMenus::ms_ButtonHeight = 25.0f; float CMenus::ms_ListheaderHeight = 17.0f; float CMenus::ms_FontmodHeight = 0.8f; |