[Scummvm-git-logs] scummvm master -> f3eea52f52a953bfe9ada85f0a2b77784b906324
dreammaster
dreammaster at scummvm.org
Wed Oct 4 02:04:46 CEST 2017
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
f3eea52f52 TITANIC: DE: Fix color of text in PET Translation tab text
Commit: f3eea52f52a953bfe9ada85f0a2b77784b906324
https://github.com/scummvm/scummvm/commit/f3eea52f52a953bfe9ada85f0a2b77784b906324
Author: Paul Gilbert (dreammaster at scummvm.org)
Date: 2017-10-03T20:04:39-04:00
Commit Message:
TITANIC: DE: Fix color of text in PET Translation tab text
Changed paths:
engines/titanic/pet_control/pet_translation.cpp
diff --git a/engines/titanic/pet_control/pet_translation.cpp b/engines/titanic/pet_control/pet_translation.cpp
index 40d930f..e74d2e0 100644
--- a/engines/titanic/pet_control/pet_translation.cpp
+++ b/engines/titanic/pet_control/pet_translation.cpp
@@ -59,7 +59,7 @@ void CPetTranslation::clearTranslation() {
void CPetTranslation::addTranslation(const CString &str1, const CString &str2) {
CString msg = CString::format("%s%s - %s%s",
- CTextControl::getColorText(0, 0x80, 0).c_str(), str1.c_str(),
+ CTextControl::getColorText(0, 0, 0x80).c_str(), str1.c_str(),
CTextControl::getColorText(0, 0, 0).c_str(), str2.c_str());
_message.addLine(msg);
_petControl->makeDirty();
More information about the Scummvm-git-logs
mailing list