aboutsummaryrefslogtreecommitdiff
path: root/engines/titanic/pet_control
diff options
context:
space:
mode:
authorPaul Gilbert2016-11-11 08:40:18 -0500
committerPaul Gilbert2016-11-11 08:40:18 -0500
commitb0b9adcfdae19b91b85af4330f415e54baa66b3a (patch)
tree6919e1be28530a380fc4ad541da3e449bb0373a2 /engines/titanic/pet_control
parent68a8c82f69dc5a4e3b12b59cd1cd432e06d6a0ca (diff)
downloadscummvm-rg350-b0b9adcfdae19b91b85af4330f415e54baa66b3a.tar.gz
scummvm-rg350-b0b9adcfdae19b91b85af4330f415e54baa66b3a.tar.bz2
scummvm-rg350-b0b9adcfdae19b91b85af4330f415e54baa66b3a.zip
TITANIC: Use correct colors for text in the PET
Diffstat (limited to 'engines/titanic/pet_control')
-rw-r--r--engines/titanic/pet_control/pet_text.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/titanic/pet_control/pet_text.cpp b/engines/titanic/pet_control/pet_text.cpp
index c7c6f490db..a7b794eeb8 100644
--- a/engines/titanic/pet_control/pet_text.cpp
+++ b/engines/titanic/pet_control/pet_text.cpp
@@ -57,7 +57,7 @@ void CPetText::setup() {
}
void CPetText::setLineColor(uint lineNum, uint col) {
- setLineColor(lineNum, col & 0xff, (col >> 16) & 0xff, (col >> 8) & 0xff);
+ setLineColor(lineNum, col & 0xff, (col >> 8) & 0xff, (col >> 16) & 0xff);
}
void CPetText::setLineColor(uint lineNum, byte r, byte g, byte b) {