diff options
author | whiterandrek | 2018-05-21 14:36:31 +0300 |
---|---|---|
committer | Eugene Sandulenko | 2018-06-28 23:51:32 +0200 |
commit | b89de53fb1b3184455512fe56d7a1bfb5e733fcb (patch) | |
tree | 76e8080e66e11714b10ef02dc576381ba069d69f /engines/pink | |
parent | c32c642eba165d6804195e21b8bfbe42f8e5059e (diff) | |
download | scummvm-rg350-b89de53fb1b3184455512fe56d7a1bfb5e733fcb.tar.gz scummvm-rg350-b89de53fb1b3184455512fe56d7a1bfb5e733fcb.tar.bz2 scummvm-rg350-b89de53fb1b3184455512fe56d7a1bfb5e733fcb.zip |
PINK: fix arguments in InventoryItem method
Diffstat (limited to 'engines/pink')
-rw-r--r-- | engines/pink/objects/inventory.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/pink/objects/inventory.cpp b/engines/pink/objects/inventory.cpp index 1869147e52..c2607bed74 100644 --- a/engines/pink/objects/inventory.cpp +++ b/engines/pink/objects/inventory.cpp @@ -49,7 +49,7 @@ Common::String &InventoryItem::getCurrentOwner() { } void InventoryItem::toConsole() { - debug("\tInventoryItem: _initialOwner=%s _currentOwner=%s", _initialOwner, _currentOwner); + debug("\tInventoryItem: _initialOwner=%s _currentOwner=%s", _initialOwner.c_str(), _currentOwner.c_str()); } InventoryMgr::~InventoryMgr() { |