Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion archipelago.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"minimum_ap_version": "0.6.5",
"world_version": "1.4.39",
"world_version": "1.4.40",
"authors": ["2dos", "AlmostSeagull", "Ballaam", "Green Bean", "Killklli", "Lrauq", "PoryGone", "Umed"],
"version": 7,
"compatible_version": 7,
Expand Down
4 changes: 4 additions & 0 deletions archipelago/client/emu_loader.py
Original file line number Diff line number Diff line change
Expand Up @@ -367,6 +367,7 @@ class Emulators(IntEnum):
RMG = auto()
Simple64 = auto()
ParallelLauncher = auto()
ParallelLauncher903 = auto()
RetroArch = auto()


Expand Down Expand Up @@ -642,6 +643,9 @@ def validate_rom(self) -> bool:
Emulators.ParallelLauncher: EmulatorInfo(
Emulators.ParallelLauncher, "Parallel Launcher", "retroarch", True, "parallel_n64_next_libretro.dll", True, 0x845000, 0xD56000, linux_dll_name="parallel_n64_next_libretro.so"
),
Emulators.ParallelLauncher903: EmulatorInfo(
Emulators.ParallelLauncher903, "Parallel Launcher (9.0.3+)", "retroarch", True, "parallel_n64_next_libretro.dll", True, 0x1400000, 0x1800000, linux_dll_name="parallel_n64_next_libretro.so"
),
Emulators.RetroArch: EmulatorInfo(
Emulators.RetroArch, "RetroArch", "retroarch", True, "mupen64plus_next_libretro.dll", True, 0, 0xFFFFFF, range_step=4, linux_dll_name="mupen64plus_next_libretro.so"
),
Expand Down