You've already forked godot
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:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user