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