this should fix the roundmode patches crash introduced in r75... hopefully :p

git-svn-id: http://pcsx2-playground.googlecode.com/svn/trunk@76 a6443dda-0b58-4228-96e9-037be469359c
This commit is contained in:
cottonvibes 2008-08-31 22:32:08 +00:00 committed by Gregory Hainaut
parent 31fc6fd4bf
commit 17ffea9814
2 changed files with 2 additions and 2 deletions

View File

@ -983,7 +983,7 @@ void cdvdVsync() {
cdvd.RTC.day = 1;
cdvd.RTC.month++;
if (cdvd.RTC.month < 12) return;
if (cdvd.RTC.month <= 12) return;
cdvd.RTC.month = 1;
cdvd.RTC.year++;

View File

@ -633,6 +633,6 @@ void SetRoundMode(u32 ee, u32 vu)
{
// don't set a state for interpreter only
#ifndef PCSX2_NORECBUILD
SetCPUState( (g_sseMXCSR & ~6000) | ee, (g_sseVUMXCSR & ~6000) | vu);
SetCPUState( (g_sseMXCSR & 9fff) | ee, (g_sseVUMXCSR & 9fff) | vu);
#endif
}