mirror of
https://git.h3cjp.net/H3cJP/citra.git
synced 2024-11-28 06:52:47 +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
|
@ -35,8 +35,8 @@ public:
|
||||||
std::optional<u8> option) override;
|
std::optional<u8> option) override;
|
||||||
|
|
||||||
ARM_Dynarmic_32& parent;
|
ARM_Dynarmic_32& parent;
|
||||||
u32 uprw;
|
u32 uprw = 0;
|
||||||
u32 uro;
|
u32 uro = 0;
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace Core
|
} // namespace Core
|
||||||
|
|
Loading…
Reference in a new issue