Tiny "Whoops".

git-svn-id: http://pcsx2.googlecode.com/svn/trunk@1512 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
gigaherz 2009-07-15 00:32:50 +00:00
parent 3f28c12fe7
commit 89c239d443
2 changed files with 3 additions and 2 deletions

View File

@ -463,8 +463,7 @@ static s32 cdvdReadDvdDualInfo(s32* dualType, u32* layer1Start)
*dualType = 0;
*layer1Start = 0;
CDVD.getDualInfo(dualType,layer1Start);
return 1;
return CDVD.getDualInfo(dualType,layer1Start);
}
static uint cdvdBlockReadTime( CDVD_MODE_TYPE mode )

View File

@ -556,6 +556,8 @@ s32 CALLBACK CDVD_getDualInfo(s32* dualType, u32* layer1Start)
*dualType = 0;
*layer1Start = (toc[21]<<16) + (toc[22]<<8) + (toc[23]) - 0x30000 + 1;
}
return 1;
}
int cdvdInitCount;