aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--engines/xeen/character.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/xeen/character.cpp b/engines/xeen/character.cpp
index 85f0e536b3..1f53b2bbfe 100644
--- a/engines/xeen/character.cpp
+++ b/engines/xeen/character.cpp
@@ -410,7 +410,7 @@ int Character::statColor(int amount, int threshold) {
return 2;
else if (amount == threshold)
return 15;
- else if (amount <= (threshold / 4))
+ else if (amount >= (threshold / 4))
return 9;
else
return 32;