mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-02-18 09:51:40 +00:00
don't print the filename and only print the CUEPOINT if there is one
This commit is contained in:
parent
fc9b734d6b
commit
5d14e327aa
1 changed files with 2 additions and 1 deletions
|
@ -386,7 +386,8 @@ main (int argc, char **argv)
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
printf ("%s: CUEPOINT=%d %d\n", *argv, sample_start, sample_count);
|
if (sample_start!= -1)
|
||||||
|
printf ("CUEPOINT=%d %d\n", sample_start, sample_count);
|
||||||
}
|
}
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue