Skip to content

Commit

Permalink
Update MultiNativeContext.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
Perksey authored Jul 2, 2024
1 parent 524d7a9 commit 6eb87a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Core/Silk.NET.Core/Contexts/MultiNativeContext.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public nint GetProcAddress(string proc, int? slot = default)
if (!TryGetProcAddress(proc, out var ret, slot))
{
static void Throw(string fn) => throw new SymbolLoadingException(fn);
Throw(fn);
Throw(proc);
}

return ret;
Expand Down

0 comments on commit 6eb87a1

Please sign in to comment.