diff --git a/src/dolphin/manager.ts b/src/dolphin/manager.ts index cad96bb56..0915fca42 100644 --- a/src/dolphin/manager.ts +++ b/src/dolphin/manager.ts @@ -122,9 +122,7 @@ export class DolphinManager { const instance = new DolphinInstance(dolphinPath); this.netplayDolphinInstance = instance; instance.on("close", async (exitCode) => { - if (launchType === DolphinLaunchType.NETPLAY) { - await this._updateLauncherSettings(launchType); - } + await this._updateLauncherSettings(launchType); this.eventSubject.next({ type: DolphinEventType.CLOSED, dolphinType: DolphinLaunchType.NETPLAY, @@ -142,7 +140,6 @@ export class DolphinManager { const instance = new PlaybackDolphinInstance(dolphinPath); this.playbackDolphinInstances.set(instanceId, instance); instance.on("close", async (exitCode) => { - await this._updateLauncherSettings(launchType); this.eventSubject.next({ type: DolphinEventType.CLOSED, dolphinType: DolphinLaunchType.PLAYBACK,