mirror of
https://github.com/libretro/RetroArch.git
synced 2024-11-24 08:30:16 +00:00
Silence warning 'variable is used before its value is set'
This commit is contained in:
parent
bd4f28af21
commit
fffed52892
1
file.c
1
file.c
@ -525,4 +525,3 @@ bool init_content_file(void)
|
||||
string_list_free(content);
|
||||
return ret;
|
||||
}
|
||||
|
||||
|
@ -847,7 +847,7 @@ static unsigned menu_common_shader_manager_get_type(
|
||||
const struct gfx_shader *shader)
|
||||
{
|
||||
/* All shader types must be the same, or we cannot use it. */
|
||||
unsigned i, type = 0;
|
||||
unsigned i = 0, type = 0;
|
||||
|
||||
(void)i;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user