mirror of
https://github.com/libretro/RetroArch
synced 2025-03-03 04:14:00 +00:00
Prevent i variable being uninitialied
This commit is contained in:
parent
1a7263196e
commit
f35e521fd8
@ -50,7 +50,7 @@ void convert_float_s16_asm(int16_t *out, const float *in, size_t samples);
|
||||
void convert_float_to_s16(int16_t *out,
|
||||
const float *in, size_t samples)
|
||||
{
|
||||
size_t i;
|
||||
size_t i = 0;
|
||||
#if defined(__SSE2__)
|
||||
__m128 factor = _mm_set1_ps((float)0x8000);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user