mirror of
https://github.com/isledecomp/SIEdit.git
synced 2025-04-15 06:14:36 -04:00
lib: print extra data (seems to always be a string)
This commit is contained in:
parent
ca43500bd0
commit
fc1899190f
1 changed files with 2 additions and 0 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue