Just a couple of small fixes picked up by the compiler, no change to emulation.

git-svn-id: http://pcsx2.googlecode.com/svn/trunk@5838 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
refraction 2014-01-25 23:36:40 +00:00
parent 5187f8bfe1
commit 8e6e0f4c66
2 changed files with 2 additions and 2 deletions

View File

@ -564,7 +564,7 @@ void gifMFIFOInterrupt()
return;
}
if ((gifstate & GIF_STATE_READY) || (gifch.qwc > 0)) {
if ((gifstate == GIF_STATE_READY) || (gifch.qwc > 0)) {
DevCon.Error("gifMFIFO Panic > Shouldn't go here!");
return;
}

View File

@ -1050,7 +1050,7 @@ void iFlushCall(int flushtype)
g_cpuFlushedCode = true;
}
if ((flushtype & FLUSH_CAUSE) && !g_maySignalException) {
if ((flushtype == FLUSH_CAUSE) && !g_maySignalException) {
if (g_recompilingDelaySlot)
xOR(ptr32[&cpuRegs.CP0.n.Cause], 1 << 31); // BD
g_maySignalException = true;