summaryrefslogtreecommitdiff
path: root/src/yuzu/configuration/configure_general.cpp
diff options
context:
space:
mode:
authorDavid Marcec <dmarcecguzman@gmail.com>2018-11-16 20:08:02 +1100
committerDavid Marcec <dmarcecguzman@gmail.com>2018-11-16 20:08:02 +1100
commit4476fd29d6bd647479ad840c631cad0b41836fdb (patch)
tree7e89e3983ef28bc1cc57b310d86b27c7152067f1 /src/yuzu/configuration/configure_general.cpp
parent87eca5b2097a83d7e47c5dd71ff33fccb8330481 (diff)
Fixed switching operation modes when not running a game
The service manager seems to be a nullptr before a game boots
Diffstat (limited to 'src/yuzu/configuration/configure_general.cpp')
-rw-r--r--src/yuzu/configuration/configure_general.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/yuzu/configuration/configure_general.cpp b/src/yuzu/configuration/configure_general.cpp
index b322258a0..314f51203 100644
--- a/src/yuzu/configuration/configure_general.cpp
+++ b/src/yuzu/configuration/configure_general.cpp
@@ -47,6 +47,9 @@ void ConfigureGeneral::OnDockedModeChanged(bool last_state, bool new_state) {
}
Core::System& system{Core::System::GetInstance()};
+ if (!system.IsPoweredOn()) {
+ return;
+ }
Service::SM::ServiceManager& sm = system.ServiceManager();
// Message queue is shared between these services, we just need to signal an operation