1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-05 12:10:55 +00:00

Merge pull request #101279 from akien-mga/audio-pitch-shift-fix-gcc-warning

Fix GCC warning about potential stringop-overflow in AudioEffectPitcShift
This commit is contained in:
Rémi Verschelde
2025-01-09 11:17:31 +01:00

View File

@@ -77,7 +77,7 @@ class AudioEffectPitchShift : public AudioEffect {
public:
friend class AudioEffectPitchShiftInstance;
enum FFTSize {
enum FFTSize : unsigned int {
FFT_SIZE_256,
FFT_SIZE_512,
FFT_SIZE_1024,