From 6944bdb016fce8d3efb338ae4f3bc4152c7e303f Mon Sep 17 00:00:00 2001 From: Ethan O'Brien <77750390+ethanaobrien@users.noreply.github.com> Date: Mon, 29 Jan 2024 16:52:18 -0600 Subject: [PATCH] make "mame" point to the mame2003 plus core --- data/emulator.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/data/emulator.js b/data/emulator.js index b011f10..50f69f1 100644 --- a/data/emulator.js +++ b/data/emulator.js @@ -26,8 +26,8 @@ class EmulatorJS { 'gearcoleco': 'coleco', 'genesis_plus_gx': 'sega', 'handy': 'lynx', - 'mame2003': 'mame2003', - 'mame2003_plus': 'mame2003', + 'mame2003': 'mame', + 'mame2003_plus': 'mame', 'mednafen_ngp': 'ngp', 'mednafen_pce': 'pce', 'mednafen_pcfx': 'pcfx', @@ -71,7 +71,7 @@ class EmulatorJS { 'vb': 'beetle_vb', 'n64': 'mupen64plus_next', 'nds': 'melonds', - 'mame2003': 'mame2003_plus', + 'mame': 'mame2003_plus', 'arcade': 'fbneo', 'psx': 'pcsx_rearmed', '3do': 'opera', @@ -910,7 +910,7 @@ class EmulatorJS { this.textElem.innerText = this.localization("Download Game Data"); const gotGameData = (data) => { - if (['arcade', 'mame2003'].includes(this.getCore(true))) { + if (['arcade', 'mame'].includes(this.getCore(true))) { this.fileName = this.getBaseFileName(true); FS.writeFile(this.fileName, new Uint8Array(data)); resolve();