diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-02-11 00:20:57 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-02-11 00:20:57 +0300 |
commit | 067410031057ffc9bdb36b976bc2a658b23acb1b (patch) | |
tree | ca60538b0a1aef7aabcd2d89250efe98961e85cb /src/inventory.cpp | |
parent | 7d9f6bd3984c423b89a9f564342cde74f378f8c9 (diff) | |
download | plus-067410031057ffc9bdb36b976bc2a658b23acb1b.tar.gz plus-067410031057ffc9bdb36b976bc2a658b23acb1b.tar.bz2 plus-067410031057ffc9bdb36b976bc2a658b23acb1b.tar.xz plus-067410031057ffc9bdb36b976bc2a658b23acb1b.zip |
Add typed bool type Favorite.
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 47c60bf1c..20731ad10 100644 --- a/src/inventory.cpp +++ b/src/inventory.cpp @@ -112,7 +112,7 @@ int Inventory::addItem(const int id, const uint8_t color, const Identified identified, const Damaged damaged, - const bool favorite, + const Favorite favorite, const bool equipment, const bool equipped) { @@ -130,7 +130,7 @@ void Inventory::setItem(const int index, const unsigned char color, const Identified identified, const Damaged damaged, - const bool favorite, + const Favorite favorite, const bool equipment, const bool equipped) { |