From 300d63b4925bfdcc89c1c06697625bdc2272c21a Mon Sep 17 00:00:00 2001 From: "Admiral H. Curtiss" Date: Sun, 12 Feb 2023 20:51:08 +0100 Subject: [PATCH] DiscIO/FileBlob: Make m_size unsigned. --- Source/Core/DiscIO/FileBlob.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/DiscIO/FileBlob.h b/Source/Core/DiscIO/FileBlob.h index d478e1a223..1f8bb8bcf6 100644 --- a/Source/Core/DiscIO/FileBlob.h +++ b/Source/Core/DiscIO/FileBlob.h @@ -35,7 +35,7 @@ private: PlainFileReader(File::IOFile file); File::IOFile m_file; - s64 m_size; + u64 m_size; }; } // namespace DiscIO