diff options
| author | 2015-11-29 13:06:45 -0500 | |
|---|---|---|
| committer | 2015-11-29 13:06:45 -0500 | |
| commit | 1d02eb0587c9434eb32979377f1c92e54fa96f4d (patch) | |
| tree | 8ea1a1967387aada30038df6aa0a89f9b4f9123e /src | |
| parent | Merge pull request #1225 from lioncash/clean (diff) | |
| download | yuzu-1d02eb0587c9434eb32979377f1c92e54fa96f4d.tar.gz yuzu-1d02eb0587c9434eb32979377f1c92e54fa96f4d.tar.xz yuzu-1d02eb0587c9434eb32979377f1c92e54fa96f4d.zip | |
Core/ARM11: Correct the size of the VFP register array in the ThreadContext structure.
The VFP registers are 64 bits each, and there are 32 of them.
Diffstat (limited to 'src')
| -rw-r--r-- | src/core/core.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/core.h b/src/core/core.h index 278f0f1cc..491230a74 100644 --- a/src/core/core.h +++ b/src/core/core.h | |||
| @@ -18,7 +18,7 @@ struct ThreadContext { | |||
| 18 | u32 lr; | 18 | u32 lr; |
| 19 | u32 pc; | 19 | u32 pc; |
| 20 | u32 cpsr; | 20 | u32 cpsr; |
| 21 | u32 fpu_registers[32]; | 21 | u32 fpu_registers[64]; |
| 22 | u32 fpscr; | 22 | u32 fpscr; |
| 23 | u32 fpexc; | 23 | u32 fpexc; |
| 24 | }; | 24 | }; |