Merge pull request #297 from raven02/patch-1

Change to Error logging for null cmd
This commit is contained in:
B1ackDaemon 2014-06-01 21:34:50 +03:00
commit c6c87b66f9
1 changed files with 1 additions and 1 deletions

View File

@ -1800,7 +1800,7 @@ void RSXThread::Task()
if(cmd == 0)
{
ConLog.Warning("null cmd: addr=0x%x, put=0x%x, get=0x%x", Memory.RSXIOMem.GetStartAddr() + get, m_ctrl->put, get);
ConLog.Error("null cmd: addr=0x%x, put=0x%x, get=0x%x", Memory.RSXIOMem.GetStartAddr() + get, m_ctrl->put, get);
Emu.Pause();
continue;
}