Skip to content

Commit 2328abc

Browse files
committed
Fix filesize unit in web version loading screen
1 parent 76cc2e2 commit 2328abc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mk/emscripten/template.html.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -304,7 +304,7 @@
304304

305305
var update = Date.now() / 1000
306306
progressDescElement.innerText = e.match(/[Dd]ownload/)
307-
? getExp(parseInt(t[2])) + "b / " + getExp(parseInt(t[4])) + "b (" + getExp((parseInt(t[2]) - lastStep) / (update - lastUpdate)) + "b/s)"
307+
? getExp(parseInt(t[2])) + "B / " + getExp(parseInt(t[4])) + "B (" + getExp((parseInt(t[2]) - lastStep) / (update - lastUpdate)) + "B/s)"
308308
: t[2] + " of " + t[4] + " assets loaded";
309309
lastUpdate = Date.now() / 1000;
310310
lastStep = parseInt(t[2]);

0 commit comments

Comments
 (0)