From 4a337b7a42d0c92bc2ed26b7e206188dc04c569d Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Wed, 11 Feb 2015 12:16:03 +0300 Subject: Add typed bool type Equipm. --- src/item.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/item.cpp') diff --git a/src/item.cpp b/src/item.cpp index 07c33dc49..bd4cb25de 100644 --- a/src/item.cpp +++ b/src/item.cpp @@ -45,7 +45,7 @@ Item::Item(const int id, const Identified identified, const Damaged damaged, const Favorite favorite, - const bool equipment, + const Equipm equipment, const bool equipped) : mId(0), mColor(0), @@ -85,7 +85,8 @@ void Item::setId(const int id, const unsigned char color) mColor = color; // Types 0 and 1 are not equippable items. - mEquipment = id && static_cast(getInfo().getType()) >= 2; + mEquipment = fromBool(id && static_cast(getInfo().getType()) + >= 2, Equipm); if (mImage) mImage->decRef(); -- cgit v1.2.3-60-g2f50