diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-02-11 12:16:03 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-02-11 12:16:03 +0300 |
commit | 4a337b7a42d0c92bc2ed26b7e206188dc04c569d (patch) | |
tree | 97c59c86246afce0710795c6ba545d40004c6810 /src/inventory.cpp | |
parent | 067410031057ffc9bdb36b976bc2a658b23acb1b (diff) | |
download | plus-4a337b7a42d0c92bc2ed26b7e206188dc04c569d.tar.gz plus-4a337b7a42d0c92bc2ed26b7e206188dc04c569d.tar.bz2 plus-4a337b7a42d0c92bc2ed26b7e206188dc04c569d.tar.xz plus-4a337b7a42d0c92bc2ed26b7e206188dc04c569d.zip |
Add typed bool type Equipm.
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 20731ad10..dc5e59717 100644 --- a/src/inventory.cpp +++ b/src/inventory.cpp @@ -113,7 +113,7 @@ int Inventory::addItem(const int id, const Identified identified, const Damaged damaged, const Favorite favorite, - const bool equipment, + const Equipm equipment, const bool equipped) { const int slot = getFreeSlot(); @@ -131,7 +131,7 @@ void Inventory::setItem(const int index, const Identified identified, const Damaged damaged, const Favorite favorite, - const bool equipment, + const Equipm equipment, const bool equipped) { if (index < 0 || index >= static_cast<int>(mSize)) |