From 6afd9ea1f2f72e5483a14aa63ac9ae6dad0c090e Mon Sep 17 00:00:00 2001 From: Nimetu Date: Mon, 23 Mar 2020 18:10:38 +0200 Subject: [PATCH] Fixed: invalid assignment --- code/nel/src/gui/group_html.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/nel/src/gui/group_html.cpp b/code/nel/src/gui/group_html.cpp index 8009c5ac8..50b381a3c 100644 --- a/code/nel/src/gui/group_html.cpp +++ b/code/nel/src/gui/group_html.cpp @@ -5178,7 +5178,7 @@ namespace NLGUI if (low < min) low = min; if (high > max) - max = max; + high = max; } float CGroupHTML::HTMLMeterElement::getValueRatio() const