Removed the 'erase_if' template, that was silly

This commit is contained in:
Kayne Ruse
2014-06-14 03:08:33 +10:00
parent fbac14e188
commit 1bc51fe035
2 changed files with 1 additions and 14 deletions
+1 -1
View File
@@ -26,7 +26,7 @@
int snapToBase(int base, int x) {
//snap to a grid
if (x < 0) {
x++;
++x;
return x / base * base - base;
}
return x / base * base;