diff options
| author | oy <Tom_Adams@web.de> | 2010-10-09 13:27:21 +0200 |
|---|---|---|
| committer | oy <Tom_Adams@web.de> | 2010-10-09 13:27:21 +0200 |
| commit | 85b9c60158adee3aae6d02a9e5529ea57ed39611 (patch) | |
| tree | 874dc6a0cfe834c47fc084aa3b6cc1d88df665b9 /src/game/client/components/menus.h | |
| parent | 7ad4d3224c22216b1131df56172995be33d48405 (diff) | |
| download | zcatch-85b9c60158adee3aae6d02a9e5529ea57ed39611.tar.gz zcatch-85b9c60158adee3aae6d02a9e5529ea57ed39611.zip | |
added info in the demo browser by Choupom
Diffstat (limited to 'src/game/client/components/menus.h')
| -rw-r--r-- | src/game/client/components/menus.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/game/client/components/menus.h b/src/game/client/components/menus.h index 7ab03b81..3d11cf91 100644 --- a/src/game/client/components/menus.h +++ b/src/game/client/components/menus.h @@ -160,6 +160,8 @@ class CMenus : public CComponent char m_aName[128]; bool m_IsDir; int m_StorageType; + bool m_Valid; + char m_aMap[64]; 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 : |