CDVD: Comment out unreachable code.

-Left in so future checks can see what's going on.
-Coverity CID 146818: In ISOreadSector(unsigned char *, unsigned int, int): Code can never be reached because of a logical contradiction (CWE-561)
This commit is contained in:
refractionpcsx2 2015-10-04 14:39:57 +01:00
parent 4a056fe55a
commit 3618983aaa
1 changed files with 3 additions and 3 deletions

View File

@ -401,10 +401,10 @@ s32 CALLBACK ISOreadSector(u8* tempbuffer, u32 lsn, int mode)
switch (mode)
{
case CDVD_MODE_2352:
//case CDVD_MODE_2352:
// Unreachable due to shortcut above.
pxAssume(false);
break;
// pxAssume(false);
// break;
case CDVD_MODE_2340:
pbuffer += 12;