mirror of
https://github.com/ZDoom/raze-gles.git
synced 2025-01-27 09:20:51 +00:00
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:
parent
ec1923b417
commit
ba6ad362bc
1 changed files with 2 additions and 2 deletions
|
@ -70,7 +70,7 @@ int32_t startwin_settitle(const char *s) { UNREFERENCED_PARAMETER(s); return 0;
|
||||||
#define MWHEELTICKS 10
|
#define MWHEELTICKS 10
|
||||||
static uint32_t mwheelup, mwheeldown;
|
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;
|
char quitevent=0, appactive=1, novideo=0;
|
||||||
|
|
||||||
|
@ -237,7 +237,7 @@ int32_t main(int32_t argc, char *argv[])
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
baselayer_init();
|
baselayer_init();
|
||||||
r = app_main(argc, argv);
|
r = app_main(argc, (const char **)argv);
|
||||||
|
|
||||||
startwin_close();
|
startwin_close();
|
||||||
#ifdef HAVE_GTK2
|
#ifdef HAVE_GTK2
|
||||||
|
|
Loading…
Reference in a new issue