diff options
author | TheKoopaKingdom <thekoopakingdom@gmail.com> | 2017-04-13 01:18:54 -0400 |
---|---|---|
committer | TheKoopaKingdom <thekoopakingdom@gmail.com> | 2017-06-02 18:28:14 -0400 |
commit | a8aef599e02e336f9ecb8d5cfc50aa856ea0a1c7 (patch) | |
tree | 37a7edc6a27eff75c96117203f48c9f1ec640b97 /src/citra_qt/main.h | |
parent | 0409bdfea5ea046e3d040ab494b8a0764fd35424 (diff) |
Created a whitelist of system archives to prevent false positives creating dialogs.
Diffstat (limited to 'src/citra_qt/main.h')
-rw-r--r-- | src/citra_qt/main.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/citra_qt/main.h b/src/citra_qt/main.h index eb2b055f6..952a50974 100644 --- a/src/citra_qt/main.h +++ b/src/citra_qt/main.h @@ -8,6 +8,7 @@ #include <memory> #include <QMainWindow> #include <QTimer> +#include "core/core.h" #include "ui_main.h" class Config; @@ -125,7 +126,7 @@ private slots: void OnDisplayTitleBars(bool); void ToggleWindowMode(); void OnCreateGraphicsSurfaceViewer(); - void OnCoreError(Core::System::ResultStatus, boost::optional<std::string>); + void OnCoreError(Core::System::ResultStatus, std::string); private: void UpdateStatusBar(); |