diff options
author | Mai M <mathew1800@gmail.com> | 2022-06-01 00:19:49 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-01 00:19:49 -0400 |
commit | de2f2e5140eb85311e0fd844c580d6726adf7e03 (patch) | |
tree | 10f0e96a0689b2edb823f5833ff388ac9c645229 /src/yuzu/main.cpp | |
parent | 72b34650f9d11ff4bc72abc88799933da2445129 (diff) | |
parent | fb4b3c127f7c390358d7f4cadd2f58de116fec48 (diff) |
Merge pull request #8394 from liamwhite/debugger
core/debugger: Implement new GDB stub debugger
Diffstat (limited to 'src/yuzu/main.cpp')
-rw-r--r-- | src/yuzu/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/yuzu/main.cpp b/src/yuzu/main.cpp index f4a9a7171..e14e8333c 100644 --- a/src/yuzu/main.cpp +++ b/src/yuzu/main.cpp @@ -3152,7 +3152,7 @@ void GMainWindow::OnTasStateChanged() { } void GMainWindow::UpdateStatusBar() { - if (emu_thread == nullptr) { + if (emu_thread == nullptr || !system->IsPoweredOn()) { status_bar_update_timer.stop(); return; } |