From 6abe794e37d9fdf22b231efb2d3e7a59c916e9a5 Mon Sep 17 00:00:00 2001 From: LmeSzinc <37934724+LmeSzinc@users.noreply.github.com> Date: Thu, 23 Oct 2025 23:26:52 +0800 Subject: [PATCH] Fix: [ALAS] MuMuPlayer12 failing to close as expected --- module/device/platform/emulator_windows.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/device/platform/emulator_windows.py b/module/device/platform/emulator_windows.py index 84d6e2bfc..78a5b6b0c 100644 --- a/module/device/platform/emulator_windows.py +++ b/module/device/platform/emulator_windows.py @@ -169,7 +169,7 @@ class Emulator(EmulatorBase): if 'MuMuPlayer.exe' in exe: return exe.replace('MuMuPlayer.exe', 'MuMuManager.exe') # MuMuPlayer12 5.0 - elif 'MuMuPlayer.exe' in exe: + elif 'MuMuNxMain.exe' in exe: return exe.replace('MuMuNxMain.exe', 'MuMuManager.exe') elif 'LDPlayer.exe' in exe: return exe.replace('LDPlayer.exe', 'ldconsole.exe')