X-Git-Url: http://git.mutantstargoat.com/user/nuclear/?a=blobdiff_plain;f=src%2Fpc%2Fmain.c;h=91ce9daaf45a1e1ee92185443e19d3d122b0a72d;hb=bb895563088da093a90f42fc6a532688adc36cf2;hp=7466e1b38ef443b1f71d26e18ac4bf77722fa9e8;hpb=097d03fa2406fca819b27b698ffb1cfc8ac445c2;p=gbajam22 diff --git a/src/pc/main.c b/src/pc/main.c index 7466e1b..91ce9da 100644 --- a/src/pc/main.c +++ b/src/pc/main.c @@ -4,6 +4,7 @@ #include #include "miniglut.h" #include "game.h" +#include "gba.h" static void display(void); static void idle(void); @@ -177,11 +178,6 @@ static void keydown(unsigned char key, int x, int y) { modkeys = glutGetModifiers(); - if((key == '\n' || key == '\r') && (modkeys & GLUT_ACTIVE_ALT)) { - opt.fullscreen ^= 1; - set_fullscreen(opt.fullscreen); - return; - } keystate[key] = 1; //game_key(key, 1); }