Skip to content

Commit

Permalink
Remove code
Browse files Browse the repository at this point in the history
  • Loading branch information
dellis1972 committed Sep 6, 2024
1 parent e900a38 commit 581c929
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MonoGame.Framework/Platform/Audio/OpenAL.cs
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ private static IntPtr GetNativeLibrary()
#else
var ret = FuncLoader.LoadLibrary("libopenal.dylib");
if (ret ==IntPtr.Zero)
ret = FuncLoader.LoadLibrary(Path.Combine (Path.GetDirectoryName (typeof (AL).Assembly.Location)!, "libopenal.dylib"));
ret = FuncLoader.LoadLibrary(Path.Combine (Path.GetDirectoryName (typeof (AL).Assembly.Location), "libopenal.dylib"));
return ret;
#endif
}
Expand Down

0 comments on commit 581c929

Please sign in to comment.