Add back the default case to the triviallytrue functions.

This commit is contained in:
Henrik Rydgard 2013-08-29 20:39:23 +02:00
parent 29a3a0650c
commit 766731db8e

View File

@ -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;
}
}