mirror of
https://github.com/ZDoom/raze-gles.git
synced 2025-01-26 17:00:56 +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
|
||||
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
|
||||
|
|
Loading…
Reference in a new issue