bugfix for load games when xml is bad

This commit is contained in:
Mark Vejvoda 2013-11-14 04:13:40 +00:00
parent 85799eddc2
commit 5db18c76f4
1 changed files with 1 additions and 1 deletions

View File

@ -302,7 +302,7 @@ void MenuStateLoadGame::mouseClick(int x, int y, MouseButton mouseButton){
if(fileExists(filename) == true) {
// Xerces is infinitely slower than rapidxml
xml_engine_parser_type engine_type = XML_RAPIDXML_ENGINE;
if(Config::getInstance().getBool("ForceXMLLoadGameUsingXerces") == true) {
if(Config::getInstance().getBool("ForceXMLLoadGameUsingXerces","false") == true) {
engine_type = XML_XERCES_ENGINE;
}
// XmlTree xmlTree(XML_XERCES_ENGINE);