Core: Make mov.s the same as mov.d

This commit is contained in:
zilmar 2024-01-25 15:32:56 +10:30
parent 7ed94b653e
commit f0f44c67f4
1 changed files with 1 additions and 1 deletions

View File

@ -2428,7 +2428,7 @@ void R4300iOp::COP1_S_MOV()
{
return;
}
*m_FPR_UDW[m_Opcode.fd] = (*(uint64_t *)m_FPR_D[m_Opcode.fs] & 0xFFFFFFFF00000000ll) | *(uint32_t *)m_FPR_S_L[m_Opcode.fs];
*m_FPR_UDW[m_Opcode.fd] = *(int64_t *)m_FPR_D[m_Opcode.fs];
}
void R4300iOp::COP1_S_NEG()