Oops, typo.

This commit is contained in:
Kingcom 2013-07-28 11:57:04 -07:00 committed by Unknown W. Brackets
parent 1e32599f2d
commit a56e3a1a99

View File

@ -380,7 +380,7 @@ size_t VirtualDiscFileSystem::SeekFile(u32 handle, s32 position, FileMove type)
{
case FILEMOVE_BEGIN: entry.curOffset = position; break;
case FILEMOVE_CURRENT: entry.curOffset += position; break;
case FILEMOVE_END: entry.curOffset = entry.size - position; break;
case FILEMOVE_END: entry.curOffset = entry.size + position; break;
}
u32 off = entry.startOffset + entry.curOffset;