1
0
mirror of https://github.com/godotengine/godot.git synced 2025-12-31 18:41:20 +00:00

Fix GCC warning about potential stringop-overflow in AudioEffectPitchShift

Fixes #101236.
This commit is contained in:
Rémi Verschelde
2025-01-08 10:40:17 +01:00
parent d2ada64a03
commit 6f4089fa55

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,