Navigation Menu

Skip to content

Commit

Permalink
Fixed QZ_ToggleFullScreen() return value (thanks Max!)
Browse files Browse the repository at this point in the history
  • Loading branch information
slouken committed Jan 21, 2003
1 parent baea0d3 commit fe8f686
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/video/quartz/SDL_QuartzVideo.m
Expand Up @@ -696,7 +696,7 @@ static void QZ_UnsetVideoMode (_THIS) {
}

static int QZ_ToggleFullScreen (_THIS, int on) {
return -1;
return 0;
}

static int QZ_SetColors (_THIS, int first_color, int num_colors,
Expand Down Expand Up @@ -1629,4 +1629,4 @@ static void QZ_FreeHWYUV (_THIS, SDL_Overlay *overlay) {
yuv_height = overlay->h;

return overlay;
}
}

0 comments on commit fe8f686

Please sign in to comment.