From 9e546b8295f0f7d3698168e3390cd4ace9caa607 Mon Sep 17 00:00:00 2001 From: Sam Lantinga Date: Tue, 21 Jan 2003 05:29:50 +0000 Subject: [PATCH] Fixed QZ_ToggleFullScreen() return value (thanks Max!) --HG-- extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%40577 --- src/video/quartz/SDL_QuartzVideo.m | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/video/quartz/SDL_QuartzVideo.m b/src/video/quartz/SDL_QuartzVideo.m index e18a2a135..f5b6bf59d 100644 --- a/src/video/quartz/SDL_QuartzVideo.m +++ b/src/video/quartz/SDL_QuartzVideo.m @@ -696,7 +696,7 @@ static SDL_Surface* QZ_SetVideoMode (_THIS, SDL_Surface *current, int width, } 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 @@ static SDL_Overlay* QZ_CreateYUVOverlay (_THIS, int width, int height, yuv_height = overlay->h; return overlay; -} \ No newline at end of file +}