diff options
Diffstat (limited to 'src/being/playerinfo.cpp')
-rw-r--r-- | src/being/playerinfo.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/being/playerinfo.cpp b/src/being/playerinfo.cpp index 8f91c16db..fdbad89a5 100644 --- a/src/being/playerinfo.cpp +++ b/src/being/playerinfo.cpp @@ -200,7 +200,7 @@ void setInventoryItem(const int index, const int id, const int amount, const int refine) { bool equipment = false; - const int itemType = ItemDB::get(id).getType(); + const ItemType itemType = ItemDB::get(id).getType(); if (itemType != ITEM_UNUSABLE && itemType != ITEM_USABLE) equipment = true; if (mInventory) @@ -411,7 +411,7 @@ void gameDestroyed() delete2(mEquipment); } -void stateChange(const int state) +void stateChange(const State state) { if (state == STATE_GAME) { |