mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-10 01:58:19 +00:00
Initialize all ghost item member (Closed #8297)
This commit is contained in:
parent
43c03c4d54
commit
f319ed239a
|
@ -700,11 +700,11 @@ public:
|
|||
char m_aFilename[IO_MAX_PATH_LENGTH];
|
||||
char m_aPlayer[MAX_NAME_LENGTH];
|
||||
|
||||
bool m_Failed;
|
||||
int m_Time;
|
||||
int m_Slot;
|
||||
bool m_Own;
|
||||
time_t m_Date;
|
||||
bool m_Failed = true;
|
||||
int m_Time = 0;
|
||||
int m_Slot = -1;
|
||||
bool m_Own = false;
|
||||
time_t m_Date = 0;
|
||||
|
||||
CGhostItem() :
|
||||
m_Slot(-1), m_Own(false) { m_aFilename[0] = 0; }
|
||||
|
|
Loading…
Reference in a new issue