1
0
mirror of https://github.com/godotengine/godot.git synced 2026-01-06 19:41:11 +00:00

Merge pull request #11239 from hpvb/fix-array-oob

Fix out of bound array indexing
This commit is contained in:
Hein-Pieter van Braam
2017-09-13 17:42:31 +02:00
committed by GitHub

View File

@@ -40,7 +40,7 @@ private:
AudioFilterSW filter;
AudioFilterSW::Processor filter_process[6];
AudioFrame vol[3];
AudioFrame vol[4];
float filter_gain;
float pitch_scale;
int bus_index;