Merge pull request #4670 from lioncash/initializer

arm_dynarmic_cp15: Initialize member variables
This commit is contained in:
Rodrigo Locatti 2020-09-17 21:20:53 +00:00 committed by GitHub
commit 53fc5d0190
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

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