diff options
| author | oy <Tom_Adams@web.de> | 2011-03-13 10:41:10 +0100 |
|---|---|---|
| committer | oy <Tom_Adams@web.de> | 2011-03-13 10:41:10 +0100 |
| commit | be8f669333b01e32465c515728fccabaa627bd37 (patch) | |
| tree | 7d15faa5df6a9f7149d25c3b2e0fcb93c16dca8d /src/game/client/components/menus.h | |
| parent | a04eb45354cfbdc32f92438400c11071ecf1bb6c (diff) | |
| download | zcatch-be8f669333b01e32465c515728fccabaa627bd37.tar.gz zcatch-be8f669333b01e32465c515728fccabaa627bd37.zip | |
added extended demo infos in the demo browser
Diffstat (limited to 'src/game/client/components/menus.h')
| -rw-r--r-- | src/game/client/components/menus.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/game/client/components/menus.h b/src/game/client/components/menus.h index 1a2e5cf5..0ad63669 100644 --- a/src/game/client/components/menus.h +++ b/src/game/client/components/menus.h @@ -6,6 +6,8 @@ #include <base/vmath.h> #include <base/tl/sorted_array.h> +#include <engine/demo.h> + #include <game/client/component.h> #include <game/client/ui.h> @@ -177,7 +179,7 @@ class CMenus : public CComponent bool m_InfosLoaded; bool m_Valid; - char m_aMap[64]; + CDemoHeader m_Info; bool operator<(const CDemoItem &Other) { return !str_comp(m_aFilename, "..") ? true : !str_comp(Other.m_aFilename, "..") ? false : m_IsDir && !Other.m_IsDir ? true : !m_IsDir && Other.m_IsDir ? false : |