diff options
author | bunnei <bunneidev@gmail.com> | 2018-05-03 00:16:12 -0400 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2018-05-10 19:34:47 -0400 |
commit | cba69fdcd439c5f225bbddf1dad70e6326edd0dc (patch) | |
tree | b608addf14d16c634cbe99a04e7931adfb2dbf31 /src/core/core.h | |
parent | a434fdcb102e96ddf564dc0973d7073d49bf19fc (diff) |
core: Support session close with multicore.
Diffstat (limited to 'src/core/core.h')
-rw-r--r-- | src/core/core.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/core.h b/src/core/core.h index 3e0a7e6a7..561e7b48f 100644 --- a/src/core/core.h +++ b/src/core/core.h @@ -92,7 +92,7 @@ public: * @returns True if the emulated system is powered on, otherwise false. */ bool IsPoweredOn() const { - return cpu_cores[0] != nullptr; + return cpu_barrier && cpu_barrier->IsAlive(); } /** |