Fixed function prototype

--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%404394
This commit is contained in:
Sam Lantinga 2010-01-13 05:21:30 +00:00
parent 819f28ff22
commit 7676ffcf3f

View file

@ -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 */
@ -132,7 +133,7 @@ UIKit_VideoInit(_THIS)
}
static int
UIKit_SetDisplayMode(_THIS, SDL_DisplayMode * mode)
UIKit_SetDisplayMode(_THIS, SDL_VideoDisplay * display, SDL_DisplayMode * mode)
{
return 0;
}