diff options
Diffstat (limited to 'src/yuzu/main.h')
-rw-r--r-- | src/yuzu/main.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/yuzu/main.h b/src/yuzu/main.h index e942d1248..7f46bea2b 100644 --- a/src/yuzu/main.h +++ b/src/yuzu/main.h @@ -119,6 +119,7 @@ public slots: void SoftwareKeyboardGetText(const Core::Frontend::SoftwareKeyboardParameters& parameters); void SoftwareKeyboardInvokeCheckDialog(std::u16string error_message); void WebBrowserOpenPage(std::string_view filename, std::string_view arguments); + void OnAppFocusStateChanged(Qt::ApplicationState state); private: void InitializeWidgets(); @@ -141,6 +142,7 @@ private: void ShowTelemetryCallout(); void SetDiscordEnabled(bool state); + void LoadAmiibo(const QString& filename); void SelectAndSetCurrentUser(); @@ -244,6 +246,8 @@ private: // The path to the game currently running QString game_path; + bool auto_paused = false; + // FS std::shared_ptr<FileSys::VfsFilesystem> vfs; std::unique_ptr<FileSys::ManualContentProvider> provider; |