new ruffle

This commit is contained in:
BluePotato102
2023-12-25 10:54:54 -06:00
committed by avsc-sid
parent 464bcf5399
commit c173a9ec2c
73 changed files with 2715 additions and 215 deletions
+2 -2
View File
@@ -19,9 +19,9 @@
<script>
var game = (new URLSearchParams(window.location.search)).get('game');
document.title = (game.replace(/-/g,' ')).toLowerCase().split(' ').map(function(word) {return word[0].toUpperCase() + word.substr(1);}).join(' ');
document.querySelector('#favicon').href = `images/${game}.png`;
document.querySelector('#favicon').href = `../flash/images/${game}.png`;
var fish = window.location.href.split('?')[0] + `files/${game}.swf`;
var fish = window.location.href.split('?')[0] + `../flash/files/${game}.swf`;
var gameConfig = {
swfUrl: fish
}