I don't think I'll bother any more with this, so I'll just make it start
[ld42_outofspace] / src / screen.cc
index 6b9a274..7688652 100644 (file)
@@ -1,4 +1,5 @@
 #include "screen.h"
+#include "game.h"
 
 ScreenBase *active_screen;
 MenuScreen *scr_menu;
@@ -17,6 +18,7 @@ bool init_screens()
        }
 
        push_screen(scr_menu);
+       //push_screen(scr_game);
        return true;
 }
 
@@ -34,6 +36,7 @@ void push_screen(ScreenBase *scr)
        scr->next = active_screen;
        active_screen = scr;
 
+       scr->reshape(win_width, win_height);
        scr->start();
 }