diff --git a/source/resource.cpp b/source/resource.cpp index f8eb0ca..e4599fa 100644 --- a/source/resource.cpp +++ b/source/resource.cpp @@ -440,6 +440,9 @@ void Resource::checkEvents() void Resource::updateLoadingProgress() { count_.add(1); - renderProgress(); + if (count_.loaded % 5 == 0 || count_.loaded == count_.total) + { + renderProgress(); + } checkEvents(); } \ No newline at end of file