fix various instances of -1 being assigned to unsigned types

This commit is contained in:
Shawn Hoffman 2017-06-07 04:16:02 -07:00
commit e1a3e41bf3
15 changed files with 25 additions and 27 deletions

View file

@ -986,7 +986,7 @@ u64 IOFile::Tell() const
if (IsOpen())
return ftello(m_file);
else
return -1;
return UINT64_MAX;
}
bool IOFile::Flush()