changeset 576:cd41dca47fff

Fixed QZ_ToggleFullScreen() return value (thanks Max!)
author Sam Lantinga <slouken@libsdl.org>
date Tue, 21 Jan 2003 05:29:50 +0000
parents 1f6438c8df2c
children f7596a8a3b8b
files src/video/quartz/SDL_QuartzVideo.m
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/video/quartz/SDL_QuartzVideo.m	Tue Jan 21 04:15:21 2003 +0000
+++ b/src/video/quartz/SDL_QuartzVideo.m	Tue Jan 21 05:29:50 2003 +0000
@@ -696,7 +696,7 @@
 }
 
 static int QZ_ToggleFullScreen (_THIS, int on) {
-    return -1;
+    return 0;
 }
 
 static int QZ_SetColors (_THIS, int first_color, int num_colors,
@@ -1629,4 +1629,4 @@
     yuv_height = overlay->h;
     
     return overlay;
-}
\ No newline at end of file
+}