From aa987595b4e10a95eaf65351d3ffdf8695b286f4 Mon Sep 17 00:00:00 2001 From: ramapcsx2 Date: Sun, 26 Feb 2012 11:34:29 +0000 Subject: [PATCH] Attempt to fix ICO NTSC CDVD flag bug that appeared in r4961. Works with my copies of Time Crisis 2 and 3 as well. git-svn-id: http://pcsx2.googlecode.com/svn/trunk@5105 96395faa-99c1-11dd-bbfe-3dabce05a288 --- pcsx2/CDVD/CDVD.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pcsx2/CDVD/CDVD.cpp b/pcsx2/CDVD/CDVD.cpp index 90931da712..63550938b7 100644 --- a/pcsx2/CDVD/CDVD.cpp +++ b/pcsx2/CDVD/CDVD.cpp @@ -897,8 +897,9 @@ static uint cdvdStartSeek( uint newsector, CDVD_MODE_TYPE mode ) cdvd.Ready = CDVD_NOTREADY; cdvd.Reading = 0; cdvd.Readed = 0; - //cdvd.Status = CDVD_STATUS_STOP; - cdvd.Status = CDVD_STATUS_SEEK | CDVD_STATUS_SPIN; // Time Crisis 2 + //cdvd.Status = CDVD_STATUS_STOP; // before r4961 + //cdvd.Status = CDVD_STATUS_SEEK | CDVD_STATUS_SPIN; // Time Crisis 2 // but breaks ICO NTSC + cdvd.Status = CDVD_STATUS_PAUSE; // best so far in my tests (rama) if( !cdvd.Spinning ) {