mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2026-09-13 22:07:34 -05:00
fix various instances of -1 being assigned to unsigned types
This commit is contained in:
@@ -986,7 +986,7 @@ u64 IOFile::Tell() const
|
||||
if (IsOpen())
|
||||
return ftello(m_file);
|
||||
else
|
||||
return -1;
|
||||
return UINT64_MAX;
|
||||
}
|
||||
|
||||
bool IOFile::Flush()
|
||||
|
||||
Reference in New Issue
Block a user