Browse Source
Merge pull request #4108 from ReinUsesLisp/a32-implicit-cast
arm_dynarmic_32: Fix implicit conversion error in SetTPIDR_EL0
pull/15/merge
bunnei
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
src/core/arm/dynarmic/arm_dynarmic_32.cpp
|
|
|
@ -165,7 +165,7 @@ u64 ARM_Dynarmic_32::GetTPIDR_EL0() const { |
|
|
|
} |
|
|
|
|
|
|
|
void ARM_Dynarmic_32::SetTPIDR_EL0(u64 value) { |
|
|
|
cp15->uprw = value; |
|
|
|
cp15->uprw = static_cast<u32>(value); |
|
|
|
} |
|
|
|
|
|
|
|
void ARM_Dynarmic_32::SaveContext(ThreadContext32& ctx) { |
|
|
|
|