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:
cottonvibes 2009-02-18 20:21:44 +00:00
parent 2a389da932
commit 443ef97f1f

View File

@ -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() {