Browse Source

Fix number of arguments check in w_ParticleSystem_setSizes.

vrld 13 years ago
parent
commit
94bd960cc7
1 changed files with 3 additions and 2 deletions
  1. 3 2
      src/modules/graphics/opengl/wrap_ParticleSystem.cpp

+ 3 - 2
src/modules/graphics/opengl/wrap_ParticleSystem.cpp

@@ -151,9 +151,10 @@ namespace opengl
 		if (nSizes > 8)
 			return luaL_error(L, "At most eight (8) sizes may be used.");
 
-		if (nSizes == 1)
+		if (nSizes <= 1)
 		{
-			t->setSize(luax_checkfloat(L, 2));
+			float size = luax_checkfloat(L, 2);
+			t->setSize(size);
 		}
 		else
 		{