mirror of
https://github.com/vgmstream/vgmstream.git
synced 2024-11-14 18:47:39 +01:00
Fix it so it compiles
This commit is contained in:
parent
4dcb647b67
commit
2ff56989b1
@ -3396,13 +3396,13 @@ int get_vgmstream_average_bitrate(VGMSTREAM * vgmstream)
|
||||
streamFile = get_vgmstream_streamfile(vgmstream, i);
|
||||
if (!streamFile)
|
||||
continue;
|
||||
ch->streamfile->get_name(streamFile, path_current, sizeof(path_current));
|
||||
streamFile->get_name(streamFile, path_current, sizeof(path_current));
|
||||
for (j = 0; j < i; ++j)
|
||||
{
|
||||
STREAMFILE * compareFile = get_vgmstream_streamfile(vgmstream, j);
|
||||
if (!compareFile)
|
||||
continue;
|
||||
chc->streamfile->get_name(compareFile, path_compare, sizeof(path_compare));
|
||||
streamFile->get_name(compareFile, path_compare, sizeof(path_compare));
|
||||
if (!strcmp(path_current, path_compare))
|
||||
break;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user