mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 22:29:39 -06:00
VolumeVerifier: Show underdump warnings for WBFS/CISO too
This commit is contained in:
@ -96,8 +96,8 @@ private:
|
||||
bool ShouldHaveMasterpiecePartitions() const;
|
||||
bool ShouldBeDualLayer() const;
|
||||
void CheckDiscSize();
|
||||
u64 GetBiggestUsedOffset() const;
|
||||
u64 GetBiggestUsedOffset(const FileInfo& file_info) const;
|
||||
u64 GetBiggestReferencedOffset() const;
|
||||
u64 GetBiggestReferencedOffset(const FileInfo& file_info) const;
|
||||
void CheckMisc();
|
||||
void SetUpHashing();
|
||||
void WaitForAsyncOperations() const;
|
||||
@ -134,6 +134,9 @@ private:
|
||||
std::map<Partition, size_t> m_block_errors;
|
||||
std::map<Partition, size_t> m_unused_block_errors;
|
||||
|
||||
u64 m_biggest_referenced_offset = 0;
|
||||
u64 m_biggest_verified_offset = 0;
|
||||
|
||||
bool m_started = false;
|
||||
bool m_done = false;
|
||||
u64 m_progress = 0;
|
||||
|
Reference in New Issue
Block a user