Skip to content

Commit

Permalink
Merge pull request #1276 from ps2homebrew/fixExit
Browse files Browse the repository at this point in the history
Using `exit` instead of `Exit`
  • Loading branch information
AKuHAK authored Jul 17, 2024
2 parents f3c8642 + 2123531 commit d0d9f26
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/system.c
Original file line number Diff line number Diff line change
Expand Up @@ -379,7 +379,7 @@ void sysExecExit(void)
{
// Deinitialize without shutting down active devices.
deinit(NO_EXCEPTION, IO_MODE_SELECTED_ALL);
Exit(0);
exit(0);
}

// Module bits
Expand Down

0 comments on commit d0d9f26

Please sign in to comment.