about summary refs log tree commit diff
path: root/src/game/client/components/menus.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/game/client/components/menus.h')
-rw-r--r--src/game/client/components/menus.h4
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 :