Hopefully removed spritebug my moving buffers into main.
This commit is contained in:
parent
714de2aaef
commit
5d7fc8384f
|
@ -32,9 +32,6 @@ typedef s32 FIXED; // 32bit FIXED in 24.8 format
|
||||||
|
|
||||||
#define NUMSMOKES 30
|
#define NUMSMOKES 30
|
||||||
|
|
||||||
OBJATTR oe_buffer[2+NUMSMOKES+10];
|
|
||||||
OBJAFFINE *const oa_buffer = (OBJAFFINE*)oe_buffer;
|
|
||||||
|
|
||||||
unsigned int frame;
|
unsigned int frame;
|
||||||
|
|
||||||
void VblankInterrupt()
|
void VblankInterrupt()
|
||||||
|
@ -161,6 +158,9 @@ public:
|
||||||
|
|
||||||
int main(void)
|
int main(void)
|
||||||
{
|
{
|
||||||
|
OBJATTR oe_buffer[2+NUMSMOKES+10];
|
||||||
|
OBJAFFINE *const oa_buffer = (OBJAFFINE*)oe_buffer;
|
||||||
|
|
||||||
// Set up the interrupt handlers
|
// Set up the interrupt handlers
|
||||||
InitInterrupt();
|
InitInterrupt();
|
||||||
|
|
||||||
|
|
Reference in New Issue