diff options
author | Hexagon12 <Hexagon12@users.noreply.github.com> | 2018-11-16 16:25:40 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-16 16:25:40 +0200 |
commit | d104478f1bdae4d66043306042c7bf5620ff47ef (patch) | |
tree | 7e89e3983ef28bc1cc57b310d86b27c7152067f1 /src | |
parent | 87eca5b2097a83d7e47c5dd71ff33fccb8330481 (diff) | |
parent | 4476fd29d6bd647479ad840c631cad0b41836fdb (diff) |
Merge pull request #1709 from ogniK5377/docked-mode-crash
Fixed switching operation modes when not running a game
Diffstat (limited to 'src')
-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 |