Reference counting for love objects in 0.9.2 is now atomic (using SDL's atomic operation functions.)

This commit is contained in:
Alex Szpakowski
2015-01-14 15:52:05 -04:00
parent 1b41d546e2
commit 811f574ef6
3 changed files with 15 additions and 10 deletions
+1 -1
View File
@@ -247,7 +247,7 @@ int w_isConvex(lua_State *L)
}
}
lua_pushboolean(L, Math::instance.isConvex(vertices));
luax_pushboolean(L, Math::instance.isConvex(vertices));
return 1;
}