diff options
| author | 2018-07-31 07:58:24 -0400 | |
|---|---|---|
| committer | 2018-07-31 07:58:26 -0400 | |
| commit | f08c0520a4dd00acae8f8d5f275a2bdef275b3a1 (patch) | |
| tree | ffdd1a250f599af033f5a611f7e34d574dd608e1 | |
| parent | arm_dynarmic: Remove unnecessary qualifying of ThreadContext (diff) | |
| download | yuzu-f08c0520a4dd00acae8f8d5f275a2bdef275b3a1.tar.gz yuzu-f08c0520a4dd00acae8f8d5f275a2bdef275b3a1.tar.xz yuzu-f08c0520a4dd00acae8f8d5f275a2bdef275b3a1.zip | |
arm_dynarmic: Make SetTlsAddress() prototype and definition consistent
Makes the definition use the same type aliases as in its prototype.
| -rw-r--r-- | src/core/arm/dynarmic/arm_dynarmic.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/arm/dynarmic/arm_dynarmic.cpp b/src/core/arm/dynarmic/arm_dynarmic.cpp index acb3437f2..1d8c15d97 100644 --- a/src/core/arm/dynarmic/arm_dynarmic.cpp +++ b/src/core/arm/dynarmic/arm_dynarmic.cpp | |||
| @@ -203,7 +203,7 @@ u64 ARM_Dynarmic::GetTlsAddress() const { | |||
| 203 | return cb->tpidrro_el0; | 203 | return cb->tpidrro_el0; |
| 204 | } | 204 | } |
| 205 | 205 | ||
| 206 | void ARM_Dynarmic::SetTlsAddress(u64 address) { | 206 | void ARM_Dynarmic::SetTlsAddress(VAddr address) { |
| 207 | cb->tpidrro_el0 = address; | 207 | cb->tpidrro_el0 = address; |
| 208 | } | 208 | } |
| 209 | 209 | ||