mirror of
https://github.com/ZDoom/Raze.git
synced 2024-11-15 17:01:28 +00:00
- The bonus screen's counter is a bit broken so help it to actually play Duke's speech.
(Hopefully) fixes #44
This commit is contained in:
parent
371a808d9e
commit
94b445db26
1 changed files with 5 additions and 1 deletions
|
@ -910,7 +910,7 @@ public:
|
|||
switch ((totalclock >> 4) % 15)
|
||||
{
|
||||
case 0:
|
||||
if (bonuscnt == 6)
|
||||
if (bonuscnt = 6)
|
||||
{
|
||||
bonuscnt++;
|
||||
S_PlaySound(SHOTGUN_COCK, CHAN_AUTO, CHANF_UI);
|
||||
|
@ -953,7 +953,11 @@ public:
|
|||
SetTotalClock(60 * 13);
|
||||
}
|
||||
else if (totalclock < (1000000000))
|
||||
{
|
||||
// force-set bonuscnt here so that it won't desync with the rest of the logic and Duke's voice can be heard.
|
||||
bonuscnt = 6;
|
||||
SetTotalClock(1000000000);
|
||||
}
|
||||
}
|
||||
|
||||
return 1;
|
||||
|
|
Loading…
Reference in a new issue