[game] Minor

This commit is contained in:
Kevin Lange 2011-05-07 19:19:37 -05:00
parent 855eecbb41
commit 41ae8f1d85
2 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
CC = i686-pc-toaru-gcc
CFLAGS = -march=core2 -std=c99 -O3
CFLAGS = -march=core2 -std=c99 -O3 -m32
.PHONY: all

View File

@ -264,7 +264,7 @@ void transition(int nx, int ny) {
offset_x = 0;
offset_y = -1;
}
for (int i = 0; i < 64; i += 8) {
for (int i = 0; i < 64; i += 1) {
offset_iter = i;
display();
}