1
0
mirror of https://github.com/Drezil/imgui.git synced 2025-04-10 13:13:59 +00:00

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
examples
sdl_opengl3_example
sdl_opengl_example

@ -10,7 +10,7 @@
int main(int, char**) int main(int, char**)
{ {
// Setup SDL // 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()); printf("Error: %s\n", SDL_GetError());
return -1; return -1;

@ -10,7 +10,7 @@
int main(int, char**) int main(int, char**)
{ {
// Setup SDL // 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()); printf("Error: %s\n", SDL_GetError());
return -1; return -1;