diff options
-rw-r--r-- | src/resources/dye.cpp | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/resources/dye.cpp b/src/resources/dye.cpp index 13b635d45..bfe9145bc 100644 --- a/src/resources/dye.cpp +++ b/src/resources/dye.cpp @@ -94,12 +94,13 @@ void DyePalette::getColor(const int intensity, int color[3]) const return; } - int last = static_cast<int>(mColors.size()); + const int last = static_cast<int>(mColors.size()); if (last == 0) return; - const int i = intensity * last / 255; - const int t = intensity * last % 255; + const int intLast = intensity * last; + const int i = intLast / 255; + const int t = intLast % 255; int j = t != 0 ? i : i - 1; @@ -148,7 +149,7 @@ void DyePalette::getColor(double intensity, int color[3]) const intensity = 0.0; // Scale up - intensity = intensity * static_cast<double>(mColors.size() - 1); + intensity *= static_cast<double>(mColors.size() - 1); // Color indices const int i = static_cast<int>(floor(intensity)); |