I meant to extend this to 4 seconds but forgot

This commit is contained in:
Inuyasha 2016-03-31 06:57:11 -07:00
parent 690b65b47f
commit fc8e7728cd
1 changed files with 2 additions and 2 deletions

View File

@ -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!