Compare commits

...

1 Commits

Author SHA1 Message Date
Maschell
aed781e88d Fix exiting when running some payloads (like the nand dumper) 2024-05-07 19:11:21 +02:00
2 changed files with 2 additions and 1 deletions

View File

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

View File

@ -123,6 +123,7 @@ extern "C" int _start(int argc, char **argv) {
if (entryPoint != 0) {
res = ((int (*)(int, char **)) entryPoint)(argc, argv);
}
_Exit(0);
return res;
}