diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-07-14 23:43:54 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-07-14 23:43:54 +0300 |
commit | 15a79eee1b3baa91953daf33dc021a1e7c147365 (patch) | |
tree | 21fc078237a8c635308c1e84e0bba869918ba3d5 /src/net/ea/inventoryitem.h | |
parent | e1841e31c606f1d97ea54c3f00f3380db814f3d2 (diff) | |
download | plus-15a79eee1b3baa91953daf33dc021a1e7c147365.tar.gz plus-15a79eee1b3baa91953daf33dc021a1e7c147365.tar.bz2 plus-15a79eee1b3baa91953daf33dc021a1e7c147365.tar.xz plus-15a79eee1b3baa91953daf33dc021a1e7c147365.zip |
Change refine type to uint8_t.
Diffstat (limited to 'src/net/ea/inventoryitem.h')
-rw-r--r-- | src/net/ea/inventoryitem.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/net/ea/inventoryitem.h b/src/net/ea/inventoryitem.h index 2b8ac502a..f46ff48be 100644 --- a/src/net/ea/inventoryitem.h +++ b/src/net/ea/inventoryitem.h @@ -35,12 +35,12 @@ class InventoryItem final int slot; int id; int quantity; - int refine; + uint8_t refine; unsigned char color; bool equip; InventoryItem(const int slot0, const int id0, const int quantity0, - const int refine0, const unsigned char color0, + const uint8_t refine0, const unsigned char color0, const bool equip0) : slot(slot0), id(id0), |