mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-10 23:02:03 +00:00
SDL_free() is not for pointers to SDL_RWops structures...
git-svn-id: https://svn.eduke32.com/eduke32@8151 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
c86af959b9
commit
0270cc2df5
1 changed files with 2 additions and 2 deletions
|
@ -855,13 +855,13 @@ static void LoadSDLControllerDB()
|
|||
return;
|
||||
}
|
||||
|
||||
int i = SDL_GameControllerAddMappingsFromRW(rwops, 0);
|
||||
int i = SDL_GameControllerAddMappingsFromRW(rwops, 1);
|
||||
|
||||
if (i == -1)
|
||||
buildprintf("Failed loading game controller database: %s\n", SDL_GetError());
|
||||
else
|
||||
buildputs("Loaded game controller database\n");
|
||||
|
||||
SDL_free(rwops);
|
||||
free(dbuf);
|
||||
}
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue