lib: print extra data (seems to always be a string)

This commit is contained in:
MattKC 2023-08-25 19:39:50 -07:00
parent ca43500bd0
commit fc1899190f

View file

@ -306,6 +306,8 @@ Object *Interleaf::ReadObject(FileBase *f, Object *o, std::stringstream &desc)
desc << "Extra Size: " << extra_sz << std::endl;
o->extra_ = f->ReadBytes(extra_sz);
desc << "Extra Data: " << o->extra_.data() << std::endl;
if (o->type_ != MxOb::Presenter && o->type_ != MxOb::World && o->type_ != MxOb::Animation) {
o->filename_ = f->ReadString();
desc << "Filename: " << o->filename_ << std::endl;