diff options
author | Lioncash <mathew1800@gmail.com> | 2022-12-05 14:52:13 -0500 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2022-12-05 15:19:37 -0500 |
commit | dcca6505994898ae6ca1a5dc8ebd97c4d279968f (patch) | |
tree | 7a52c09680afeec95fac09ae5afa25578461749e | |
parent | dddc9bb8f1aeb2bef78c7264a385d87044ddfa2c (diff) |
kernel/physical_core: Ensure is_interrupted is always initialized
-rw-r--r-- | src/core/hle/kernel/physical_core.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/kernel/physical_core.h b/src/core/hle/kernel/physical_core.h index 2fc8d4be2..fb2ba4c6b 100644 --- a/src/core/hle/kernel/physical_core.h +++ b/src/core/hle/kernel/physical_core.h @@ -85,7 +85,7 @@ private: std::mutex guard; std::condition_variable on_interrupt; std::unique_ptr<Core::ARM_Interface> arm_interface; - bool is_interrupted; + bool is_interrupted{}; }; } // namespace Kernel |