diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-10-18 15:06:04 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-10-19 15:12:20 +0300 |
commit | 3b9a97ea5f7694fd6bf5bc98d822f2385be591cb (patch) | |
tree | d5cd2ea8a2a9fc444d4e66cdd0b1957aaf961927 | |
parent | 77e7841e0f8076bc4e536ade9078d8194483b71b (diff) | |
download | plus-3b9a97ea5f7694fd6bf5bc98d822f2385be591cb.tar.gz plus-3b9a97ea5f7694fd6bf5bc98d822f2385be591cb.tar.bz2 plus-3b9a97ea5f7694fd6bf5bc98d822f2385be591cb.tar.xz plus-3b9a97ea5f7694fd6bf5bc98d822f2385be591cb.zip |
add missing const in inventory declaration.
-rw-r--r-- | src/inventory.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/inventory.h b/src/inventory.h index f6dd11017..e9949dc52 100644 --- a/src/inventory.h +++ b/src/inventory.h @@ -99,7 +99,7 @@ class Inventory final * Adds a new item in a free slot. */ void addItem(const int id, const int quantity, const int refine, - const unsigned char color, bool equipment = false); + const unsigned char color, const bool equipment = false); /** * Sets the item at the given position. |