mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-26 14:20:59 +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;
|
||||
}
|
||||
}
|
||||
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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue