mirror of
https://github.com/libretro/RetroArch
synced 2025-01-30 12:32:52 +00:00
prevent uninitialized variable
This commit is contained in:
parent
37283185c9
commit
6b638cae8b
@ -110,12 +110,12 @@ static bool task_overlay_load_desc(
|
||||
bool normalized, float alpha_mod, float range_mod)
|
||||
{
|
||||
float width_mod, height_mod;
|
||||
float tmp_float;
|
||||
uint32_t box_hash, key_hash;
|
||||
char overlay_desc_key[64];
|
||||
char conf_key[64];
|
||||
char overlay_desc_normalized_key[64];
|
||||
char overlay[256];
|
||||
float tmp_float = 0.0f;
|
||||
bool tmp_bool = false;
|
||||
bool ret = true;
|
||||
bool by_pixel = false;
|
||||
|
Loading…
x
Reference in New Issue
Block a user