diff --git a/src/renderer/lib/dolphin/useDolphinActions.ts b/src/renderer/lib/dolphin/useDolphinActions.ts index 651cbb27e..f6adbc534 100644 --- a/src/renderer/lib/dolphin/useDolphinActions.ts +++ b/src/renderer/lib/dolphin/useDolphinActions.ts @@ -87,7 +87,12 @@ export const useDolphinActions = (dolphinService: DolphinService) => { return; } - dolphinService.launchNetplayDolphin({ bootToCss }).catch(showError); + dolphinService + .launchNetplayDolphin({ bootToCss }) + .then(() => { + setDolphinOpened(DolphinLaunchType.NETPLAY); + }) + .catch(showError); }, [getInstallStatus, dolphinService, showError], );