mirror of
https://github.com/hrydgard/ppsspp.git
synced 2026-09-03 03:05:18 +02:00
Warning fixes
This commit is contained in:
@@ -382,7 +382,7 @@ size_t DirectoryFileHandle::Seek(s32 position, FileMove type)
|
||||
// The actual, underlying file hasn't been truncated (yet.)
|
||||
if (type == FILEMOVE_END) {
|
||||
type = FILEMOVE_BEGIN;
|
||||
position = needsTrunc_ + position;
|
||||
position = (s32)(needsTrunc_ + position);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user