UnPSARC icon indicating copy to clipboard operation
UnPSARC copied to clipboard

Fix: Correct Path.Combine usage for Oodle DLL check

Open MonchiLin opened this issue 7 months ago • 0 comments

This PR fixes a bug in the CheckForOodle method where oo2core_9_win64.dll might not be found even if present in the application directory.

Problem: The directory path and filename were concatenated using + before being passed as a single argument to Path.Combine. This prevented Path.Combine from adding the necessary directory separator (e.g., ).

MonchiLin avatar Apr 30 '25 11:04 MonchiLin