mirror of
https://github.com/fabiangreffrath/woof.git
synced 2025-09-24 04:29:34 -04:00
fix misleading indentation in level title initialization
This commit is contained in:
parent
b67f73a1b4
commit
009f9a4b45
@ -670,13 +670,14 @@ void HU_Start(void)
|
||||
}
|
||||
s = gamemapinfo->levelname;
|
||||
}
|
||||
else
|
||||
if (gamestate == GS_LEVEL)
|
||||
else if (gamestate == GS_LEVEL)
|
||||
{
|
||||
if (VANILLAMAP(gameepisode, gamemap))
|
||||
{
|
||||
s = gamemode != commercial ? HU_TITLE : gamemission == pack_tnt ?
|
||||
HU_TITLET : gamemission == pack_plut ? HU_TITLEP : HU_TITLE2;
|
||||
s = (gamemode != commercial) ? HU_TITLE :
|
||||
(gamemission == pack_tnt) ? HU_TITLET :
|
||||
(gamemission == pack_plut) ? HU_TITLEP :
|
||||
HU_TITLE2;
|
||||
}
|
||||
else
|
||||
{
|
||||
@ -685,7 +686,7 @@ void HU_Start(void)
|
||||
}
|
||||
}
|
||||
else
|
||||
s = "";
|
||||
s = "";
|
||||
|
||||
while (*s && *s != '\n') // [FG] cap at line break
|
||||
HUlib_addCharToTextLine(&w_title, *s++);
|
||||
|
Loading…
x
Reference in New Issue
Block a user