Fix almost all GCC warnings

This commit is contained in:
Nekotekina 2021-02-17 22:58:10 +03:00
parent 6786734d95
commit 038148bf06
19 changed files with 30 additions and 38 deletions

View file

@ -971,6 +971,7 @@ void cell_audio_thread::mix(float *out_buffer, s32 offset)
const float left = buf[in + 0] * m;
const float right = buf[in + 1] * m;
const float center = buf[in + 2] * m;
[[maybe_unused]]
const float low_freq = buf[in + 3] * m;
const float rear_left = buf[in + 4] * m;
const float rear_right = buf[in + 5] * m;