mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-06-11 16:49:28 +02:00
dsplle - cleaning
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@5636 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
@ -157,6 +157,8 @@ bool CheckCondition(u8 _Condition)
|
||||
{
|
||||
switch (_Condition & 0xf)
|
||||
{
|
||||
case 0xf: // Always true.
|
||||
return true;
|
||||
case 0x0: // GE - Greater Equal
|
||||
return !isLess();
|
||||
case 0x1: // L - Less
|
||||
@ -187,8 +189,6 @@ bool CheckCondition(u8 _Condition)
|
||||
return isLogicZero();
|
||||
case 0xe: // 0 - Overflow
|
||||
return isOverflow();
|
||||
case 0xf: // Empty - always true.
|
||||
return true;
|
||||
default:
|
||||
return true;
|
||||
}
|
||||
|
Reference in New Issue
Block a user