From 1d93365724e8662f5dc6eee7cc003eb20e2b3968 Mon Sep 17 00:00:00 2001 From: sudonim1 Date: Fri, 26 Mar 2010 23:37:54 +0000 Subject: [PATCH] CDVD: At least pay attention to the plugin when it says there's no disc present. git-svn-id: http://pcsx2.googlecode.com/svn/trunk@2780 96395faa-99c1-11dd-bbfe-3dabce05a288 --- pcsx2/CDVD/CDVDaccess.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pcsx2/CDVD/CDVDaccess.cpp b/pcsx2/CDVD/CDVDaccess.cpp index 385b20b0b7..f2ef27c115 100644 --- a/pcsx2/CDVD/CDVDaccess.cpp +++ b/pcsx2/CDVD/CDVDaccess.cpp @@ -241,10 +241,10 @@ static void DetectDiskType() // Paranoid mode: do not trust the plugin's detection system to work correctly. // (.. and there's no reason plugins should be doing their own detection anyway). -#if 0 switch(baseMediaType) { +#if 0 case CDVD_TYPE_CDDA: case CDVD_TYPE_PSCD: case CDVD_TYPE_PS2CD: @@ -263,12 +263,12 @@ static void DetectDiskType() case CDVD_TYPE_DETCTCD: mType = baseMediaType; break; +#endif case CDVD_TYPE_NODISC: diskTypeCached = CDVD_TYPE_NODISC; return; } -#endif diskTypeCached = FindDiskType(mType); }