diff options
| author | 2022-12-05 14:52:13 -0500 | |
|---|---|---|
| committer | 2022-12-05 15:19:37 -0500 | |
| commit | dcca6505994898ae6ca1a5dc8ebd97c4d279968f (patch) | |
| tree | 7a52c09680afeec95fac09ae5afa25578461749e | |
| parent | kernel/thread: Ensure stack_top and argument are always initialized (diff) | |
| download | yuzu-dcca6505994898ae6ca1a5dc8ebd97c4d279968f.tar.gz yuzu-dcca6505994898ae6ca1a5dc8ebd97c4d279968f.tar.xz yuzu-dcca6505994898ae6ca1a5dc8ebd97c4d279968f.zip | |
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: | |||
| 85 | std::mutex guard; | 85 | std::mutex guard; |
| 86 | std::condition_variable on_interrupt; | 86 | std::condition_variable on_interrupt; |
| 87 | std::unique_ptr<Core::ARM_Interface> arm_interface; | 87 | std::unique_ptr<Core::ARM_Interface> arm_interface; |
| 88 | bool is_interrupted; | 88 | bool is_interrupted{}; |
| 89 | }; | 89 | }; |
| 90 | 90 | ||
| 91 | } // namespace Kernel | 91 | } // namespace Kernel |