Minor rename

This commit is contained in:
bnnm 2017-08-19 15:59:29 +02:00
parent 1ffe7b71d5
commit 86b7b45c89
2 changed files with 2 additions and 2 deletions

View File

@ -160,7 +160,7 @@ void input_vgmstream::get_info(t_uint32 p_subsong, file_info & p_info, abort_cal
if (get_description_tag(temp,description,"block size: ")) p_info.info_set("block_size",temp);
if (get_description_tag(temp,description,"metadata from: ")) p_info.info_set("metadata_source",temp);
if (get_description_tag(temp,description,"stream number: ")) p_info.info_set("stream_number",temp);
if (get_description_tag(temp,description,"stream count: ")) p_info.info_set("stream_count",temp);
if (get_description_tag(temp,description,"stream index: ")) p_info.info_set("stream_index",temp);
if (get_description_tag(temp,description,"stream name: ")) p_info.info_set("stream_name",temp);
}

View File

@ -2065,7 +2065,7 @@ void describe_vgmstream(VGMSTREAM * vgmstream, char * desc, int length) {
/* only interesting if more than one */
if (vgmstream->num_streams > 1) {
snprintf(temp,TEMPSIZE,
"\nstream number: %d",
"\nstream count: %d",
vgmstream->num_streams);
concatn(length,desc,temp);
}