Fixed: Uninitialized variables

This commit is contained in:
kervala 2016-12-19 15:43:38 +01:00
parent d58b347a99
commit 82d8e04ab2
3 changed files with 3 additions and 2 deletions

View file

@ -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;

View file

@ -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

View file

@ -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;