mirror of
https://github.com/yuzu-emu/yuzu.git
synced 2024-11-11 12:44:58 +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;
|
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