Skip to content
Snippets Groups Projects
Commit 605c6896 authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

Resolve GCC warning

warning: passing argument 1 of ‘ra’ discards ‘const’ qualifier from
pointer target type
parent 82ae8281
No related branches found
No related tags found
1 merge request!463MRC mods by Codefenix (2024-10-20)
Pipeline #3824 passed
......@@ -206,7 +206,7 @@ int load_sdl_funcs(struct sdlfuncs *sdlf)
{
int (HACK_HACK_HACK *ra)(char *name, Uint32 style, void *hInst);
if ((ra = xp_dlsym(sdl_dll, SDL_RegisterApp)) != NULL) {
ra(ciolib_appname, 0, NULL);
ra((char*)ciolib_appname, 0, NULL);
}
}
#endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment