mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-28 20:55:19 +00:00
TITANIC: DE: Fix color of text in PET Translation tab text
This commit is contained in:
parent
1d4212a946
commit
f3eea52f52
@ -59,7 +59,7 @@ void CPetTranslation::clearTranslation() {
|
|||||||
|
|
||||||
void CPetTranslation::addTranslation(const CString &str1, const CString &str2) {
|
void CPetTranslation::addTranslation(const CString &str1, const CString &str2) {
|
||||||
CString msg = CString::format("%s%s - %s%s",
|
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());
|
CTextControl::getColorText(0, 0, 0).c_str(), str2.c_str());
|
||||||
_message.addLine(msg);
|
_message.addLine(msg);
|
||||||
_petControl->makeDirty();
|
_petControl->makeDirty();
|
||||||
|
Loading…
Reference in New Issue
Block a user