mirror of
https://github.com/Facepunch/sbox-public.git
synced 2025-12-23 22:48:07 -05:00
Fix QtAppSystem steamApiDll never getting assigned (#3591)
This commit is contained in:
@@ -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" );
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user