Browse Source

X11: Fixed missing error message if SDL_GetDisplayDPI() failed.

Philipp Wiesemann 9 years ago
parent
commit
81235118ab
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/video/x11/SDL_x11modes.c

+ 1 - 1
src/video/x11/SDL_x11modes.c

@@ -1070,7 +1070,7 @@ X11_GetDisplayDPI(_THIS, SDL_VideoDisplay * sdl_display, float * ddpi, float * h
         *vdpi = data->vdpi;
     }
 
-    return data->ddpi != 0.0f ? 0 : -1;
+    return data->ddpi != 0.0f ? 0 : SDL_SetError("Couldn't get DPI");
 }
 
 int