diff options
author | Paul Gilbert | 2016-11-05 11:17:15 -0400 |
---|---|---|
committer | Paul Gilbert | 2016-11-05 11:17:15 -0400 |
commit | 1089d12a71342c6a0c218ab9f764e3ac865a4411 (patch) | |
tree | 6d00989948de928f50a6f580850c76f18eebbb87 | |
parent | edc74ce8e8710c0d85c79df0b3f450bc15805af5 (diff) | |
download | scummvm-rg350-1089d12a71342c6a0c218ab9f764e3ac865a4411.tar.gz scummvm-rg350-1089d12a71342c6a0c218ab9f764e3ac865a4411.tar.bz2 scummvm-rg350-1089d12a71342c6a0c218ab9f764e3ac865a4411.zip |
TITANIC: Fix showing status messages in the PET
-rw-r--r-- | engines/titanic/pet_control/pet_section.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/engines/titanic/pet_control/pet_section.cpp b/engines/titanic/pet_control/pet_section.cpp index 50d6c7615c..aced697705 100644 --- a/engines/titanic/pet_control/pet_section.cpp +++ b/engines/titanic/pet_control/pet_section.cpp @@ -43,6 +43,7 @@ void CPetSection::displayMessage(const CString &msg) { if (text) { text->setColor(getColor(1)); + text->setText(msg); _petControl->makeDirty(); removeText(5000); } |