Skip to content

Commit eee18ee

Browse files
authored
Merge pull request #3066 from GreenestBeen/parallel
Parallel 9.0.3 support
2 parents 076e9a6 + 30f8cf1 commit eee18ee

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

archipelago.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"minimum_ap_version": "0.6.5",
3-
"world_version": "1.4.39",
3+
"world_version": "1.4.40",
44
"authors": ["2dos", "AlmostSeagull", "Ballaam", "Green Bean", "Killklli", "Lrauq", "PoryGone", "Umed"],
55
"version": 7,
66
"compatible_version": 7,

archipelago/client/emu_loader.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -367,6 +367,7 @@ class Emulators(IntEnum):
367367
RMG = auto()
368368
Simple64 = auto()
369369
ParallelLauncher = auto()
370+
ParallelLauncher903 = auto()
370371
RetroArch = auto()
371372

372373

@@ -642,6 +643,9 @@ def validate_rom(self) -> bool:
642643
Emulators.ParallelLauncher: EmulatorInfo(
643644
Emulators.ParallelLauncher, "Parallel Launcher", "retroarch", True, "parallel_n64_next_libretro.dll", True, 0x845000, 0xD56000, linux_dll_name="parallel_n64_next_libretro.so"
644645
),
646+
Emulators.ParallelLauncher903: EmulatorInfo(
647+
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"
648+
),
645649
Emulators.RetroArch: EmulatorInfo(
646650
Emulators.RetroArch, "RetroArch", "retroarch", True, "mupen64plus_next_libretro.dll", True, 0, 0xFFFFFF, range_step=4, linux_dll_name="mupen64plus_next_libretro.so"
647651
),

0 commit comments

Comments
 (0)