From 31ace8ebf9b8c418bb383186c9512ca16845421d Mon Sep 17 00:00:00 2001 From: Jacob Sikorski Date: Thu, 2 Nov 2023 20:47:09 -0600 Subject: [PATCH] Fix WINEESYNC Setting (#590) --- WhiskyKit/Sources/WhiskyKit/Whisky/BottleSettings.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/WhiskyKit/Sources/WhiskyKit/Whisky/BottleSettings.swift b/WhiskyKit/Sources/WhiskyKit/Whisky/BottleSettings.swift index 975df31f..af4829d5 100644 --- a/WhiskyKit/Sources/WhiskyKit/Whisky/BottleSettings.swift +++ b/WhiskyKit/Sources/WhiskyKit/Whisky/BottleSettings.swift @@ -276,7 +276,7 @@ public struct BottleSettings: Codable { case .none: break case .esync: - wineEnv.updateValue("1", forKey: "WINEMSYNC") + wineEnv.updateValue("1", forKey: "WINEESYNC") case .msync: wineEnv.updateValue("1", forKey: "WINEMSYNC") }