Fix QtAppSystem steamApiDll never getting assigned (#3591)

This commit is contained in:
Tony Ferguson
2025-12-15 11:48:10 +00:00
committed by GitHub
parent 0697a99bb8
commit 9f5a1917d8

View File

@@ -93,7 +93,7 @@ public class QtAppSystem
protected void LoadSteamDll()
{
var dllName = $"{Environment.CurrentDirectory}\\bin\\win64\\steam_api64.dll";
if ( !NativeLibrary.TryLoad( dllName, out var steamApiDll ) )
if ( !NativeLibrary.TryLoad( dllName, out steamApiDll ) )
{
throw new System.Exception( "Couldn't load bin/win64/steam_api64.dll" );
}