Go to file
2021-10-11 22:02:35 +02:00
.github/workflows First commit 2021-10-09 00:58:55 +02:00
source Use shared_ptr/unique_ptr in combination with std::optional instead of raw pointers 2021-10-11 22:02:35 +02:00
.gitignore First commit 2021-10-09 00:58:55 +02:00
Dockerfile First commit 2021-10-09 00:58:55 +02:00
Makefile First commit 2021-10-09 00:58:55 +02:00
README.md First commit 2021-10-09 00:58:55 +02:00

Wudump

RPX version of wudump.

Supports dumping as WUX and WUD, but only to NTFS formatted USB drives and without dumping the game.key.

Dependencies

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 wudump-builder

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

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