whatever: Hide mouse cursor

This commit is contained in:
Logen Kain 2016-11-18 19:17:53 -07:00
parent cbc6417dfd
commit d08678c8bc

View File

@ -190,6 +190,9 @@ int init()
printf("Unable to init SDL!: %s\n", SDL_GetError());
return 1;
}
/*Hide the mouse cursor */
SDL_ShowCursor(0);
/* create window of size 640x480 and set title bar*/
gScreen = SDL_CreateWindow("SDL TEST",
SDL_WINDOWPOS_CENTERED,