Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #11556 from AdmiralCurtiss/plain-file-s64
DiscIO/FileBlob: Make m_size unsigned.
  • Loading branch information
AdmiralCurtiss committed Feb 12, 2023
2 parents 9737345 + 300d63b commit 5ef014e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Core/DiscIO/FileBlob.h
Expand Up @@ -35,7 +35,7 @@ class PlainFileReader : public BlobReader
PlainFileReader(File::IOFile file);

File::IOFile m_file;
s64 m_size;
u64 m_size;
};

} // namespace DiscIO

0 comments on commit 5ef014e

Please sign in to comment.