Fix fountain crash.

This commit is contained in:
Jason Sams
2009-09-25 20:24:54 -07:00
parent a6c402fb0e
commit f075b4e713

View File

@@ -31,10 +31,11 @@ int main(int launchID) {
np->b = b; np->b = b;
np->a = 0xf0; np->a = 0xf0;
newPart++; newPart++;
np++;
if (newPart >= count) { if (newPart >= count) {
newPart = 0; newPart = 0;
np = &p[newPart];
} }
np++;
} }
} }