mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-10 17:17:57 -05:00
qt: use _exit instead of exit on SIGINT
This commit is contained in:
@ -1498,7 +1498,7 @@ void GMainWindow::SetupSigInterrupts() {
|
||||
|
||||
void GMainWindow::HandleSigInterrupt(int sig) {
|
||||
if (sig == SIGINT) {
|
||||
exit(1);
|
||||
_exit(1);
|
||||
}
|
||||
|
||||
// Calling into Qt directly from a signal handler is not safe,
|
||||
|
Reference in New Issue
Block a user