only take wminfo from appropriate sdl driver
authornotaz <notasas@gmail.com>
Mon, 28 Jan 2013 01:25:42 +0000 (03:25 +0200)
committernotaz <notasas@gmail.com>
Mon, 28 Jan 2013 01:25:42 +0000 (03:25 +0200)
plat_sdl.c

index 2508d1c..9b41299 100644 (file)
@@ -222,8 +222,10 @@ int plat_sdl_init(void)
 
   SDL_VERSION(&wminfo.version);
   SDL_GetWMInfo(&wminfo);
+#ifdef SDL_VIDEO_DRIVER_X11
   display = wminfo.info.x11.display;
   window = (void *)wminfo.info.x11.window;
+#endif
 
   ret = gl_init(display, window, &gl_quirks);
   if (ret == 0) {