mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2026-01-06 14:38:17 +01:00
FPSCR: Make value constructor explicit (#13)
Maintains consistency between the PSR helper.
This commit is contained in:
parent
3e03524658
commit
8c4df46580
5 changed files with 5 additions and 5 deletions
|
|
@ -47,7 +47,7 @@ struct Jit::Impl {
|
|||
size_t Execute(size_t cycle_count) {
|
||||
u32 pc = jit_state.Reg[15];
|
||||
|
||||
Arm::LocationDescriptor descriptor{pc, Arm::PSR{jit_state.Cpsr}, jit_state.guest_FPSCR_mode};
|
||||
Arm::LocationDescriptor descriptor{pc, Arm::PSR{jit_state.Cpsr}, Arm::FPSCR{jit_state.guest_FPSCR_mode}};
|
||||
|
||||
CodePtr code_ptr = GetBasicBlock(descriptor).code_ptr;
|
||||
return block_of_code.RunCode(&jit_state, code_ptr, cycle_count);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue