mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-26 22:31:05 +00:00
[sound] Initialize snd_alive_time on connection to JACK
Sys_DoubleTime starts at 4Gs in order to keep its precision fixed for a nice long time (about 120 years, iirc). This fixes an instant watchdog trigger when first starting up in testsound. I'm not sure why it didn't happen with nq, but I guess that doesn't really matter
This commit is contained in:
parent
56cd0f3f1d
commit
cbc5654b5e
1 changed files with 1 additions and 0 deletions
|
@ -269,6 +269,7 @@ s_jack_connect (snd_t *snd)
|
||||||
snd->channels = 2;
|
snd->channels = 2;
|
||||||
s_jack_activate ();
|
s_jack_activate ();
|
||||||
sound_started = 1;
|
sound_started = 1;
|
||||||
|
snd_alive_time = Sys_DoubleTime ();
|
||||||
Sys_Printf ("Connected to JACK: %d Sps\n", snd->speed);
|
Sys_Printf ("Connected to JACK: %d Sps\n", snd->speed);
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue