1
0
mirror of https://github.com/TerryCavanagh/VVVVVV.git synced 2024-06-25 22:18:30 +02:00

Remove superfluous whitespace in entity XML data in level files (#119)

An earlier change caused TinyXml to prettyprint specifically the
contents of entities (script names and roomtext) a bit more than
before in level files, and added an unusually high amount of whitespace
(particularly, it added an empty line to every entity). This happens
because, for some reason, an empty string is explicitly being added
when creating an entity XML element. The line is so mysterious it feels
like it probably somehow solved a nasty bug long ago and shouldn't be
touched, but it was probably just a mistake, and with all that
whitespace it doesn't look good.
This commit is contained in:
Dav999-v 2020-01-24 19:25:21 +00:00 committed by Ethan Lee
parent 9cf5112f0d
commit 3dee27db7b

View File

@ -2070,7 +2070,6 @@ void editorclass::save(std::string& _path)
edentityElement->SetAttribute( "p5", edentity[i].p5);
edentityElement->SetAttribute( "p6", edentity[i].p6);
edentityElement->LinkEndChild( new TiXmlText( edentity[i].scriptname.c_str() )) ;
edentityElement->LinkEndChild( new TiXmlText( "" )) ;
msg->LinkEndChild( edentityElement );
}