From a494e05fd943f348d847fd358cf6bd6a875d6faa Mon Sep 17 00:00:00 2001 From: refractionpcsx2 Date: Mon, 1 Nov 2021 12:23:31 +0000 Subject: [PATCH] CDVD: Left a debug message enabled. --- pcsx2/CDVD/CDVD.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pcsx2/CDVD/CDVD.cpp b/pcsx2/CDVD/CDVD.cpp index 0bcc1c41b5..757d7aece9 100644 --- a/pcsx2/CDVD/CDVD.cpp +++ b/pcsx2/CDVD/CDVD.cpp @@ -1296,7 +1296,7 @@ static uint cdvdStartSeek(uint newsector, CDVD_MODE_TYPE mode) if (delta && cdvd.nCommand != N_CD_SEEK) { int rotationalLatency = cdvdRotationalLatency((CDVD_MODE_TYPE)cdvdIsDVD()); - DevCon.Warning("%s rotational latency at sector %d is %d cycles", (cdvd.SpindlCtrl & CDVD_SPINDLE_CAV) ? "CAV" : "CLV", cdvd.SeekToSector, rotationalLatency); + //DevCon.Warning("%s rotational latency at sector %d is %d cycles", (cdvd.SpindlCtrl & CDVD_SPINDLE_CAV) ? "CAV" : "CLV", cdvd.SeekToSector, rotationalLatency); seektime += rotationalLatency + cdvd.ReadTime; CDVDSECTORREADY_INT(seektime); seektime += (cdvd.BlockSize / 4);