AUDIO: Fix Mod sound looping

This commit is contained in:
Eugene Sandulenko 2021-05-13 15:35:40 +02:00
parent cfaa0fd4be
commit a332688ae6
No known key found for this signature in database
GPG Key ID: 014D387312D34F08

View File

@ -121,7 +121,7 @@ private:
int tick();
void updateRow();
int seek(int samplePos);
bool rewind() override { setSequencePos(0); return true; }
bool rewind() override { setSequencePos(0); _dataLeft = _initialDataLength; return true; }
// Sample
void downsample(int *buf, int count);