Skip to content

Commit

Permalink
PINK: fix arguments in InventoryItem method
Browse files Browse the repository at this point in the history
  • Loading branch information
voltya authored and sev- committed Jun 28, 2018
1 parent c32c642 commit b89de53
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion engines/pink/objects/inventory.cpp
Expand Up @@ -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() {
Expand Down

0 comments on commit b89de53

Please sign in to comment.