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:
Maarten ter Huurne 2008-08-14 20:42:36 +00:00
parent 71f9655b70
commit 07f4d3eca0
1 changed files with 2 additions and 2 deletions

View File

@ -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);