Browse Source

Examples: SDL: Initialize video+timer subsystem only.

ocornut 9 years ago
parent
commit
1612ca071b
2 changed files with 2 additions and 2 deletions
  1. 1 1
      examples/sdl_opengl3_example/main.cpp
  2. 1 1
      examples/sdl_opengl_example/main.cpp

+ 1 - 1
examples/sdl_opengl3_example/main.cpp

@@ -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;

+ 1 - 1
examples/sdl_opengl_example/main.cpp

@@ -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;