Update Dockerfile

This commit is contained in:
Maschell 2023-04-17 13:42:46 +02:00
parent 62dbec960f
commit 039e177ff9
2 changed files with 2 additions and 2 deletions

View File

@ -1,3 +1,3 @@
FROM ghcr.io/wiiu-env/devkitppc:20220806
FROM ghcr.io/wiiu-env/devkitppc:20230417
WORKDIR project

View File

@ -194,7 +194,7 @@ bool doRelocation(const std::vector<RelocationData> &relocData, relocation_tramp
OSDynLoad_Acquire(rplName.c_str(), &rplHandle);
uint32_t functionAddress = 0;
OSDynLoad_FindExport(rplHandle, isData, functionName.c_str(), (void **) &functionAddress);
OSDynLoad_FindExport(rplHandle, (OSDynLoad_ExportType) isData, functionName.c_str(), (void **) &functionAddress);
if (functionAddress == 0) {
return false;
}