Fixed inventory regression introduced with yesterday's commit.

svn-id: r29091
This commit is contained in:
Nicola Mettifogo 2007-09-24 19:45:18 +00:00
parent 5788598f10
commit 8e1e4b9079
2 changed files with 1 additions and 5 deletions

View File

@ -333,10 +333,7 @@ void Inventory::clear(bool keepVerbs) {
ItemName Inventory::getItemName(ItemPosition pos) const { ItemName Inventory::getItemName(ItemPosition pos) const {
// TODO: should assert against the number of items actually contained, return (pos >= 0 && pos < INVENTORY_MAX_ITEMS) ? _items[pos]._index : 0;
// not the theoretical limit.
assert(pos >= 0 && pos < INVENTORY_MAX_ITEMS);
return _items[pos]._index;
} }
const InventoryItem* Inventory::getItem(ItemPosition pos) const { const InventoryItem* Inventory::getItem(ItemPosition pos) const {

View File

@ -147,7 +147,6 @@ void Parallaction_ns::doLoadGame(uint16 slot) {
f->readLine(s, 15); f->readLine(s, 15);
name = atoi(s); name = atoi(s);
printf("loadGame: inv[%i].id = %i, inv[%i].index = %i\n", _si, value, _si, name);
addInventoryItem(name, value); addInventoryItem(name, value);
} }