/* ** sdl.c - <+DESC+> ** ** 2014 - Frank Villaro-Dixon */ #include #include #include "SDL/SDL.h" #include "game.h" void init_SDL(struct s_game *g) { /* initialize SDL */ SDL_Init(SDL_INIT_VIDEO); /* set the title bar */ SDL_WM_SetCaption("SDL Move", "SDL Move"); /* create window */ g->screen = SDL_SetVideoMode(SCREEN_WIDTH, SCREEN_HEIGHT, 0, 0); }