mirror of
https://git.suyu.dev/suyu/suyu
synced 2024-11-01 04:47:53 +00:00
arm_dynarmic_cp15: Initialize member variables
Ensures that the member variables are always initialized to a deterministic value on creation.
This commit is contained in:
parent
fcd0925ecf
commit
1ee9ceb5af
1 changed files with 2 additions and 2 deletions
|
@ -35,8 +35,8 @@ public:
|
|||
std::optional<u8> option) override;
|
||||
|
||||
ARM_Dynarmic_32& parent;
|
||||
u32 uprw;
|
||||
u32 uro;
|
||||
u32 uprw = 0;
|
||||
u32 uro = 0;
|
||||
};
|
||||
|
||||
} // namespace Core
|
||||
|
|
Loading…
Reference in a new issue