Should probably drink something with caffeine in it, and worry about sandwiches later.

git-svn-id: http://pcsx2.googlecode.com/svn/trunk@2182 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
arcum42 2009-11-10 22:00:14 +00:00
parent 2b05fa9cef
commit 0f43b12d72
1 changed files with 1 additions and 9 deletions

View File

@ -104,16 +104,8 @@ namespace Implementations
// FIXME: Some of the trace logs will require recompiler resets to be activated properly.
// But since those haven't been implemented yet, no point in implementing that here either.
char* message;
const_cast<Pcsx2Config&>(EmuConfig).Trace.Enabled = !EmuConfig.Trace.Enabled;
if (EmuConfig.Trace.Enabled)
sprintf(message, "Logging Enabled.");
else
sprintf(message, "Logging Disabled.");
GSprintf(10, message);
GSprintf(10, const_cast<char*>(EmuConfig.Trace.Enabled ? "Logging Enabled." : "Logging Disabled."));
}
void Sys_FreezeGS()