TINSEL: fixed compilation error

This commit is contained in:
Martin Gerhardy 2021-03-27 19:18:40 +01:00
parent 7440778d4c
commit 4b4aef790f

View File

@ -51,7 +51,7 @@ void Tinsel_ADPCMStream::readBufferTinselHeader() {
// Truncate
start &= 0x1F;
_status.predictor = ((double) 1.0) / ((uuint64)1 << start);
_status.predictor = ((double) 1.0) / ((uint64)1 << start);
}
_status.K0 = TinselFilterTable[filterVal][0];