diff options
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 : |