mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-01-03 13:42:31 +00:00
Allow Skipping through the Sega Logo Faster
This commit is contained in:
parent
161d375532
commit
83c420f512
1 changed files with 11 additions and 3 deletions
|
|
@ -855,8 +855,8 @@ void F_IntroTicker(void)
|
|||
const boolean disclaimerskippable =
|
||||
(
|
||||
intro_scenenum == INTROSCENE_DISCLAIMER
|
||||
&& dc_state == DISCLAIMER_FINAL
|
||||
&& dc_tics >= (TICRATE/2) + (5*6) // bottom text needs to fade all the way in
|
||||
&& (dc_state < DISCLAIMER_SLIDE
|
||||
|| (dc_state == DISCLAIMER_FINAL && dc_textfade == 0)) // bottom text needs to fade all the way in
|
||||
);
|
||||
const boolean doskip =
|
||||
(
|
||||
|
|
@ -874,7 +874,15 @@ void F_IntroTicker(void)
|
|||
|
||||
if (doskip && disclaimerskippable)
|
||||
{
|
||||
dc_state = DISCLAIMER_OUT;
|
||||
if (dc_state == DISCLAIMER_FINAL) {
|
||||
dc_state = DISCLAIMER_OUT;
|
||||
I_FadeOutStopSong(MUSICRATE*2/3);
|
||||
} else {
|
||||
if (dc_state <= DISCLAIMER_FADE)
|
||||
Music_Play("lawyer");
|
||||
dc_state = DISCLAIMER_SLIDE;
|
||||
dc_segaframe = 23;
|
||||
}
|
||||
dc_tics = 0;
|
||||
}
|
||||
else if (doskip || timetonext <= 0)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue