mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-01-18 07:22:28 +00:00
I meant to extend this to 4 seconds but forgot
This commit is contained in:
parent
690b65b47f
commit
fc8e7728cd
1 changed files with 2 additions and 2 deletions
|
@ -755,7 +755,7 @@ void Y_Ticker(void)
|
||||||
{
|
{
|
||||||
if (intertic > tallydonetic)
|
if (intertic > tallydonetic)
|
||||||
{
|
{
|
||||||
endtic = intertic + 4*TICRATE; // 4 second pause after end of tally for sound
|
endtic = intertic + 4*TICRATE; // 4 second pause after end of tally
|
||||||
S_StartSound(NULL, sfx_flgcap); // cha-ching!
|
S_StartSound(NULL, sfx_flgcap); // cha-ching!
|
||||||
}
|
}
|
||||||
return;
|
return;
|
||||||
|
@ -775,7 +775,7 @@ void Y_Ticker(void)
|
||||||
if (data.spec.continues & 0x80) // don't set endtic yet!
|
if (data.spec.continues & 0x80) // don't set endtic yet!
|
||||||
tallydonetic = intertic + (3*TICRATE)/2;
|
tallydonetic = intertic + (3*TICRATE)/2;
|
||||||
else // okay we're good.
|
else // okay we're good.
|
||||||
endtic = intertic + 3*TICRATE; // 3 second pause after end of tally
|
endtic = intertic + 4*TICRATE; // 4 second pause after end of tally
|
||||||
|
|
||||||
S_StartSound(NULL, sfx_chchng); // cha-ching!
|
S_StartSound(NULL, sfx_chchng); // cha-ching!
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue