mirror of https://github.com/PCSX2/pcsx2.git
async-iso: Fix non-debug builds.
git-svn-id: http://pcsx2.googlecode.com/svn/branches/async-iso@5467 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
parent
568e74f0e4
commit
d8a1534bce
|
@ -101,7 +101,7 @@ int BlockdumpFileReader::ReadSync(void* pBuffer, uint lsn, uint count)
|
||||||
m_file->Read( &check_lsn, sizeof(check_lsn) );
|
m_file->Read( &check_lsn, sizeof(check_lsn) );
|
||||||
pxAssert( check_lsn == lsn );
|
pxAssert( check_lsn == lsn );
|
||||||
#else
|
#else
|
||||||
m_file->Seek( BlockDumpHeaderSize + (i * (m_blocksize + 4)) + 4 );
|
m_file->SeekI( BlockDumpHeaderSize + (i * (m_blocksize + 4)) + 4 );
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
m_file->Read( dst, m_blocksize );
|
m_file->Read( dst, m_blocksize );
|
||||||
|
|
Loading…
Reference in New Issue