This commit is contained in:
Ethan O'Brien 2023-10-02 19:54:24 -05:00
parent 84345d6d91
commit 72b23e386c
3 changed files with 5 additions and 3 deletions

View file

@ -10,6 +10,8 @@
- Fixed cheats menu. - Fixed cheats menu.
- Added popup message for Safari mobile users if game is not running. - Added popup message for Safari mobile users if game is not running.
- Added `EJS_softLoad` option. - Added `EJS_softLoad` option.
- Added amiga core.
- Added c64 core.
# 4.0.7 [View Tree](https://github.com/EmulatorJS/EmulatorJS/tree/f579eb4c080f612723fd6a119b02173cafb37503) # 4.0.7 [View Tree](https://github.com/EmulatorJS/EmulatorJS/tree/f579eb4c080f612723fd6a119b02173cafb37503)
- Added rewind (Thanks to [@n-at](https://github.com/n-at)) - Added rewind (Thanks to [@n-at](https://github.com/n-at))

View file

@ -47,7 +47,7 @@ class EmulatorJS {
'stella2014': 'atari2600', 'stella2014': 'atari2600',
'virtualjaguar': 'jaguar', 'virtualjaguar': 'jaguar',
'yabause': 'segaSaturn', 'yabause': 'segaSaturn',
'amiga': 'puae', 'puae': 'amiga',
'vice_x64': 'c64' 'vice_x64': 'c64'
} }
return options[core] || core; return options[core] || core;
@ -81,7 +81,7 @@ class EmulatorJS {
'ngp': 'mednafen_ngp', 'ngp': 'mednafen_ngp',
'ws': 'mednafen_wswan', 'ws': 'mednafen_wswan',
'coleco': 'gearcoleco', 'coleco': 'gearcoleco',
'puae': 'amiga', 'amiga': 'puae',
'c64': 'vice_x64' 'c64': 'vice_x64'
} }
if (this.isSafari && this.isMobile && this.getCore(true) === "n64") { if (this.isSafari && this.isMobile && this.getCore(true) === "n64") {

File diff suppressed because one or more lines are too long