mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-03-21 18:32:08 +00:00
Merge branch 'introskiptext' into 'master'
Add "Press ENTER to skip..." text to the intro's first scene See merge request STJr/SRB2Internal!619
This commit is contained in:
commit
a0ebb32912
1 changed files with 7 additions and 0 deletions
|
@ -892,6 +892,13 @@ static void F_IntroDrawScene(void)
|
|||
V_DrawFixedPatch(x, y, scale, trans<<V_ALPHASHIFT, rockpat, R_GetTranslationColormap(TC_BLINK, SKINCOLOR_AQUA, GTC_CACHE));
|
||||
}
|
||||
}
|
||||
else if (intro_scenenum == 1 && intro_curtime < 5*TICRATE)
|
||||
{
|
||||
INT32 trans = intro_curtime + 10 - (5*TICRATE);
|
||||
if (trans < 0)
|
||||
trans = 0;
|
||||
V_DrawRightAlignedString(BASEVIDWIDTH-4, BASEVIDHEIGHT-12, V_ALLOWLOWERCASE|(trans<<V_ALPHASHIFT), "\x86""Press ""\x82""ENTER""\x86"" to skip...");
|
||||
}
|
||||
|
||||
if (animtimer)
|
||||
animtimer--;
|
||||
|
|
Loading…
Reference in a new issue