Browse Source

kernel/physical_core: Ensure is_interrupted is always initialized

nce_cpp
Lioncash 3 years ago
parent
commit
4c5de31093
  1. 2
      src/core/hle/kernel/physical_core.h

2
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
Loading…
Cancel
Save