mirror of https://github.com/PCSX2/pcsx2.git
Tiny "Whoops".
git-svn-id: http://pcsx2.googlecode.com/svn/trunk@1512 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
parent
3f28c12fe7
commit
89c239d443
|
@ -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 )
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue