Allowing STFS v2 with a warning.

This commit is contained in:
Ben Vanik 2014-01-18 23:41:24 -08:00
parent 5319b31829
commit 50a692d20f
1 changed files with 3 additions and 2 deletions

View File

@ -42,8 +42,9 @@ bool STFSHeader::Read(const uint8_t* p) {
content_type = (STFSContentType)XEGETUINT32BE(p + 0x344); content_type = (STFSContentType)XEGETUINT32BE(p + 0x344);
metadata_version = XEGETUINT32BE(p + 0x348); metadata_version = XEGETUINT32BE(p + 0x348);
if (metadata_version > 1) { if (metadata_version > 1) {
XELOGE("STFSContainer doesn't support version %d yet", metadata_version); // This is a variant of thumbnail data/etc.
return false; // Can just ignore it for now (until we parse thumbnails).
XELOGW("STFSContainer doesn't support version %d yet", metadata_version);
} }
content_size = XEGETUINT32BE(p + 0x34C); content_size = XEGETUINT32BE(p + 0x34C);
media_id = XEGETUINT32BE(p + 0x354); media_id = XEGETUINT32BE(p + 0x354);