mirror of
https://github.com/CTCaer/RetroArch.git
synced 2025-02-05 02:58:04 +00:00
(MSVC) Build fixes
This commit is contained in:
parent
497986f1f1
commit
9519304b12
@ -442,9 +442,10 @@ static GLuint glui_png_texture_load_(const char * file_name)
|
||||
|
||||
return texture;
|
||||
}
|
||||
static int glui_png_texture_load_wrap(void * file_name)
|
||||
static int glui_png_texture_load_wrap(void *data)
|
||||
{
|
||||
return glui_png_texture_load_(file_name);
|
||||
const char *filename = (const char*)data;
|
||||
return glui_png_texture_load_(filename);
|
||||
}
|
||||
|
||||
|
||||
|
@ -605,9 +605,10 @@ static GLuint lakka_png_texture_load_(const char * file_name)
|
||||
|
||||
return texture;
|
||||
}
|
||||
static int lakka_png_texture_load_wrap(void * file_name)
|
||||
static int lakka_png_texture_load_wrap(void *data)
|
||||
{
|
||||
return lakka_png_texture_load_(file_name);
|
||||
const char *filename = (const char*)data;
|
||||
return lakka_png_texture_load_(filename);
|
||||
}
|
||||
|
||||
static GLuint lakka_png_texture_load(const char* file_name)
|
||||
|
Loading…
x
Reference in New Issue
Block a user