Skip to content

Commit

Permalink
a little minor linux fix to native librevorb
Browse files Browse the repository at this point in the history
  • Loading branch information
Murph9 committed Sep 9, 2023
1 parent f9644aa commit f823e82
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion revorbstd/Native.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ private static IntPtr SharedLibraryResolver(string libraryName, Assembly assembl
if (File.Exists("../revorbstd/librevorb.so"))
return NativeLibrary.Load("../revorbstd/librevorb.so", assembly, DllImportSearchPath.AssemblyDirectory);

return NativeLibrary.Load("librevorb.so", assembly, DllImportSearchPath.AssemblyDirectory);
return NativeLibrary.Load("./librevorb.so", assembly, DllImportSearchPath.AssemblyDirectory);
}

Console.WriteLine("Current platform doesn't support librevorb. Sound conversion to .ogg is not available.");
Expand Down

0 comments on commit f823e82

Please sign in to comment.