Skip to content

Commit

Permalink
Fix warning text
Browse files Browse the repository at this point in the history
  • Loading branch information
Maschell committed Apr 25, 2024
1 parent 8a2fc9f commit bc1677b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/rpxloader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand Down Expand Up @@ -210,4 +210,4 @@ RPXLoaderStatus RPXLoader_GetPathOfSaveRedirection(char *outBuffer, uint32_t out
}

return reinterpret_cast<decltype(&RPXLoader_GetPathOfSaveRedirection)>(sRL_GetPathOfSaveRedirection)(outBuffer, outSize);
}
}

0 comments on commit bc1677b

Please sign in to comment.