Fixed gcc error. (Invalid cast in const expression).

This commit is contained in:
rude
2009-10-10 14:55:25 +02:00
parent 5fd6e7fbfb
commit be768bdc2e
+1 -1
View File
@@ -38,7 +38,7 @@ namespace love
Record() : set(false) {}
};
const static unsigned MAX = (unsigned)((float)SIZE * 1.5f);
const static unsigned MAX = SIZE*2;
Record records[MAX];
const char * reverse[SIZE];