Explorar o código

Silence EQ::Band::c1, c2 and c3 may be used uninitialized warnings.

(cherry picked from commit d02143905ff064c78cec5cac96821bfc814143eb)
Marcel Admiraal %!s(int64=5) %!d(string=hai) anos
pai
achega
253d211102
Modificáronse 1 ficheiros con 1 adicións e 0 borrados
  1. 1 0
      servers/audio/effects/eq.cpp

+ 1 - 0
servers/audio/effects/eq.cpp

@@ -125,6 +125,7 @@ void EQ::set_preset_band_mode(Preset p_preset) {
 	for (int i = 0; i < m_bands; i++) { \
 		Band b;                         \
 		b.freq = bands[i];              \
+		b.c1 = b.c2 = b.c3 = 0;         \
 		band.push_back(b);              \
 	}