Fixed: Uninitialized variables

--HG--
branch : develop
feature/pipeline-tools
kervala 8 years ago
parent e29fa9a719
commit 8db7d75e7e

@ -836,7 +836,7 @@ bool CFormElm::getInternalNodeByName (CForm *form, const std::string &name, cons
bool inArrayIndex = false;
// Index in the array
uint arrayIndex;
uint arrayIndex = 0;
// Bool next token must be an array index
bool wantArrayIndex = false;

@ -838,6 +838,7 @@ namespace NLGUI
result.R = 255 * hueToRgb(m1, m2, h + 1.0f/3.0f);
result.G = 255 * hueToRgb(m1, m2, h);
result.B = 255 * hueToRgb(m1, m2, h - 1.0f/3.0f);
result.A = 255;
}
class CNameToCol

@ -2044,7 +2044,7 @@ int CLuaIHMRyzom::addShape(CLuaState &ls)
string shape = ls.toString(1);
float x,y,z = 0.0f;
float x = 0.0f, y = 0.0f, z = 0.0f;
float scale = 1.0f;
string context,url,skeleton,texture = "";
bool highlight, transparency, collision = false;

Loading…
Cancel
Save