Oops, accidentally changed the non-android path in a bad way.

This commit is contained in:
Henrik Rydgard 2014-06-10 01:06:22 +02:00
parent 0b42530fd8
commit 56a513e20a

View File

@ -91,7 +91,7 @@ FileBlockDevice::~FileBlockDevice()
bool FileBlockDevice::ReadBlock(int blockNumber, u8 *outPtr)
{
fseek(f, (u64)blockNumber * (u64)GetBlockSize(), SEEK_SET);
fseeko(f, (u64)blockNumber * (u64)GetBlockSize(), SEEK_SET);
if (fread(outPtr, 1, 2048, f) != 2048)
DEBUG_LOG(FILESYS, "Could not read 2048 bytes from block");