Get icons back on shell.html

It seems there is some related issue on emscripten side... but I'll keep the icons here despite not displayed properly for the moment.
This commit is contained in:
raysan5
2020-03-30 21:34:45 +02:00
parent e469f4ebf7
commit 8da6307456

View File

@@ -173,8 +173,8 @@ jwE50AGjLCVuS8Yt4H7OgZLKK5EKOsLviEWJSL/+0uMi7gLUSBseYwqEbXvSHCec1CJvZPyHCmYQffaB
<div class="emscripten" id="status">Downloading...</div> <div class="emscripten" id="status">Downloading...</div>
<span id='controls'> <span id='controls'>
<span><input type="button" value="FULLSCREEN" onclick="Module.requestFullscreen(false, false)"></span> <span><input type="button" value="🖵 FULLSCREEN" onclick="Module.requestFullscreen(false, false)"></span>
<span><input type="button" id="btn-audio" value="AUDIO OFF" onclick="toggleAudio()"></span> <span><input type="button" id="btn-audio" value="🔇 SUSPEND" onclick="toggleAudio()"></span>
</span> </span>
<div class="emscripten"> <div class="emscripten">
@@ -305,7 +305,7 @@ jwE50AGjLCVuS8Yt4H7OgZLKK5EKOsLviEWJSL/+0uMi7gLUSBseYwqEbXvSHCec1CJvZPyHCmYQffaB
construct(target, args) { construct(target, args) {
const result = new target(...args); const result = new target(...args);
audioContexList.push(result); audioContexList.push(result);
if (result.state == "suspended") audioBtn.value = "AUDIO ON"; if (result.state == "suspended") audioBtn.value = "🔈 RESUME";
return result; return result;
} }
}); });
@@ -318,8 +318,8 @@ jwE50AGjLCVuS8Yt4H7OgZLKK5EKOsLviEWJSL/+0uMi7gLUSBseYwqEbXvSHCec1CJvZPyHCmYQffaB
else if (ctx.state == "running") ctx.suspend(); else if (ctx.state == "running") ctx.suspend();
}); });
if (resumed) audioBtn.value = "AUDIO OFF"; if (resumed) audioBtn.value = "🔇 SUSPEND";
else audioBtn.value = "AUDIO ON"; else audioBtn.value = "🔈 RESUME";
} }
</script> </script>
{{{ SCRIPT }}} {{{ SCRIPT }}}