diff --git a/gaseous-server/wwwroot/emulators/EmulatorJS b/gaseous-server/wwwroot/emulators/EmulatorJS index 049d0e7..392dbe7 160000 --- a/gaseous-server/wwwroot/emulators/EmulatorJS +++ b/gaseous-server/wwwroot/emulators/EmulatorJS @@ -1 +1 @@ -Subproject commit 049d0e73caa736ffb7f656ece1bdcd6e329da9c7 +Subproject commit 392dbe7594bbdef23789fe2605dcbe2daa931f55 diff --git a/gaseous-server/wwwroot/pages/EmulatorJS.html b/gaseous-server/wwwroot/pages/EmulatorJS.html index 609a029..8d9f4f9 100644 --- a/gaseous-server/wwwroot/pages/EmulatorJS.html +++ b/gaseous-server/wwwroot/pages/EmulatorJS.html @@ -26,5 +26,7 @@ EJS_backgroundImage = emuBackground; EJS_backgroundBlur = true; + + EJS_gameName = emuGameTitle; \ No newline at end of file diff --git a/gaseous-server/wwwroot/pages/emulator.html b/gaseous-server/wwwroot/pages/emulator.html index 35bd3ef..a3d8735 100644 --- a/gaseous-server/wwwroot/pages/emulator.html +++ b/gaseous-server/wwwroot/pages/emulator.html @@ -11,6 +11,7 @@ var artworks = null; var artworksPosition = 0; + var emuGameTitle = ''; var emuBios = ''; var emuBackground = ''; @@ -33,6 +34,8 @@ if (result.cover) { emuBackground = '/api/v1/Games/' + gameId + '/cover/image'; } + + emuGameTitle = gameData.name; }); ajaxCall('/api/v1/Bios/' + platformId, 'GET', function (result) {