git-svn-id: http://pcsx2.googlecode.com/svn/trunk@1519 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
gigaherz 2009-07-15 16:55:59 +00:00
parent 602599c5c2
commit 82d0657ecc
1 changed files with 6 additions and 0 deletions

View File

@ -324,6 +324,12 @@ s32 DoCDVDopen(const char* pTitleFilename)
return ret;
}
void DoCDVDclose()
{
if(blockDumpFile) isoClose(blockDumpFile);
CDVD.close();
}
s32 DoCDVDreadSector(u8* buffer, u32 lsn, int mode)
{
int ret = CDVD.readSector(buffer,lsn,mode);