I'm working on porting the new 0.7 version of CEGUI and have a question.
For testing I'm using the configuration xml files from the source code samples release.
The code is throwing an assert here:
Code: Select all
void Falagard_xmlHandler::elementImagerySectionStart(const XMLAttributes& attributes)
{
assert(d_imagerysection == 0);
d_imagerysection = new ImagerySection(attributes.getValueAsString(NameAttribute));
CEGUI_LOGINSANE("-----> Start of definition for imagery section '" + d_imagerysection->getName() + "'.");
}
When it tries to parse a second <ImagerySection> tag. The documentation shows multiple sections as being valid
http://www.cegui.org.uk/wiki/index.php/The_Beginners_Guide_to_Falagard_skinning_-_Part_I
Am I using the wrong docs and sample configuration files?
Thanks