mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-09 09:39:13 +00:00
DiscIO: Add way of checking whether blob data size is accurate
This commit is contained in:
parent
0bce1c509d
commit
3014dadfa8
16 changed files with 34 additions and 6 deletions
|
@ -49,8 +49,9 @@ public:
|
|||
~CompressedBlobReader();
|
||||
const CompressedBlobHeader& GetHeader() const { return m_header; }
|
||||
BlobType GetBlobType() const override { return BlobType::GCZ; }
|
||||
u64 GetDataSize() const override { return m_header.data_size; }
|
||||
u64 GetRawSize() const override { return m_file_size; }
|
||||
u64 GetDataSize() const override { return m_header.data_size; }
|
||||
bool IsDataSizeAccurate() const override { return true; }
|
||||
u64 GetBlockCompressedSize(u64 block_num) const;
|
||||
bool GetBlock(u64 block_num, u8* out_ptr) override;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue