diff options
author | Eugene Sandulenko | 2016-01-23 19:16:58 +0100 |
---|---|---|
committer | Eugene Sandulenko | 2016-02-14 17:12:52 +0100 |
commit | 9713e260a2918b1d5a172488bdeaa45c3cc033c6 (patch) | |
tree | 02157d594fc6cc5c6c2a7df81b6652000ea0128a | |
parent | 47b3f404b89e23918a3afd688c7865dc12e8f521 (diff) | |
download | scummvm-rg350-9713e260a2918b1d5a172488bdeaa45c3cc033c6.tar.gz scummvm-rg350-9713e260a2918b1d5a172488bdeaa45c3cc033c6.tar.bz2 scummvm-rg350-9713e260a2918b1d5a172488bdeaa45c3cc033c6.zip |
WAGE: Added missing messages
-rw-r--r-- | engines/wage/combat.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/engines/wage/combat.cpp b/engines/wage/combat.cpp index 4bd62b81fc..96235d7da1 100644 --- a/engines/wage/combat.cpp +++ b/engines/wage/combat.cpp @@ -471,6 +471,7 @@ bool WageEngine::handleStatusCommand() { if (uses > 0) { snprintf(buf, 512, "Your %s has %d uses left.", (*it)->_name.c_str(), uses); + appendText(buf); } } @@ -544,6 +545,7 @@ bool WageEngine::handleDropCommand(const char *target) { char buf[256]; snprintf(buf, 256, "You no longer have the %s.", (*it)->_name.c_str()); + appendText(buf); _world->move(*it, _world->_player->_currentScene); handled = true; |