Demuxer improved, cellPamf improved

File reading improved
This commit is contained in:
Nekotekina 2014-02-26 11:51:00 +04:00
parent a14276abf1
commit 0bd5dc5363
11 changed files with 928 additions and 199 deletions

View file

@ -296,7 +296,7 @@ void CPUThread::ExecOnce()
void CPUThread::Task()
{
ConLog.Write("%s enter", CPUThread::GetFName().wx_str());
if (Ini.HLELogging.GetValue()) ConLog.Write("%s enter", CPUThread::GetFName().wx_str());
const Array<u64>& bp = Emu.GetBreakPoints();
@ -358,5 +358,5 @@ void CPUThread::Task()
ConLog.Success("Exit Code: %d", exitcode);
}
ConLog.Write("%s leave", CPUThread::GetFName().wx_str());
if (Ini.HLELogging.GetValue()) ConLog.Write("%s leave", CPUThread::GetFName().wx_str());
}