Skip to content

Commit

Permalink
Fix exiting when running some payloads (like the nand dumper)
Browse files Browse the repository at this point in the history
  • Loading branch information
Maschell committed May 7, 2024
1 parent 88d25a7 commit aed781e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
FROM ghcr.io/wiiu-env/devkitppc:20240423
FROM ghcr.io/wiiu-env/devkitppc:20240505

WORKDIR project
1 change: 1 addition & 0 deletions src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand Down

0 comments on commit aed781e

Please sign in to comment.