The Vertex struct is now recognized as POD by C++, also fixed the name to be consistent with other love structs

This commit is contained in:
Alex Szpakowski
2013-09-24 11:09:18 -03:00
parent 8d5ddb9e34
commit 5de43a7207
24 changed files with 127 additions and 129 deletions
+1 -1
View File
@@ -148,7 +148,7 @@ public:
* @param src The source vertices.
* @param size The number of vertices.
**/
void transform(vertex *dst, const vertex *src, int size) const;
void transform(Vertex *dst, const Vertex *src, int size) const;
private: