فهرست منبع

Update servers/audio/audio_rb_resampler.h

Co-authored-by: K. S. Ernest (iFire) Lee <[email protected]>
Bernat 8 ماه پیش
والد
کامیت
5b67dda1ad
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  1. 1 1
      servers/audio/audio_rb_resampler.h

+ 1 - 1
servers/audio/audio_rb_resampler.h

@@ -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;