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:
Lioncash 2020-09-17 13:03:47 -04:00
parent fcd0925ecf
commit 1ee9ceb5af

View File

@ -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