mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-01-30 20:50:42 +00:00
print noisy reminder to fix resampler
This commit is contained in:
parent
988898ca4a
commit
03e5ae136e
1 changed files with 4 additions and 0 deletions
|
@ -180,6 +180,10 @@ s_init (void)
|
|||
snd_shm->speed = jack_get_sample_rate (jack_handle);
|
||||
s_jack_activate ();
|
||||
Sys_Printf ("Connected to JACK: %d Sps\n", snd_shm->speed);
|
||||
if (snd_shm->speed > 44100) {
|
||||
Sys_Printf ("FIXME clamping Sps to 44100 until resampling is fixed\n");
|
||||
snd_shm->speed = 44100;
|
||||
}
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
Loading…
Reference in a new issue