Examples: SDL: Initialize video+timer subsystem only.

This commit is contained in:
ocornut 2016-04-13 00:15:58 +02:00
parent 006934fd15
commit 1612ca071b
2 changed files with 2 additions and 2 deletions

View file

@ -10,7 +10,7 @@
int main(int, char**)
{
// Setup SDL
if (SDL_Init(SDL_INIT_EVERYTHING) != 0)
if (SDL_Init(SDL_INIT_VIDEO|SDL_INIT_TIMER) != 0)
{
printf("Error: %s\n", SDL_GetError());
return -1;

View file

@ -10,7 +10,7 @@
int main(int, char**)
{
// Setup SDL
if (SDL_Init(SDL_INIT_EVERYTHING) != 0)
if (SDL_Init(SDL_INIT_VIDEO|SDL_INIT_TIMER) != 0)
{
printf("Error: %s\n", SDL_GetError());
return -1;