mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Add back the default case to the triviallytrue functions.
This commit is contained in:
parent
29a3a0650c
commit
766731db8e
1 changed files with 4 additions and 0 deletions
|
@ -93,6 +93,8 @@ static bool IsAlphaTestTriviallyTrue() {
|
|||
case GE_COMP_LESS:
|
||||
case GE_COMP_NOTEQUAL:
|
||||
return false;
|
||||
default:
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -108,6 +110,8 @@ static bool IsColorTestTriviallyTrue() {
|
|||
case GE_COMP_EQUAL:
|
||||
case GE_COMP_NOTEQUAL:
|
||||
return false;
|
||||
default:
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue