moved logs dir

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1144 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
nakeee
2008-11-12 08:11:59 +00:00
parent a8c6e370e3
commit 1e2120d5f2
4 changed files with 7 additions and 6 deletions

View File

@ -54,7 +54,7 @@ CDebugger_Log::CDebugger_Log(const char* _szShortName, const char* _szName, int
strcpy((char*)m_szName, _szName);
strcpy((char*)m_szShortName_, _szShortName);
sprintf((char*)m_szShortName, "%s%i", _szShortName, a);
sprintf((char*)m_szFilename, "Logs/%s%i.txt", _szName, a);
sprintf((char*)m_szFilename, FULL_LOGS_DIR "%s%i.txt", _szName, a);
unlink(m_szFilename);
}
@ -296,4 +296,4 @@ bool IsLoggingActivated()
#else
return false;
#endif
}
}