From 424790a4642f91e53ed4941c70086cbc1f33d815 Mon Sep 17 00:00:00 2001 From: Taylor Richards Date: Wed, 28 Feb 2018 12:16:52 -0500 Subject: [PATCH] rename #progess to #loading --- dist/demo-play.css.in | 4 ++-- dist/demo_shell.html.in | 2 +- src/cfile/cfile.cpp | 6 +++--- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/dist/demo-play.css.in b/dist/demo-play.css.in index 6171a05..2845527 100644 --- a/dist/demo-play.css.in +++ b/dist/demo-play.css.in @@ -10,7 +10,7 @@ html, body { padding: 0; background-color: #222; } -#progress { +#loading { background: #798199 url(demotitle.jpg); background-repeat: no-repeat; background-size: cover; @@ -43,7 +43,7 @@ html, body { #progress_text, #progress_bar { font-family: 'Noto Sans', Tahoma, sans-serif; } -canvas, #progress { +canvas, #loading { width: 100vw; height: 75vw; background-color: #000; diff --git a/dist/demo_shell.html.in b/dist/demo_shell.html.in index c56c895..76e4df7 100644 --- a/dist/demo_shell.html.in +++ b/dist/demo_shell.html.in @@ -9,7 +9,7 @@ @GAME_TITLE@ -
+
diff --git a/src/cfile/cfile.cpp b/src/cfile/cfile.cpp index 40dbe3d..67c4b9f 100644 --- a/src/cfile/cfile.cpp +++ b/src/cfile/cfile.cpp @@ -1571,9 +1571,9 @@ int cfile_init_paths() } else { Module.sync_in_progress = 0; - // remove initial loading/progress screen - var progress = document.getElementById('progress'); - progress.hidden = true; + // remove initial loading screen + var loading = document.getElementById('loading'); + loading.hidden = true; } }); }, user_path, Osreg_app_name); -- 2.39.2