diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-02-11 16:23:03 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-02-11 16:23:03 +0300 |
commit | ae0ade61326aa52df63aeb7742133160b8c78047 (patch) | |
tree | b04c09807058b593949fe634098e73474a58589d /src/inventory.cpp | |
parent | 4a337b7a42d0c92bc2ed26b7e206188dc04c569d (diff) | |
download | plus-ae0ade61326aa52df63aeb7742133160b8c78047.tar.gz plus-ae0ade61326aa52df63aeb7742133160b8c78047.tar.bz2 plus-ae0ade61326aa52df63aeb7742133160b8c78047.tar.xz plus-ae0ade61326aa52df63aeb7742133160b8c78047.zip |
Add typed bool type Equipped.
Diffstat (limited to 'src/inventory.cpp')
-rw-r--r-- | src/inventory.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/inventory.cpp b/src/inventory.cpp index dc5e59717..79816fae5 100644 --- a/src/inventory.cpp +++ b/src/inventory.cpp @@ -114,7 +114,7 @@ int Inventory::addItem(const int id, const Damaged damaged, const Favorite favorite, const Equipm equipment, - const bool equipped) + const Equipped equipped) { const int slot = getFreeSlot(); setItem(slot, id, type, quantity, refine, color, @@ -132,7 +132,7 @@ void Inventory::setItem(const int index, const Damaged damaged, const Favorite favorite, const Equipm equipment, - const bool equipped) + const Equipped equipped) { if (index < 0 || index >= static_cast<int>(mSize)) { |