mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2025-03-22 10:51:54 +00:00
Bugfix for "Blue Mountain 0", "Green Hills K".
Also, minor tweak.
This commit is contained in:
parent
9f107166f3
commit
b7f7da4f6c
2 changed files with 2 additions and 2 deletions
|
@ -770,7 +770,7 @@ static void ST_drawLevelTitle(void)
|
|||
|
||||
lvlw = V_LevelNameWidth(lvlttl);
|
||||
|
||||
if (strlen(actnum) > 0)
|
||||
if (actnum[0])
|
||||
lvlttlxpos = ((BASEVIDWIDTH/2) - (lvlw/2)) - V_LevelNameWidth(actnum);
|
||||
else
|
||||
lvlttlxpos = ((BASEVIDWIDTH/2) - (lvlw/2));
|
||||
|
|
|
@ -1460,7 +1460,7 @@ void Y_StartVote(void)
|
|||
snprintf(levelinfo[i].str,
|
||||
sizeof levelinfo[i].str,
|
||||
"%s %s",
|
||||
mapheaderinfo[prevmap]->lvlttl, mapheaderinfo[votelevels[i][0]]->actnum);
|
||||
mapheaderinfo[votelevels[i][0]]->lvlttl, mapheaderinfo[votelevels[i][0]]->actnum);
|
||||
else
|
||||
snprintf(levelinfo[i].str,
|
||||
sizeof levelinfo[i].str,
|
||||
|
|
Loading…
Reference in a new issue