Line not actually useless, future-proofing in case of reordering

This commit is contained in:
Simon Aarons 2020-08-16 22:55:23 +10:00 committed by GitHub
parent 18d461bc36
commit 57cd7c6029
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -16,6 +16,7 @@ VGMSTREAM * init_vgmstream_tgc(STREAMFILE *streamFile) {
vgmstream->sample_rate = 8000;
vgmstream->num_samples = ((uint16_t)read_16bitBE(1, streamFile) - 3) * 2;
vgmstream->meta_type = meta_TGC;
vgmstream->layout_type = layout_none;
vgmstream->coding_type = coding_TGC;
if (!vgmstream_open_stream(vgmstream, streamFile, 3))