Browse Source
[desktop] thank you Qt Documentation, very cool
Signed-off-by: crueter <crueter@eden-emu.dev>
Signed-off-by: lizzie <lizzie@eden-emu.dev>
pull/194/head
lizzie
7 months ago
committed by
crueter
No known key found for this signature in database
GPG Key ID: 425ACD2D4830EBC6
2 changed files with
2 additions and
2 deletions
-
src/yuzu/main.cpp
-
src/yuzu/main.h
|
|
@ -1908,7 +1908,7 @@ void GMainWindow::HandleSigInterrupt(int sig) { |
|
|
(void)ret; |
|
|
(void)ret; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
void GMainWindow::OnSigInterruptNotifierActivated(QSocketDescriptor _, QSocketNotifier::Type _) { |
|
|
|
|
|
|
|
|
void GMainWindow::OnSigInterruptNotifierActivated() { |
|
|
sig_interrupt_notifier->setEnabled(false); |
|
|
sig_interrupt_notifier->setEnabled(false); |
|
|
|
|
|
|
|
|
char a; |
|
|
char a; |
|
|
|
|
|
@ -326,7 +326,7 @@ private: |
|
|
#ifdef __unix__ |
|
|
#ifdef __unix__ |
|
|
void SetupSigInterrupts(); |
|
|
void SetupSigInterrupts(); |
|
|
static void HandleSigInterrupt(int); |
|
|
static void HandleSigInterrupt(int); |
|
|
void OnSigInterruptNotifierActivated(QSocketDescriptor socket, QSocketNotifier::Type type); |
|
|
|
|
|
|
|
|
void OnSigInterruptNotifierActivated(); |
|
|
void SetGamemodeEnabled(bool state); |
|
|
void SetGamemodeEnabled(bool state); |
|
|
#endif |
|
|
#endif |
|
|
|
|
|
|
|
|
|