sdlayer.c: fix incompatible-pointer-type warning.

git-svn-id: https://svn.eduke32.com/eduke32@3583 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
helixhorned 2013-03-21 10:19:25 +00:00
parent ec1923b417
commit ba6ad362bc

View file

@ -70,7 +70,7 @@ int32_t startwin_settitle(const char *s) { UNREFERENCED_PARAMETER(s); return 0;
#define MWHEELTICKS 10
static uint32_t mwheelup, mwheeldown;
extern int32_t app_main(int32_t argc, const char *argv[]);
extern int32_t app_main(int32_t argc, const char **argv);
char quitevent=0, appactive=1, novideo=0;
@ -237,7 +237,7 @@ int32_t main(int32_t argc, char *argv[])
#endif
baselayer_init();
r = app_main(argc, argv);
r = app_main(argc, (const char **)argv);
startwin_close();
#ifdef HAVE_GTK2