From 3ba051c5ba4a83c7476ac3d84c15d71cafbf82b8 Mon Sep 17 00:00:00 2001 From: Claudio Matsuoka Date: Tue, 14 Feb 2012 19:48:45 -0200 Subject: [PATCH] [xmp] Minor information changes Signed-off-by: Claudio Matsuoka --- src/info.c | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/info.c b/src/info.c index 3cd9719..ef07271 100644 --- a/src/info.c +++ b/src/info.c @@ -26,20 +26,20 @@ void info_mod(struct xmp_module_info *mi) { int i; - printf("Module name : %s\n", mi->mod->name); - printf("Module type : %s\n", mi->mod->type); - printf("Module length : %d patterns\n", mi->mod->len); - printf("Stored patterns: %d\n", mi->mod->pat); - printf("Instruments : %d\n", mi->mod->ins); - printf("Samples : %d\n", mi->mod->smp); - printf("Channels : %d [ ", mi->mod->chn); + printf("Module name : %s\n", mi->mod->name); + printf("Module type : %s\n", mi->mod->type); + printf("Module length: %d patterns\n", mi->mod->len); + printf("Patterns : %d\n", mi->mod->pat); + printf("Instruments : %d\n", mi->mod->ins); + printf("Samples : %d\n", mi->mod->smp); + printf("Channels : %d [ ", mi->mod->chn); for (i = 0; i < mi->mod->chn; i++) { printf("%x ", mi->mod->xxc[i].pan >> 4); } printf("]\n"); - printf("Estimated time : %dmin%ds\n", (mi->total_time + 500) / 60000, + printf("Duration : %dmin%ds\n", (mi->total_time + 500) / 60000, ((mi->total_time + 500) / 1000) % 60); }