diff options
author | David Marcec <dmarcecguzman@gmail.com> | 2018-11-16 10:08:02 +0100 |
---|---|---|
committer | David Marcec <dmarcecguzman@gmail.com> | 2018-11-16 10:08:02 +0100 |
commit | 4476fd29d6bd647479ad840c631cad0b41836fdb (patch) | |
tree | 7e89e3983ef28bc1cc57b310d86b27c7152067f1 /src | |
parent | Fixed priority switching edge case for handheld (#1675) (diff) | |
download | yuzu-4476fd29d6bd647479ad840c631cad0b41836fdb.tar yuzu-4476fd29d6bd647479ad840c631cad0b41836fdb.tar.gz yuzu-4476fd29d6bd647479ad840c631cad0b41836fdb.tar.bz2 yuzu-4476fd29d6bd647479ad840c631cad0b41836fdb.tar.lz yuzu-4476fd29d6bd647479ad840c631cad0b41836fdb.tar.xz yuzu-4476fd29d6bd647479ad840c631cad0b41836fdb.tar.zst yuzu-4476fd29d6bd647479ad840c631cad0b41836fdb.zip |
Diffstat (limited to '')
-rw-r--r-- | src/yuzu/configuration/configure_general.cpp | 3 |
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 |