laser shots
[gbajam22] / src / gba / main.c
index 982463f..5240dff 100644 (file)
@@ -5,6 +5,7 @@
 #include "game.h"
 #include "maxmod.h"
 #include "input.h"
+#include "timer.h"
 #include "xgl.h"
 
 static void vblank(void);
@@ -40,10 +41,11 @@ int main(void)
                panic(get_pc(), "failed to initialize screens");
        }
 
-       if(change_screen(find_screen("logo")) == -1) {
+       if(change_screen(find_screen("game")) == -1) {
                panic(get_pc(), "failed to find starting screen");
        }
 
+       reset_msec_timer();
        intr_enable();
 
        for(;;) {