Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Commit

Permalink
Fixed function prototype
Browse files Browse the repository at this point in the history
  • Loading branch information
slouken committed Jan 13, 2010
1 parent e563ef0 commit 11ed5ad
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/video/uikit/SDL_uikitvideo.m
Expand Up @@ -39,7 +39,8 @@

/* Initialization/Query functions */
static int UIKit_VideoInit(_THIS);
static int UIKit_SetDisplayMode(_THIS, SDL_DisplayMode * mode);
static int UIKit_SetDisplayMode(_THIS, SDL_VideoDisplay * display,
SDL_DisplayMode * mode);
static void UIKit_VideoQuit(_THIS);

/* DUMMY driver bootstrap functions */
Expand Down Expand Up @@ -132,7 +133,7 @@ static void UIKit_DeleteDevice(SDL_VideoDevice * device)
}

static int
UIKit_SetDisplayMode(_THIS, SDL_DisplayMode * mode)
UIKit_SetDisplayMode(_THIS, SDL_VideoDisplay * display, SDL_DisplayMode * mode)
{
return 0;
}
Expand Down

0 comments on commit 11ed5ad

Please sign in to comment.