Update the Dockerfile

This commit is contained in:
Maschell 2023-03-26 15:23:44 +02:00
parent f746b5b32e
commit 141e77cd80
2 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
FROM ghcr.io/wiiu-env/devkitppc:20221228
FROM ghcr.io/wiiu-env/devkitppc:20230326
COPY --from=ghcr.io/wiiu-env/wiiumodulesystem:20230106 /artifacts $DEVKITPRO

View File

@ -130,7 +130,7 @@ bool doRelocation(const std::vector<std::shared_ptr<ModuleData>> &moduleList,
}
rplHandle = usedRPls[rplName];
OSDynLoad_FindExport(rplHandle, isData, functionName.c_str(), (void **) &functionAddress);
OSDynLoad_FindExport(rplHandle, (OSDynLoad_ExportType) isData, functionName.c_str(), (void **) &functionAddress);
if (functionAddress == 0) {
DEBUG_FUNCTION_LINE_ERR("Failed to find export %s of %s", functionName.c_str(), rplName.c_str());
OSFatal("Failed to find export");