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

Update servers/audio/audio_rb_resampler.h

Co-authored-by: K. S. Ernest (iFire) Lee <fire@users.noreply.github.com>
This commit is contained in:
Bernat
2025-02-13 15:22:28 +01:00
committed by GitHub
parent 00fb5c4df5
commit 5b67dda1ad

View File

@@ -86,7 +86,7 @@ public:
} else if (w < r) {
space = r - w - 1;
} else {
space = rb_len - w + r - 1;
space = (rb_len - w) + (r - 1);
}
return space;