mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-23 21:39:52 +00:00
Oops, accidentally changed the non-android path in a bad way.
This commit is contained in:
parent
0b42530fd8
commit
56a513e20a
@ -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");
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user