mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-22 10:19:01 +00:00
VolumeVerifier: Show underdump warnings for WBFS/CISO too
This commit is contained in:
parent
48ca2c6f2e
commit
8c8bab3657
2 changed files with 39 additions and 26 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue