PINK: fix arguments in InventoryItem method

This commit is contained in:
whiterandrek 2018-05-21 14:36:31 +03:00 committed by Eugene Sandulenko
parent c32c642eba
commit b89de53fb1

View File

@ -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() {