mirror of
https://git.h3cjp.net/H3cJP/yuzu.git
synced 2024-11-15 13:22:48 +00:00
kernel/physical_core: Ensure is_interrupted is always initialized
This commit is contained in:
parent
dddc9bb8f1
commit
dcca650599
|
@ -85,7 +85,7 @@ private:
|
||||||
std::mutex guard;
|
std::mutex guard;
|
||||||
std::condition_variable on_interrupt;
|
std::condition_variable on_interrupt;
|
||||||
std::unique_ptr<Core::ARM_Interface> arm_interface;
|
std::unique_ptr<Core::ARM_Interface> arm_interface;
|
||||||
bool is_interrupted;
|
bool is_interrupted{};
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace Kernel
|
} // namespace Kernel
|
||||||
|
|
Loading…
Reference in a new issue