DiscIO: implement WbfsBlob::GetDataSize()

This commit is contained in:
Tillmann Karras
2015-09-17 10:58:54 +02:00
parent a92b4bda95
commit 1a8e2e16e3
2 changed files with 11 additions and 1 deletions

View File

@ -51,6 +51,11 @@ WbfsFileReader::~WbfsFileReader()
delete[] m_wlba_table;
}
u64 WbfsFileReader::GetDataSize() const
{
return WII_SECTOR_COUNT * WII_SECTOR_SIZE;
}
bool WbfsFileReader::OpenFiles(const std::string& filename)
{
m_total_files = 0;