Skip to content

Commit

Permalink
Update index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
MajesticWafer authored Jan 17, 2024
1 parent 604cb8b commit 2cd4ea2
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -292,6 +292,8 @@ <h1 style="margin-top: 25px; margin-left: 20px;">DS Player</h1>
<option value="bottom">Bottom Canvas</option>
</select>
<hr />
<input type="checkbox" id="cfg-opt">
<label for="cfg-opt">Experimental optimization</label><br>
<input type="checkbox" id="power-save" style="margin-left: 7px;" />
<label for="power-save">Power-save</label><br />
<input type="checkbox" id="vk-enabled" style="margin-left: 7px;" />
Expand Down Expand Up @@ -328,7 +330,17 @@ <h1 style="margin-top: 25px; margin-left: 20px;">DS Player</h1>
<script src="localforage.js"></script>
<script src="pako.min.js"></script>
<script src="app.js"></script>
<script src="build/nds.js"></script>
<script>
var jsFile = "build/nds.js";
if (localStorage) {
if (localStorage['simd'] == "1") {
jsFile = "build-simd/nds.js";
}
}
var script = document.createElement('script');
script.src = jsFile;
document.body.appendChild(script);
</script>
<script src="sw-loader.js"></script>
<script>
function openLink(url) {
Expand Down

0 comments on commit 2cd4ea2

Please sign in to comment.