diff options
Diffstat (limited to 'engines/titanic/carry')
-rw-r--r-- | engines/titanic/carry/long_stick.cpp | 2 | ||||
-rw-r--r-- | engines/titanic/carry/napkin.cpp | 2 | ||||
-rw-r--r-- | engines/titanic/carry/vision_centre.cpp | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/engines/titanic/carry/long_stick.cpp b/engines/titanic/carry/long_stick.cpp index 557b75ab87..16cd69e373 100644 --- a/engines/titanic/carry/long_stick.cpp +++ b/engines/titanic/carry/long_stick.cpp @@ -48,7 +48,7 @@ bool CLongStick::UseWithOtherMsg(CUseWithOtherMsg *msg) { CPuzzleSolvedMsg puzzleMsg; puzzleMsg.execute(msg->_other); } else if (msg->_other->isEquals("LongStickDispensor")) { - petDisplayMessage(1, "You already have one."); + petDisplayMessage(1, ALREADY_HAVE_STICK); } else if (msg->_other->isEquals("Bomb")) { CActMsg actMsg("Hit"); actMsg.execute("Bomb"); diff --git a/engines/titanic/carry/napkin.cpp b/engines/titanic/carry/napkin.cpp index d0ee9acc1a..3996ca7c74 100644 --- a/engines/titanic/carry/napkin.cpp +++ b/engines/titanic/carry/napkin.cpp @@ -49,7 +49,7 @@ bool CNapkin::UseWithOtherMsg(CUseWithOtherMsg *msg) { CActMsg actMsg("Clean"); actMsg.execute("Chicken"); } else { - petDisplayMessage("The Chicken is already quite clean enough, thank you."); + petDisplayMessage(CHICKEN_IS_CLEAN); } } diff --git a/engines/titanic/carry/vision_centre.cpp b/engines/titanic/carry/vision_centre.cpp index fd30089fc5..f81e35fa4f 100644 --- a/engines/titanic/carry/vision_centre.cpp +++ b/engines/titanic/carry/vision_centre.cpp @@ -49,7 +49,7 @@ bool CVisionCentre::MouseButtonDownMsg(CMouseButtonDownMsg *msg) { if (_fieldE0) { return CBrain::MouseButtonDownMsg(msg); } else { - petDisplayMessage(1, "It would be nice if you could take that but you can't."); + petDisplayMessage(1, NICE_IF_TAKE_BUT_CANT); return true; } } @@ -58,7 +58,7 @@ bool CVisionCentre::MouseDragStartMsg(CMouseDragStartMsg *msg) { if (_fieldE0) { return CBrain::MouseDragStartMsg(msg); } else { - petDisplayMessage(1, "It would be nice if you could take that but you can't."); + petDisplayMessage(1, NICE_IF_TAKE_BUT_CANT); return true; } } |