diff --git a/gba/icon.png b/gba/icon.png new file mode 100644 index 00000000..4f4259d2 Binary files /dev/null and b/gba/icon.png differ diff --git a/gba/index.html b/gba/index.html index 2ea55959..298df63f 100644 --- a/gba/index.html +++ b/gba/index.html @@ -64,11 +64,7 @@ Licensed under the MIT License (view LICENSE.md for more information) Reset Game: R
Play/Pause: P

-
- -



+




Select a Game

diff --git a/gba/modules/ROMLoadGlueCode.js b/gba/modules/ROMLoadGlueCode.js index 894d933c..e559cc80 100644 --- a/gba/modules/ROMLoadGlueCode.js +++ b/gba/modules/ROMLoadGlueCode.js @@ -61,7 +61,7 @@ function fileLoadROM() { function downloadFile(fileName, registrationHandler) { var ajax = new XMLHttpRequest(); ajax.onload = registrationHandler; - ajax.open("GET", "./" + fileName, true); + ajax.open("GET", fileName, true); ajax.responseType = "arraybuffer"; ajax.overrideMimeType("text/plain; charset=x-user-defined"); ajax.send(null); @@ -79,4 +79,4 @@ function processDownload(parentObj, attachHandler) { } attachHandler(dataArray); } -} \ No newline at end of file +} diff --git a/gba/player.html b/gba/player.html index 14a56337..15c0a9a3 100644 --- a/gba/player.html +++ b/gba/player.html @@ -30,6 +30,7 @@ Licensed under the MIT License (view LICENSE.md for more information) +