From 5d9c5c4ff7f630e7e34f8eff84c277f56c247956 Mon Sep 17 00:00:00 2001 From: bnnm Date: Sat, 24 Mar 2018 19:30:35 +0100 Subject: [PATCH] Adjust interleave last block description --- fb2k/foo_vgmstream.cpp | 2 +- src/vgmstream.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/fb2k/foo_vgmstream.cpp b/fb2k/foo_vgmstream.cpp index 76479ecc..97e43fdf 100644 --- a/fb2k/foo_vgmstream.cpp +++ b/fb2k/foo_vgmstream.cpp @@ -154,7 +154,7 @@ void input_vgmstream::get_info(t_uint32 p_subsong, file_info & p_info, abort_cal if (get_description_tag(temp,description,"encoding: ")) p_info.info_set("codec",temp); if (get_description_tag(temp,description,"layout: ")) p_info.info_set("layout",temp); if (get_description_tag(temp,description,"interleave: ",' ')) p_info.info_set("interleave",temp); - if (get_description_tag(temp,description,"last block interleave:",' ')) p_info.info_set("interleave_last_block",temp); + if (get_description_tag(temp,description,"interleave last block:",' ')) p_info.info_set("interleave_last_block",temp); 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); diff --git a/src/vgmstream.c b/src/vgmstream.c index 922fc82d..4b6672bd 100644 --- a/src/vgmstream.c +++ b/src/vgmstream.c @@ -2147,7 +2147,7 @@ void describe_vgmstream(VGMSTREAM * vgmstream, char * desc, int length) { if (vgmstream->interleave_last_block_size) { snprintf(temp,TEMPSIZE, - "last block interleave: %#x bytes\n", + "interleave last block: %#x bytes\n", (int32_t)vgmstream->interleave_last_block_size); concatn(length,desc,temp); }