aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--engines/titanic/pet_control/pet_inventory_glyphs.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/titanic/pet_control/pet_inventory_glyphs.cpp b/engines/titanic/pet_control/pet_inventory_glyphs.cpp
index 9d745d8806..734b260b0f 100644
--- a/engines/titanic/pet_control/pet_inventory_glyphs.cpp
+++ b/engines/titanic/pet_control/pet_inventory_glyphs.cpp
@@ -150,11 +150,12 @@ void CPetInventoryGlyph::getTooltip(CTextControl *text) {
if (_field34 && _item) {
int itemIndex = populateItem(_item, 0);
if (itemIndex >= 14 && itemIndex <= 18) {
+ // Variations of the chicken
CPETObjectStateMsg stateMsg(0);
stateMsg.execute(_item);
text->setText(CString::format("%s %s",
- stateMsg._value ? "A hot " : "A cold ",
+ stateMsg._value ? "A hot" : "A cold",
g_vm->_itemDescriptions[itemIndex].c_str()
));