From f3e1496d290b62a6dec8741d698962fc09e1a78f Mon Sep 17 00:00:00 2001 From: bicyclesoda <38231712+mountainflaw@users.noreply.github.com> Date: Mon, 29 Apr 2024 19:42:13 -0400 Subject: [PATCH] Change test emulator from mupen64plus to parallel-launcher (#790) * mupen64plus -> parallel-launcher * Add WSL support * Update Makefile make it work --- Makefile | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index c2ef4791..3a25409b 100644 --- a/Makefile +++ b/Makefile @@ -551,7 +551,13 @@ ifneq (,$(call find-command,armips)) else RSPASM := $(TOOLS_DIR)/armips endif -EMULATOR = mupen64plus + +ifneq (,$(call find-command,wslview)) + EMULATOR = "/mnt/c/Program Files (x86)/parallel-launcher/parallel-launcher.exe" +else + EMULATOR = parallel-launcher +endif + EMU_FLAGS = ifneq (,$(call find-command,wslview))