Przeglądaj źródła

Fixed compile error in generated Lua wrappers.

Cameron Hart 14 lat temu
rodzic
commit
445eb31f59

+ 1 - 1
Bindings/Contents/LUA/Include/PolycodeLUAWrappers.h

@@ -10856,7 +10856,7 @@ static int Polycore_SceneLight_setLightColor(lua_State *L) {
 	if(lua_isnumber(L, 5)) {
 	if(lua_isnumber(L, 5)) {
 		a = lua_tonumber(L, 5);
 		a = lua_tonumber(L, 5);
 	} else {
 	} else {
-		a = 1 0;
+		a = 1;
 	}
 	}
 	inst->setLightColor(r, g, b, a);
 	inst->setLightColor(r, g, b, a);
 	return 0;
 	return 0;