aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorwhiterandrek2018-05-21 14:36:31 +0300
committerEugene Sandulenko2018-06-28 23:51:32 +0200
commitb89de53fb1b3184455512fe56d7a1bfb5e733fcb (patch)
tree76e8080e66e11714b10ef02dc576381ba069d69f /engines
parentc32c642eba165d6804195e21b8bfbe42f8e5059e (diff)
downloadscummvm-rg350-b89de53fb1b3184455512fe56d7a1bfb5e733fcb.tar.gz
scummvm-rg350-b89de53fb1b3184455512fe56d7a1bfb5e733fcb.tar.bz2
scummvm-rg350-b89de53fb1b3184455512fe56d7a1bfb5e733fcb.zip
PINK: fix arguments in InventoryItem method
Diffstat (limited to 'engines')
-rw-r--r--engines/pink/objects/inventory.cpp2
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() {