summaryrefslogtreecommitdiffstats
path: root/src/citra_qt/main.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2015-05-01 01:58:26 +0200
committerbunnei <bunneidev@gmail.com>2015-05-02 00:35:55 +0200
commit85cc81d8cc51738e0a025b8fe447173323f1db13 (patch)
tree2fba4b63c7204dca9e166ceff47176c4259e066f /src/citra_qt/main.cpp
parentQt: Fixed a bug in shutdown procedure, various cleanups. (diff)
downloadyuzu-85cc81d8cc51738e0a025b8fe447173323f1db13.tar
yuzu-85cc81d8cc51738e0a025b8fe447173323f1db13.tar.gz
yuzu-85cc81d8cc51738e0a025b8fe447173323f1db13.tar.bz2
yuzu-85cc81d8cc51738e0a025b8fe447173323f1db13.tar.lz
yuzu-85cc81d8cc51738e0a025b8fe447173323f1db13.tar.xz
yuzu-85cc81d8cc51738e0a025b8fe447173323f1db13.tar.zst
yuzu-85cc81d8cc51738e0a025b8fe447173323f1db13.zip
Diffstat (limited to '')
-rw-r--r--src/citra_qt/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/citra_qt/main.cpp b/src/citra_qt/main.cpp
index c3e637792..a3e98abfe 100644
--- a/src/citra_qt/main.cpp
+++ b/src/citra_qt/main.cpp
@@ -249,7 +249,7 @@ void GMainWindow::ShutdownGame() {
System::Shutdown();
// Update the GUI
- ui.action_Start->setEnabled(true);
+ ui.action_Start->setEnabled(false);
ui.action_Pause->setEnabled(false);
ui.action_Stop->setEnabled(false);
render_window->hide();