Change-Id: Ia9cb25531b5a2320f303e2a7a1b291be689fcef1
m_default_configure.target_screen_width = get_content_int(cur_node);
} else if (0 == xmlStrcmp(cur_node->name, (const xmlChar *)"base_screen_height")) {
m_default_configure.target_screen_height = get_content_int(cur_node);
+ } else if (0 == xmlStrcmp(cur_node->name, (const xmlChar *)"auto_detect_landscape")) {
+ m_default_configure.auto_detect_landscape = get_content_bool(cur_node);
} else if (0 == xmlStrcmp(cur_node->name, (const xmlChar *)"image_file_base_path")) {
xmlChar* temp = xmlNodeGetContent(cur_node);
m_default_configure.image_file_base_path = (sclchar *)temp;