tangstad/helds
tangstad
/
helds
Archived
1
0
Fork 0

Added chasers in a row right now.

This commit is contained in:
Truls Alexander Tangstad 2005-11-23 20:44:27 +00:00
parent 9f4b7c5f76
commit 3861c2b69c
1 changed files with 2 additions and 5 deletions

View File

@ -90,6 +90,8 @@ int main(void)
u8 i;
for (i=0; i<NUMCHASERS; i++) {
chasers[i].attr2 = OBJ_CHAR(520);
chasers[i].attr1 = OBJ_X(20+(i*10));
chasers[i].attr0 = OBJ_256_COLOR | OBJ_Y(40);
}
int x = 112;
@ -154,11 +156,6 @@ int main(void)
car->attr1 = OBJ_SIZE(1) | OBJ_X(x);
car->attr0 = OBJ_256_COLOR | OBJ_DOUBLE | OBJ_ROT_SCALE_ON | OBJ_Y(y);
for (i=0; i<NUMCHASERS; i++) {
chasers[i].attr1 = OBJ_X(x-(8*i));
chasers[i].attr0 = OBJ_256_COLOR | OBJ_Y(y-(8*i));
}
VBlankIntrWait();
CpuFastSet(oe_buffer, OAM, COPY32 | sizeof(oe_buffer)/4);
}