comments, tstaxl guessing, clear log messages

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@2914 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
nakeee
2009-04-07 12:14:04 +00:00
parent ea01132087
commit 5354cb57c3
4 changed files with 49 additions and 10 deletions

View File

@ -120,7 +120,7 @@ bool CheckCondition(u8 _Condition)
break;
case 0x6: // L - LESS
if ((g_dsp.r[DSP_REG_SR] & 0x02) || (g_dsp.r[DSP_REG_SR] & 0x08))
if (!(g_dsp.r[DSP_REG_SR] & 0x02) && (g_dsp.r[DSP_REG_SR] & 0x08))
taken = true;
break;