diff options
| author | Paul Gilbert | 2016-11-11 08:40:18 -0500 | 
|---|---|---|
| committer | Paul Gilbert | 2016-11-11 08:40:18 -0500 | 
| commit | b0b9adcfdae19b91b85af4330f415e54baa66b3a (patch) | |
| tree | 6919e1be28530a380fc4ad541da3e449bb0373a2 | |
| parent | 68a8c82f69dc5a4e3b12b59cd1cd432e06d6a0ca (diff) | |
| download | scummvm-rg350-b0b9adcfdae19b91b85af4330f415e54baa66b3a.tar.gz scummvm-rg350-b0b9adcfdae19b91b85af4330f415e54baa66b3a.tar.bz2 scummvm-rg350-b0b9adcfdae19b91b85af4330f415e54baa66b3a.zip  | |
TITANIC: Use correct colors for text in the PET
| -rw-r--r-- | engines/titanic/pet_control/pet_text.cpp | 2 | 
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) {  | 
