Update IConsole.h

This commit is contained in:
Kawe Mazidjatari 2022-05-27 16:29:47 +02:00
parent bcd75b354a
commit 112f0a25b7

View File

@ -37,9 +37,9 @@ class CConsole
{
private:
///////////////////////////////////////////////////////////////////////////
char m_szInputBuf[512] = { 0 };
char m_szSummary[256] = { 0 };
const char* m_pszConsoleTitle = { 0 };
char m_szInputBuf[512] = { '\0' };
char m_szSummary[256] = { '\0' };
const char* m_pszConsoleTitle = { '\0' };
vector<string> m_vsvCommands;
vector<string> m_vsvHistory;