diff --git a/Dockerfile b/Dockerfile index dbed3c1..2ed4950 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ FROM wiiuenv/devkitppc:20220917 COPY --from=wiiuenv/libmappedmemory:20220904 /artifacts $DEVKITPRO -COPY --from=wiiuenv/libcontentredirection:20220916 /artifacts $DEVKITPRO +COPY --from=wiiuenv/libcontentredirection:20221010 /artifacts $DEVKITPRO COPY --from=wiiuenv/wiiupluginsystem:20220904 /artifacts $DEVKITPRO WORKDIR project \ No newline at end of file diff --git a/src/modpackSelector.cpp b/src/modpackSelector.cpp index ea44592..4677e98 100644 --- a/src/modpackSelector.cpp +++ b/src/modpackSelector.cpp @@ -389,7 +389,7 @@ bool ReplaceContentInternal(const std::string &basePath, const std::string &subd auto res = ContentRedirection_AddFSLayer(layerHandle, layerName.c_str(), fullPath.c_str(), - FS_LAYER_TYPE_CONTENT_MERGE); + subdir == "aoc" ? FS_LAYER_TYPE_AOC_MERGE : FS_LAYER_TYPE_CONTENT_MERGE); if (res == CONTENT_REDIRECTION_RESULT_SUCCESS) { DEBUG_FUNCTION_LINE("Redirect /vol/%s to %s", subdir.c_str(), fullPath.c_str()); } else {