diff options
author | Sergeanur <s.anureev@yandex.ua> | 2020-11-08 20:59:13 +0100 |
---|---|---|
committer | Sergeanur <s.anureev@yandex.ua> | 2020-11-08 20:59:13 +0100 |
commit | 23d294fef51d468dcdf0b2744a2974ede9792fa3 (patch) | |
tree | 3190f06c762656d9bdcdd36f6f5d991d34b5f4c9 | |
parent | Font: Hud: Use orig. text dimensions, fix right-align calculations (diff) | |
download | re3-23d294fef51d468dcdf0b2744a2974ede9792fa3.tar re3-23d294fef51d468dcdf0b2744a2974ede9792fa3.tar.gz re3-23d294fef51d468dcdf0b2744a2974ede9792fa3.tar.bz2 re3-23d294fef51d468dcdf0b2744a2974ede9792fa3.tar.lz re3-23d294fef51d468dcdf0b2744a2974ede9792fa3.tar.xz re3-23d294fef51d468dcdf0b2744a2974ede9792fa3.tar.zst re3-23d294fef51d468dcdf0b2744a2974ede9792fa3.zip |
Diffstat (limited to '')
-rw-r--r-- | src/objects/Object.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/objects/Object.cpp b/src/objects/Object.cpp index 293e5274..93b6d581 100644 --- a/src/objects/Object.cpp +++ b/src/objects/Object.cpp @@ -38,7 +38,7 @@ CObject::CObject(void) m_colour2 = 0; m_colour1 = m_colour2; m_nBonusValue = 0; - // m_nCostValue = 0; // TODO(Miami) + m_nCostValue = 0; bIsPickup = false; bPickupObjWithMessage = false; bOutOfStock = false; @@ -444,7 +444,7 @@ CObject::Init(void) m_colour2 = 0; m_nBonusValue = 0; bIsWeapon = false; -// TODO(MIAMI): some new field here + m_nCostValue = 0; m_pCollidingEntity = nil; CColPoint point; CEntity* outEntity = nil; |