From 5573c29a744a62ce611bcf4c5ed36edacc983822 Mon Sep 17 00:00:00 2001 From: AL <26797547+Al12rs@users.noreply.github.com> Date: Wed, 16 Oct 2024 13:01:27 +0200 Subject: [PATCH] Change BG3 Game to launch `LariLauncher.exe` rather than Vulkan exe, to allow users to choose on GOG --- src/Games/NexusMods.Games.Larian/BaldursGate3/BaldursGate3.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/Games/NexusMods.Games.Larian/BaldursGate3/BaldursGate3.cs b/src/Games/NexusMods.Games.Larian/BaldursGate3/BaldursGate3.cs index 6a8975c58..a7a83cab3 100644 --- a/src/Games/NexusMods.Games.Larian/BaldursGate3/BaldursGate3.cs +++ b/src/Games/NexusMods.Games.Larian/BaldursGate3/BaldursGate3.cs @@ -39,7 +39,9 @@ public override GamePath GetPrimaryFile(GameStore store) { if (_osInformation.IsOSX) return new GamePath(LocationId.Game, "Contents/MacOS/Baldur's Gate 3"); - return new GamePath(LocationId.Game, "bin/bg3.exe"); + + // Use launcher to allow choosing between DirectX11 and Vulkan on GOG, Steam already always starts the launcher + return new GamePath(LocationId.Game, "Launcher/LariLauncher.exe"); } protected override IReadOnlyDictionary GetLocations(IFileSystem fileSystem, GameLocatorResult installation)