Commit 9e546b82 authored by Sam Lantinga's avatar Sam Lantinga

Fixed QZ_ToggleFullScreen() return value (thanks Max!)

--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%40577
parent a9a711e9
...@@ -696,7 +696,7 @@ static SDL_Surface* QZ_SetVideoMode (_THIS, SDL_Surface *current, int width, ...@@ -696,7 +696,7 @@ static SDL_Surface* QZ_SetVideoMode (_THIS, SDL_Surface *current, int width,
} }
static int QZ_ToggleFullScreen (_THIS, int on) { static int QZ_ToggleFullScreen (_THIS, int on) {
return -1; return 0;
} }
static int QZ_SetColors (_THIS, int first_color, int num_colors, static int QZ_SetColors (_THIS, int first_color, int num_colors,
...@@ -1629,4 +1629,4 @@ static SDL_Overlay* QZ_CreateYUVOverlay (_THIS, int width, int height, ...@@ -1629,4 +1629,4 @@ static SDL_Overlay* QZ_CreateYUVOverlay (_THIS, int width, int height,
yuv_height = overlay->h; yuv_height = overlay->h;
return overlay; return overlay;
} }
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment