Pārlūkot izejas kodu

Fix overlapping loading % on hxsl cache generation

Leonardo Jeanteur 1 gadu atpakaļ
vecāks
revīzija
d63c19089f
1 mainītis faili ar 1 papildinājumiem un 1 dzēšanām
  1. 1 1
      hxsl/CacheFile.hx

+ 1 - 1
hxsl/CacheFile.hx

@@ -119,7 +119,7 @@ class CacheFile extends Cache {
 			for( r in wait ) {
 				if (showProgress && (waitCount % 5 == 0 || waitCount <= 1)) {
 					var progress = Std.int((1 - (waitCount / fullCount)) * 1000) / 10;
-					Sys.print('$progress%\t(${fullCount - waitCount}/$fullCount)  \r');
+					Sys.print('$progress%  \t(${fullCount - waitCount}/$fullCount)  \r');
 				}
 
 				addNewShader(r);