Fixed compile warning: initialize members in declaration order.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@204 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
71f9655b70
commit
07f4d3eca0
|
@ -43,10 +43,10 @@ void __Log(int log, const char *format, ...)
|
|||
}
|
||||
|
||||
CDebugger_Log::CDebugger_Log(const char* _szShortName, const char* _szName) :
|
||||
m_pFile(NULL),
|
||||
m_bLogToFile(true),
|
||||
m_bShowInLog(true),
|
||||
m_bEnable(true)
|
||||
m_bEnable(true),
|
||||
m_pFile(NULL)
|
||||
{
|
||||
strcpy((char*)m_szName, _szName);
|
||||
strcpy((char*)m_szShortName, _szShortName);
|
||||
|
|
Loading…
Reference in New Issue