diff options
Diffstat (limited to 'src/gui/inventorywindow.cpp')
-rw-r--r-- | src/gui/inventorywindow.cpp | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/src/gui/inventorywindow.cpp b/src/gui/inventorywindow.cpp index b72a6ff0..fef55b6c 100644 --- a/src/gui/inventorywindow.cpp +++ b/src/gui/inventorywindow.cpp @@ -122,8 +122,7 @@ void InventoryWindow::logic() const int usedSlots = player_node->getInventory()->getNumberOfSlotsUsed(); if (mMaxWeight != player_node->mMaxWeight || - mTotalWeight != player_node->mTotalWeight || - mUsedSlots != usedSlots) + mTotalWeight != player_node->mTotalWeight || mUsedSlots != usedSlots) { mTotalWeight = player_node->mTotalWeight; mMaxWeight = player_node->mMaxWeight; @@ -131,25 +130,18 @@ void InventoryWindow::logic() // Weight Bar coloration if (mTotalWeight < (mMaxWeight / 3)) - { mWeightBar->setColor(0, 0, 255); // Blue - } else if (mTotalWeight < ((mMaxWeight / 3) * 2)) - { mWeightBar->setColor(255, 255, 0); // Yellow - } else - { mWeightBar->setColor(255, 0, 0); // Red - } // Adjust progress bars mSlotsBar->setProgress((float) mUsedSlots / mMaxSlots); mWeightBar->setProgress((float) mTotalWeight / mMaxWeight); mSlotsBar->setText(strprintf("%d/%d", mUsedSlots, mMaxSlots)); - mWeightBar->setText(strprintf("%dg/%dg", mTotalWeight, - mMaxWeight)); + mWeightBar->setText(strprintf("%dg/%dg", mTotalWeight, mMaxWeight)); } } |