mirror of
https://github.com/nzp-team/fteqw.git
synced 2024-11-10 14:42:13 +00:00
Mmm, const...
git-svn-id: https://svn.code.sf.net/p/fteqw/code/branches/wip@3460 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
parent
3b367ce992
commit
9c69d3fa3a
1 changed files with 1 additions and 1 deletions
|
@ -155,7 +155,7 @@ void Sys_CloseLibrary(dllhandle_t *lib)
|
||||||
{
|
{
|
||||||
SDL_UnloadObject((void*)lib);
|
SDL_UnloadObject((void*)lib);
|
||||||
}
|
}
|
||||||
dllhandle_t *Sys_LoadLibrary(char *name, dllfunction_t *funcs)
|
dllhandle_t *Sys_LoadLibrary(const char *name, dllfunction_t *funcs)
|
||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
void *lib;
|
void *lib;
|
||||||
|
|
Loading…
Reference in a new issue