KAT: Fixed PCM8 (should be signed)

This commit is contained in:
NicknineTheEagle 2020-06-05 14:31:10 +03:00
parent 9be522ab5b
commit b451c6e667

View File

@ -59,7 +59,7 @@ VGMSTREAM *init_vgmstream_kat(STREAMFILE *sf) {
vgmstream->num_samples = yamaha_bytes_to_samples(data_size, channels);
break;
case 8:
vgmstream->coding_type = coding_PCM8_U;
vgmstream->coding_type = coding_PCM8;
vgmstream->layout_type = layout_none;
vgmstream->num_samples = pcm_bytes_to_samples(data_size, channels, 8);
break;