Remove unused value warning

This commit is contained in:
bnnm 2018-10-27 23:49:52 +02:00
parent 466f3af458
commit 7259bcc0f2

View File

@ -1,15 +1,13 @@
#include "meta.h"
#include "../coding/coding.h"
/* VA3 - Konami / Sont Atrac3 Container */
/* PS2 DDR Supernova 2 Arcade */
/* VA3 - Konami / Sony Atrac3 Container [PS2 DDR Supernova 2 Arcade] */
VGMSTREAM * init_vgmstream_va3(STREAMFILE *streamFile) {
VGMSTREAM * vgmstream = NULL;
off_t start_offset;
int loop_flag, channel_count;
uint32_t data_size, loop_start, loop_end, codec_id;
uint32_t data_size, loop_start, loop_end;
/* check extension, case insensitive */
if (!check_extensions(streamFile, "va3"))