mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-01-19 07:20:50 +00:00
[audio] Quieten jack about xruns
They messages are annoying at the moment, but I will want them when I get around to chasing down the root cause, so hidden behind a developer mask.
This commit is contained in:
parent
4a61ff0d35
commit
a9c6974fc7
1 changed files with 3 additions and 1 deletions
|
@ -306,7 +306,9 @@ snd_jack_error (const char *desc)
|
||||||
static int
|
static int
|
||||||
snd_jack_xrun (void *arg)
|
snd_jack_xrun (void *arg)
|
||||||
{
|
{
|
||||||
fprintf (stderr, "snd_jack: xrun\n");
|
if (developer->int_val & SYS_SND) {
|
||||||
|
fprintf (stderr, "snd_jack: xrun\n");
|
||||||
|
}
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue