summaryrefslogtreecommitdiff
path: root/apps/plugins/mikmod/virtch_common.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/mikmod/virtch_common.c')
-rw-r--r--apps/plugins/mikmod/virtch_common.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/plugins/mikmod/virtch_common.c b/apps/plugins/mikmod/virtch_common.c
index 522f4509f0..e13f6d1c51 100644
--- a/apps/plugins/mikmod/virtch_common.c
+++ b/apps/plugins/mikmod/virtch_common.c
@@ -416,11 +416,13 @@ SWORD VC1_SampleLoad(struct SAMPLOAD* sload,int type)
416 416
417ULONG VC1_SampleSpace(int type) 417ULONG VC1_SampleSpace(int type)
418{ 418{
419 (void)type;
419 return vc_memory; 420 return vc_memory;
420} 421}
421 422
422ULONG VC1_SampleLength(int type,SAMPLE* s) 423ULONG VC1_SampleLength(int type,SAMPLE* s)
423{ 424{
425 (void)type;
424 if (!s) return 0; 426 if (!s) return 0;
425 427
426 return (s->length*((s->flags&SF_16BITS)?2:1))+16; 428 return (s->length*((s->flags&SF_16BITS)?2:1))+16;