fixed copy paste error:)

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@3547 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
nakeee 2009-06-26 09:05:14 +00:00
parent 159feed662
commit a398096584
1 changed files with 1 additions and 1 deletions

View File

@ -120,7 +120,7 @@ bool CheckCondition(u8 _Condition)
break;
case 0x2: // G - GREATER
if (! isSign() || !isZero())
if (! isSign() && !isZero())
taken = true;
break;