mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-10 14:51:51 +00:00
Display own and total in coop alt hud
This commit is contained in:
parent
0868f65199
commit
90f40bd8eb
1 changed files with 9 additions and 5 deletions
|
@ -184,21 +184,25 @@ class AltHud ui
|
||||||
|
|
||||||
if (!deathmatch)
|
if (!deathmatch)
|
||||||
{
|
{
|
||||||
// FIXME: ZDoom doesn't preserve the player's stat counters across hubs so this doesn't
|
|
||||||
// work in cooperative hub games
|
|
||||||
if (hud_showsecrets)
|
if (hud_showsecrets)
|
||||||
{
|
{
|
||||||
DrawStatLine(x, y, "S:", String.Format("%i/%i ", multiplayer? CPlayer.secretcount : Level.found_secrets, Level.total_secrets));
|
DrawStatLine(x, y, "S:", multiplayer
|
||||||
|
? String.Format("%i/%i/%i ", CPlayer.secretcount, Level.found_secrets, Level.total_secrets)
|
||||||
|
: String.Format("%i/%i ", Level.found_secrets, Level.total_secrets));
|
||||||
}
|
}
|
||||||
|
|
||||||
if (hud_showitems)
|
if (hud_showitems)
|
||||||
{
|
{
|
||||||
DrawStatLine(x, y, "I:", String.Format("%i/%i ", multiplayer? CPlayer.itemcount : Level.found_items, Level.total_items));
|
DrawStatLine(x, y, "I:", multiplayer
|
||||||
|
? String.Format("%i/%i/%i ", CPlayer.itemcount, Level.found_items, Level.total_items)
|
||||||
|
: String.Format("%i/%i ", Level.found_items, Level.total_items));
|
||||||
}
|
}
|
||||||
|
|
||||||
if (hud_showmonsters)
|
if (hud_showmonsters)
|
||||||
{
|
{
|
||||||
DrawStatLine(x, y, "K:", String.Format("%i/%i ", multiplayer? CPlayer.killcount : Level.killed_monsters, Level.total_monsters));
|
DrawStatLine(x, y, "K:", multiplayer
|
||||||
|
? String.Format("%i/%i/%i ", CPlayer.killcount, Level.killed_monsters, Level.total_monsters)
|
||||||
|
: String.Format("%i/%i ", Level.killed_monsters, Level.total_monsters));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue