Rename variables for better readability

This commit is contained in:
YoungHui Park 2020-08-11 21:13:09 -05:00
parent 82606011c0
commit f388ac2e1e
4 changed files with 11 additions and 12 deletions

View file

@ -82,8 +82,8 @@ IndependentSource::IndependentSource(pugi::xml_node node)
}
// Check if it is a surface source file.
if (check_for_node(node, "surf_src_file")) {
settings::surf_src_read = get_node_value_bool(node, "surf_src_file");
if (check_for_node(node, "surf_src_read")) {
settings::surf_src_read = get_node_value_bool(node, "surf_src_read");
}
} else if (check_for_node(node, "library")) {