mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2025-12-26 01:04:58 +01:00
tests: Fix truncation in GetFpcr()
This commit is contained in:
parent
589ad7232f
commit
f1057aa362
1 changed files with 1 additions and 1 deletions
|
|
@ -114,7 +114,7 @@ void Unicorn::SetVectors(const std::array<Vector, 32>& value) {
|
|||
}
|
||||
|
||||
u32 Unicorn::GetFpcr() const {
|
||||
u64 fpcr;
|
||||
u32 fpcr;
|
||||
CHECKED(uc_reg_read(uc, UC_ARM64_REG_FPCR, &fpcr));
|
||||
return fpcr;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue