diff options
| -rw-r--r-- | src/yuzu/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/yuzu/main.cpp b/src/yuzu/main.cpp index c5285ffc9..c6f285dc2 100644 --- a/src/yuzu/main.cpp +++ b/src/yuzu/main.cpp | |||
| @@ -1498,7 +1498,7 @@ void GMainWindow::SetupSigInterrupts() { | |||
| 1498 | 1498 | ||
| 1499 | void GMainWindow::HandleSigInterrupt(int sig) { | 1499 | void GMainWindow::HandleSigInterrupt(int sig) { |
| 1500 | if (sig == SIGINT) { | 1500 | if (sig == SIGINT) { |
| 1501 | exit(1); | 1501 | _exit(1); |
| 1502 | } | 1502 | } |
| 1503 | 1503 | ||
| 1504 | // Calling into Qt directly from a signal handler is not safe, | 1504 | // Calling into Qt directly from a signal handler is not safe, |