mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Oops, typo.
This commit is contained in:
parent
1e32599f2d
commit
a56e3a1a99
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue