diff --git a/src/yuzu/main.cpp b/src/yuzu/main.cpp index 567a20c4de..4e0ff685bf 100644 --- a/src/yuzu/main.cpp +++ b/src/yuzu/main.cpp @@ -1908,7 +1908,7 @@ void GMainWindow::HandleSigInterrupt(int sig) { (void)ret; } -void GMainWindow::OnSigInterruptNotifierActivated(QSocketDescriptor _, QSocketNotifier::Type _) { +void GMainWindow::OnSigInterruptNotifierActivated() { sig_interrupt_notifier->setEnabled(false); char a; diff --git a/src/yuzu/main.h b/src/yuzu/main.h index 3b3403f7ac..c7dd2a45fa 100644 --- a/src/yuzu/main.h +++ b/src/yuzu/main.h @@ -326,7 +326,7 @@ private: #ifdef __unix__ void SetupSigInterrupts(); static void HandleSigInterrupt(int); - void OnSigInterruptNotifierActivated(QSocketDescriptor socket, QSocketNotifier::Type type); + void OnSigInterruptNotifierActivated(); void SetGamemodeEnabled(bool state); #endif