mirror of
https://github.com/vgmstream/vgmstream.git
synced 2024-11-14 10:37:38 +01:00
Use adpcm_history1_32 for consistency
This commit is contained in:
parent
57cd7c6029
commit
ac38e353df
@ -42,6 +42,6 @@ void decode_tgc(VGMSTREAMCHANNEL * stream, sample_t * outbuf, int32_t first_samp
|
||||
if (stream->adpcm_history1_32 > 32767)
|
||||
stream->adpcm_history1_32 = 32767;
|
||||
|
||||
outbuf[sample_count] = stream->adpcm_history1_16;
|
||||
outbuf[sample_count] = (sample_t)stream->adpcm_history1_32;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user