From 504de36d8072900f742dc3c462846620debd707e Mon Sep 17 00:00:00 2001 From: ramapcsx2 Date: Thu, 5 Feb 2009 21:45:08 +0000 Subject: [PATCH] Tweaked the seek delay timing for CDVD so it is quicker again. Games had stalls before that did not happen on a real ps2. git-svn-id: http://pcsx2-playground.googlecode.com/svn/trunk@705 a6443dda-0b58-4228-96e9-037be469359c --- pcsx2/CDVD.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pcsx2/CDVD.cpp b/pcsx2/CDVD.cpp index 39078a2829..b6d92d3704 100644 --- a/pcsx2/CDVD.cpp +++ b/pcsx2/CDVD.cpp @@ -106,9 +106,9 @@ enum CDVD_MODE_TYPE }; // if a seek is within this many blocks, read instead of seek. -// I picked 6 as an arbitrary value. Not sure what the real PS2 uses. +// I picked 9 as an arbitrary value. Not sure what the real PS2 uses. static const int Cdvd_Contigious_Seek = 9; -static const uint Cdvd_Avg_SeekCycles = (PSXCLK*95) / 1000; // average number of cycles per seek (95ms) +static const uint Cdvd_Avg_SeekCycles = (PSXCLK*40) / 1000; // average number of cycles per seek (40ms) @@ -2168,4 +2168,4 @@ void cdvdWrite3A(u8 rt) { // DEC-SET CDR_LOG("cdvdWrite3A(DecSet) %x\n", rt); cdvd.decSet = rt; SysPrintf("DecSet Write: %02X\n", cdvd.decSet); -} +} \ No newline at end of file