mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-23 22:35:45 +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
bf6614c189
commit
4d0fa3544f
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…
Add table
Add a link
Reference in a new issue