mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-04-27 12:31:54 +00:00
Bugfix for "Blue Mountain 0", "Green Hills K".
Also, minor tweak.
This commit is contained in:
parent
880587a740
commit
66092d76e7
2 changed files with 2 additions and 2 deletions
|
|
@ -770,7 +770,7 @@ static void ST_drawLevelTitle(void)
|
||||||
|
|
||||||
lvlw = V_LevelNameWidth(lvlttl);
|
lvlw = V_LevelNameWidth(lvlttl);
|
||||||
|
|
||||||
if (strlen(actnum) > 0)
|
if (actnum[0])
|
||||||
lvlttlxpos = ((BASEVIDWIDTH/2) - (lvlw/2)) - V_LevelNameWidth(actnum);
|
lvlttlxpos = ((BASEVIDWIDTH/2) - (lvlw/2)) - V_LevelNameWidth(actnum);
|
||||||
else
|
else
|
||||||
lvlttlxpos = ((BASEVIDWIDTH/2) - (lvlw/2));
|
lvlttlxpos = ((BASEVIDWIDTH/2) - (lvlw/2));
|
||||||
|
|
|
||||||
|
|
@ -1460,7 +1460,7 @@ void Y_StartVote(void)
|
||||||
snprintf(levelinfo[i].str,
|
snprintf(levelinfo[i].str,
|
||||||
sizeof levelinfo[i].str,
|
sizeof levelinfo[i].str,
|
||||||
"%s %s",
|
"%s %s",
|
||||||
mapheaderinfo[prevmap]->lvlttl, mapheaderinfo[votelevels[i][0]]->actnum);
|
mapheaderinfo[votelevels[i][0]]->lvlttl, mapheaderinfo[votelevels[i][0]]->actnum);
|
||||||
else
|
else
|
||||||
snprintf(levelinfo[i].str,
|
snprintf(levelinfo[i].str,
|
||||||
sizeof levelinfo[i].str,
|
sizeof levelinfo[i].str,
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue