mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-01-20 15:40:30 +01:00
[rpcsx-os]: linker: fixed custom so load
This commit is contained in:
parent
0bbab3eae5
commit
a57aa92ace
|
|
@ -131,7 +131,10 @@ loadPrx(orbis::Thread *thread, std::string_view path, bool relocate) {
|
|||
}
|
||||
|
||||
expectedName += tmpExpectedName;
|
||||
expectedName += ".prx";
|
||||
|
||||
if (!expectedName.ends_with(".prx")) {
|
||||
expectedName += ".prx";
|
||||
}
|
||||
}
|
||||
|
||||
return loadPrx(thread, path, relocate, loadedObjects, loadedModules,
|
||||
|
|
|
|||
Loading…
Reference in a new issue