mirror of
https://github.com/vgmstream/vgmstream.git
synced 2025-01-17 23:36:41 +01:00
Print BKHD wwise id as unsigned for clarity
printf'ing an unsigned value as signed (%i) still gives unsigned result, as does a signed value as unsigned (%u), maybe implementation-defined though
This commit is contained in:
parent
5743f42e22
commit
faf6def4fe
@ -50,7 +50,7 @@ VGMSTREAM* init_vgmstream_bkhd(STREAMFILE* sf) {
|
||||
if (!vgmstream) goto fail;
|
||||
|
||||
vgmstream->num_streams = total_subsongs;
|
||||
snprintf(vgmstream->stream_name, STREAM_NAME_SIZE, "%i", subfile_id);
|
||||
snprintf(vgmstream->stream_name, STREAM_NAME_SIZE, "%u", subfile_id);
|
||||
|
||||
close_streamfile(temp_sf);
|
||||
return vgmstream;
|
||||
|
Loading…
x
Reference in New Issue
Block a user