TITANIC: DE: Fix color of text in PET Translation tab text

This commit is contained in:
Paul Gilbert 2017-10-03 20:04:39 -04:00
parent 1d4212a946
commit f3eea52f52

View File

@ -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();