Commit 7676ffcf authored by Sam Lantinga's avatar Sam Lantinga

Fixed function prototype

--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%404394
parent 819f28ff
...@@ -39,7 +39,8 @@ ...@@ -39,7 +39,8 @@
/* Initialization/Query functions */ /* Initialization/Query functions */
static int UIKit_VideoInit(_THIS); 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); static void UIKit_VideoQuit(_THIS);
/* DUMMY driver bootstrap functions */ /* DUMMY driver bootstrap functions */
...@@ -132,7 +133,7 @@ UIKit_VideoInit(_THIS) ...@@ -132,7 +133,7 @@ UIKit_VideoInit(_THIS)
} }
static int static int
UIKit_SetDisplayMode(_THIS, SDL_DisplayMode * mode) UIKit_SetDisplayMode(_THIS, SDL_VideoDisplay * display, SDL_DisplayMode * mode)
{ {
return 0; return 0;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment