Merge branch '0.1.3-dev' into version

This commit is contained in:
Maschell 2024-04-25 16:34:59 +02:00 committed by GitHub
commit e7b2d62d39
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -95,7 +95,7 @@ RPXLoaderStatus RPXLoader_InitLibrary() {
}
if (OSDynLoad_FindExport(sModuleHandle, OS_DYNLOAD_EXPORT_FUNC, "RL_GetPathOfSaveRedirection", (void **) &sRL_GetPathOfSaveRedirection) != OS_DYNLOAD_OK) {
DEBUG_FUNCTION_LINE_WARN("FindExport RL_GetPathOfRunningExecutable failed.");
DEBUG_FUNCTION_LINE_WARN("FindExport RL_GetPathOfSaveRedirection failed.");
sRL_GetPathOfSaveRedirection = nullptr;
}
@ -210,4 +210,4 @@ RPXLoaderStatus RPXLoader_GetPathOfSaveRedirection(char *outBuffer, uint32_t out
}
return reinterpret_cast<decltype(&RPXLoader_GetPathOfSaveRedirection)>(sRL_GetPathOfSaveRedirection)(outBuffer, outSize);
}
}