mirror of https://github.com/PCSX2/pcsx2.git
fpu interpreter bugfix thanks to nneeve.
git-svn-id: http://pcsx2.googlecode.com/svn/trunk@531 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
parent
2a389da932
commit
443ef97f1f
|
@ -225,7 +225,7 @@ void C_LT() {
|
|||
|
||||
void CFC1() {
|
||||
if ( !_Rt_ || ( (_Fs_ != 0) && (_Fs_ != 31) ) ) return;
|
||||
cpuRegs.GPR.r[_Rt_].SD[0] = (s64)fpuRegs.fprc[_Fs_];
|
||||
cpuRegs.GPR.r[_Rt_].SD[0] = (s64)(s32)fpuRegs.fprc[_Fs_];
|
||||
}
|
||||
|
||||
void CTC1() {
|
||||
|
@ -276,7 +276,7 @@ void MAX_S() {
|
|||
|
||||
void MFC1() {
|
||||
if ( !_Rt_ ) return;
|
||||
cpuRegs.GPR.r[_Rt_].SD[0] = (s64)_FsValUl_;
|
||||
cpuRegs.GPR.r[_Rt_].SD[0] = (s64)(s32)_FsValUl_;
|
||||
}
|
||||
|
||||
void MIN_S() {
|
||||
|
|
Loading…
Reference in New Issue