mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 05:09:34 -06: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