IOS/ESFormats: Remove unused TMDReader function

The ES function that used to make use of it was changed to be more
sane, so GetRawHeader() is now unused and useless.
This commit is contained in:
Léo Lam 2017-06-11 13:37:13 +02:00
parent 6c3069be97
commit 90280b3f84
2 changed files with 0 additions and 6 deletions

View File

@ -192,11 +192,6 @@ bool TMDReader::IsValid() const
return true; return true;
} }
std::vector<u8> TMDReader::GetRawHeader() const
{
return std::vector<u8>(m_bytes.begin(), m_bytes.begin() + sizeof(TMDHeader));
}
std::vector<u8> TMDReader::GetRawView() const std::vector<u8> TMDReader::GetRawView() const
{ {
// Base fields // Base fields

View File

@ -179,7 +179,6 @@ public:
bool IsValid() const; bool IsValid() const;
// Returns parts of the TMD without any kind of parsing. Intended for use by ES. // Returns parts of the TMD without any kind of parsing. Intended for use by ES.
std::vector<u8> GetRawHeader() const;
std::vector<u8> GetRawView() const; std::vector<u8> GetRawView() const;
u16 GetBootIndex() const; u16 GetBootIndex() const;