summaryrefslogtreecommitdiffhomepage
path: root/games/loader.html
diff options
context:
space:
mode:
authorraysan5 <[email protected]>2021-09-03 13:55:10 +0200
committerraysan5 <[email protected]>2021-09-03 13:55:10 +0200
commita1a42bc507012529562255d41138feff61fc5ace (patch)
tree0c225a00e21fbff19f828494d45ae3c1329e9bc4 /games/loader.html
parent2fe8658f6448a172205fc075c259adfcfacef89a (diff)
downloadraylib.com-a1a42bc507012529562255d41138feff61fc5ace.tar.gz
raylib.com-a1a42bc507012529562255d41138feff61fc5ace.zip
Update classic games with latest raylib/emscripten version
Diffstat (limited to 'games/loader.html')
-rw-r--r--games/loader.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/games/loader.html b/games/loader.html
index 85e5a2d..fa86595 100644
--- a/games/loader.html
+++ b/games/loader.html
@@ -80,7 +80,7 @@
Module.canvas = document.getElementById('canvas');
Module.canvas.addEventListener("webglcontextlost", function(e) { alert('WebGL context lost. You will need to reload the page.'); e.preventDefault(); }, false);
- var jsUrl = 'samples/' + name.substring(7) + '.js';
+ var jsUrl = 'classics/' + name.substring(7) + '.js';
// Run emscripten example
$.getScript(jsUrl, function(){});