diff options
Diffstat (limited to 'src/main.c')
-rw-r--r-- | src/main.c | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -7,6 +7,9 @@ int main(int argc, char **argv) { gfxInit(GSP_BGR8_OES, GSP_BGR8_OES, false); + gc_init(); + bootstrap(); + // Initialize console on top screen. Using NULL as the second argument tells // the console library to use the internal console structure as current one consoleInit(GFX_TOP, NULL); @@ -20,8 +23,6 @@ int main(int argc, char **argv) { printf("\x1b[29;16HPress Start to exit.\n"); - gc_init(); - // Main loop while (aptMainLoop()) { // Scan all the inputs. This should be done once for each frame |