mirror of
https://github.com/glest/glest-source.git
synced 2025-08-31 03:39:54 +02:00
- ftp progressbar calculation error fix
This commit is contained in:
@@ -4168,7 +4168,7 @@ void Renderer::renderProgressBar(int size, int x, int y, Font2D *font, int custo
|
|||||||
string renderText = intToStr(static_cast<int>(size)) + "%";
|
string renderText = intToStr(static_cast<int>(size)) + "%";
|
||||||
if(customWidth > 0) {
|
if(customWidth > 0) {
|
||||||
if(size > 0) {
|
if(size > 0) {
|
||||||
currentSize = customWidth * (size / 100);
|
currentSize = (int)((double)customWidth * ((double)size / 100.0));
|
||||||
}
|
}
|
||||||
maxSize = customWidth;
|
maxSize = customWidth;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user