mirror of
https://github.com/vgmstream/vgmstream.git
synced 2025-01-17 23:36:41 +01:00
Fix typo
This commit is contained in:
parent
50bf81d269
commit
9600e5f7d1
@ -25,7 +25,7 @@ VGMSTREAM * init_vgmstream_bcstm(STREAMFILE *streamFile) {
|
||||
/* check header */
|
||||
if ((uint32_t)read_32bitBE(0, streamFile) != 0x4353544D) /* "CSTM" */
|
||||
goto fail;
|
||||
if ((uint32_t)read_16bitLE(4, streamFile) != 0xFEFF)
|
||||
if ((uint16_t)read_16bitLE(4, streamFile) != 0xFEFF)
|
||||
goto fail;
|
||||
|
||||
int section_count = read_16bitLE(0x10, streamFile);
|
||||
|
Loading…
x
Reference in New Issue
Block a user