mirror of
https://github.com/libretro/RetroArch.git
synced 2025-04-02 10:51:52 -04:00
video_texture_image.c - prevent warning
This commit is contained in:
parent
7272a3fdaf
commit
d50109f60a
1 changed files with 1 additions and 1 deletions
|
@ -233,8 +233,8 @@ static enum video_image_format video_texture_image_get_type(const char *path)
|
|||
bool video_texture_image_load(struct texture_image *out_img,
|
||||
const char *path)
|
||||
{
|
||||
size_t file_len;
|
||||
unsigned r_shift, g_shift, b_shift, a_shift;
|
||||
size_t file_len = 0;
|
||||
struct nbio_t *handle = NULL;
|
||||
void *ptr = NULL;
|
||||
enum video_image_format fmt = video_texture_image_get_type(path);
|
||||
|
|
Loading…
Add table
Reference in a new issue