mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-24 06:39:46 -06:00
DiscIO: Add a way to get blob type
This commit is contained in:
@ -19,7 +19,7 @@ class WbfsFileReader : public IBlobReader
|
||||
public:
|
||||
static WbfsFileReader* Create(const std::string& filename);
|
||||
|
||||
bool IsCompressed() const override { return true; }
|
||||
BlobType GetBlobType() const override { return BlobType::WBFS; }
|
||||
u64 GetDataSize() const override { return m_size; }
|
||||
u64 GetRawSize() const override { return m_size; }
|
||||
bool Read(u64 offset, u64 nbytes, u8* out_ptr) override;
|
||||
|
Reference in New Issue
Block a user