2
1
Fork 0
mirror of https://github.com/yuzu-emu/yuzu.git synced 2024-07-04 23:31:19 +01:00

arm_dynarmic: Make SetTlsAddress() prototype and definition consistent

Makes the definition use the same type aliases as in its prototype.
This commit is contained in:
Lioncash 2018-07-31 07:58:24 -04:00
parent 9d6aa7bff7
commit f08c0520a4

View file

@ -203,7 +203,7 @@ u64 ARM_Dynarmic::GetTlsAddress() const {
return cb->tpidrro_el0;
}
void ARM_Dynarmic::SetTlsAddress(u64 address) {
void ARM_Dynarmic::SetTlsAddress(VAddr address) {
cb->tpidrro_el0 = address;
}