From 01a2877ca027b8038019989c140411cdca58f43b Mon Sep 17 00:00:00 2001 From: dg <dg@51575b47-30f0-44d4-a5cc-537603b46e54> Date: Tue, 2 Aug 2011 11:22:49 +0000 Subject: [PATCH] pop git-svn-id: http://svn.net-core.org/repos/t-engine4@4063 51575b47-30f0-44d4-a5cc-537603b46e54 --- src/main.c | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/src/main.c b/src/main.c index d764907911..88201fe462 100644 --- a/src/main.c +++ b/src/main.c @@ -893,13 +893,25 @@ int main(int argc, char *argv[]) // RNG init init_gen_rand(time(NULL)); + int vid_drv; + for (vid_drv = 0; vid_drv < SDL_GetNumVideoDrivers(); vid_drv++) + { + printf("Available video driver: %s\n", SDL_GetVideoDriver(vid_drv)); + } + // initialize engine and set up resolution and depth - Uint32 flags=SDL_INIT_VIDEO | SDL_INIT_TIMER; + Uint32 flags=SDL_INIT_TIMER; if (SDL_Init (flags) < 0) { printf("cannot initialize SDL: %s\n", SDL_GetError ()); - return; + return 1; } + if (SDL_VideoInit(NULL) != 0) { + printf("Error initializing SDL video: %s\n", SDL_GetError()); + return 2; + } + + // Filter events, to catch the quit event SDL_SetEventFilter(event_filter, NULL); -- GitLab