DiscIO: Make functions constant

This commit is contained in:
Dr. Dystopia
2025-04-19 09:58:04 +02:00
parent c211efd84a
commit 9dfcbcecff
8 changed files with 9 additions and 8 deletions

View File

@ -44,7 +44,7 @@ private:
bool ReadHeader();
File::IOFile& SeekToCluster(u64 offset, u64* available);
bool IsGood() { return m_good; }
bool IsGood() const { return m_good; }
struct FileEntry
{
FileEntry(File::IOFile file_, u64 base_address_, u64 size_)