mirror of
https://git.suyu.dev/suyu/suyu
synced 2026-05-11 23:35:44 +00:00
Fix a bug with the Reverb command in reading from the pre_delay line.
This commit is contained in:
@@ -104,7 +104,8 @@ public:
|
||||
}
|
||||
|
||||
void Write(const Common::FixedPoint<50, 14> sample) {
|
||||
*(input++) = sample;
|
||||
*input = sample;
|
||||
input++;
|
||||
if (input >= buffer_end) {
|
||||
input = buffer.data();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user