mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-02-07 08:52:01 +00:00
Merge branch 'timerfix' into 'master'
Timerres fix Closes #213 See merge request STJr/SRB2Internal!338
This commit is contained in:
commit
d59c02fc0b
1 changed files with 2 additions and 3 deletions
|
@ -261,7 +261,7 @@ void Y_IntermissionDrawer(void)
|
||||||
|
|
||||||
// draw time
|
// draw time
|
||||||
ST_DrawPatchFromHud(HUD_TIME, sbotime);
|
ST_DrawPatchFromHud(HUD_TIME, sbotime);
|
||||||
if (cv_timetic.value == 1)
|
if (cv_timetic.value == 3)
|
||||||
ST_DrawNumFromHud(HUD_SECONDS, data.coop.tics);
|
ST_DrawNumFromHud(HUD_SECONDS, data.coop.tics);
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
@ -275,8 +275,7 @@ void Y_IntermissionDrawer(void)
|
||||||
ST_DrawPatchFromHud(HUD_TIMECOLON, sbocolon); // Colon
|
ST_DrawPatchFromHud(HUD_TIMECOLON, sbocolon); // Colon
|
||||||
ST_DrawPadNumFromHud(HUD_SECONDS, seconds, 2); // Seconds
|
ST_DrawPadNumFromHud(HUD_SECONDS, seconds, 2); // Seconds
|
||||||
|
|
||||||
// we should show centiseconds on the intermission screen too, if the conditions are right.
|
if (cv_timetic.value == 1 || cv_timetic.value == 2 || modeattacking) // there's not enough room for tics in splitscreen, don't even bother trying!
|
||||||
if (modeattacking || cv_timetic.value == 2)
|
|
||||||
{
|
{
|
||||||
ST_DrawPatchFromHud(HUD_TIMETICCOLON, sboperiod); // Period
|
ST_DrawPatchFromHud(HUD_TIMETICCOLON, sboperiod); // Period
|
||||||
ST_DrawPadNumFromHud(HUD_TICS, tictrn, 2); // Tics
|
ST_DrawPadNumFromHud(HUD_TICS, tictrn, 2); // Tics
|
||||||
|
|
Loading…
Reference in a new issue