Go to file
Maschell fc3eea16fb Change the layout of the release .zip 2022-01-30 16:56:52 +01:00
.github/workflows Change the layout of the release .zip 2022-01-30 16:56:52 +01:00
source Move logging logic into a seperate file 2022-01-24 18:52:59 +01:00
.gitignore initial commit 2020-06-06 22:15:47 +02:00
Dockerfile WUMS 0.3.1 support 2022-01-24 18:48:11 +01:00
Makefile Fix building with `make DEBUG=1` 2022-01-30 13:36:47 +01:00
README.md Change the layout of the release .zip 2022-01-30 16:56:52 +01:00

README.md

Usage

([ENVIRONMENT] is a placeholder for the actual environment name.)

  1. Copy the file FunctionPatcherModule.wms into sd:/wiiu/environments/[ENVIRONMENT]/modules.
  2. Requires the WUMSLoader in sd:/wiiu/environments/[ENVIRONMENT]/modules/setup.

Building using the Dockerfile

It's possible to use a docker image for building. This way you don't need anything installed on your host system.

# Build docker image (only needed once)
docker build . -t functionpatchermodule-builder

# make 
docker run -it --rm -v ${PWD}:/project functionpatchermodule-builder make

# make clean
docker run -it --rm -v ${PWD}:/project functionpatchermodule-builder make clean