summaryrefslogtreecommitdiff
path: root/src/shopitem.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-02-10 23:32:22 +0300
committerAndrei Karas <akaras@inbox.ru>2015-02-10 23:32:22 +0300
commit7d9f6bd3984c423b89a9f564342cde74f378f8c9 (patch)
treeeb6288208d78752b016440556beaea98dfbe0168 /src/shopitem.cpp
parentb81f22b9ca68675d16fa2263b89d7dd0d179ef45 (diff)
downloadplus-7d9f6bd3984c423b89a9f564342cde74f378f8c9.tar.gz
plus-7d9f6bd3984c423b89a9f564342cde74f378f8c9.tar.bz2
plus-7d9f6bd3984c423b89a9f564342cde74f378f8c9.tar.xz
plus-7d9f6bd3984c423b89a9f564342cde74f378f8c9.zip
Fix case in new strong typed types.
Diffstat (limited to 'src/shopitem.cpp')
-rw-r--r--src/shopitem.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/shopitem.cpp b/src/shopitem.cpp
index 2871e1853..16df6026a 100644
--- a/src/shopitem.cpp
+++ b/src/shopitem.cpp
@@ -39,8 +39,8 @@ ShopItem::ShopItem(const int inventoryIndex,
const int quantity,
const int price) :
Item(id, type, 0, 0, color,
- Identified_True,
- Damaged_False,
+ Identified_true,
+ Damaged_false,
false, false, false),
mDisplayName(),
mDuplicates(),
@@ -57,8 +57,8 @@ ShopItem::ShopItem(const int id,
const unsigned char color,
const int price) :
Item(id, type, 0, 0, color,
- Identified_True,
- Damaged_False,
+ Identified_true,
+ Damaged_false,
false, false, false),
mDisplayName(),
mDuplicates(),