diff options
Diffstat (limited to 'src/inventory.cpp')
-rw-r--r-- | src/inventory.cpp | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/src/inventory.cpp b/src/inventory.cpp index 7e8c94e..48adb86 100644 --- a/src/inventory.cpp +++ b/src/inventory.cpp @@ -342,12 +342,8 @@ void Inventory::draw(void) { return sum / v.size(); }; - ui::fontTransInv = 255 * (averagef(dfp) / range); - if (ui::fontTransInv > 255) - ui::fontTransInv = 255; - else if (ui::fontTransInv < 0) - ui::fontTransInv = 0; - + ui::fontTransInv = std::clamp(255 * (averagef(dfp) / range), 0ul, 255ul); + if (invOpening) { for (auto &d : dfp) { if (!a || dfp[a - 1] > 50) |