--Code changes

-Formatting.
This commit is contained in:
Person 2019-05-22 20:34:08 -07:00
parent ee6d3c6f1b
commit 9724b4d936

View File

@ -1228,7 +1228,7 @@ bool XmlToEmber<T>::ParseEmberElementFromChaos(xmlNode* emberNode, Ember<T>& cur
// there is no warranty that flam3_use_highlight_power will be read before flam3_highlight_power. So, better to be here.
bool bVal; istringstream istr(useHighlightPower); istr >> std::boolalpha >> bVal;
if(!bVal && !istr.bad() && !istr.fail())
if (!bVal && !istr.bad() && !istr.fail())
currentEmber.m_HighlightPower = T(-1);
if (auto curvesnode = GetChildNodeByNodeName(childNode, "curves"))