From 30da87d55bb21c5ffb6b52a06c6d68a32f5d9fb8 Mon Sep 17 00:00:00 2001 From: Mitchell Richters Date: Thu, 24 Jun 2021 20:56:20 +1000 Subject: [PATCH] - Exhumed: Fix level stat position on full HUD. * Fixes #429. --- wadsrc/static/zscript/games/exhumed/ui/sbar.zs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wadsrc/static/zscript/games/exhumed/ui/sbar.zs b/wadsrc/static/zscript/games/exhumed/ui/sbar.zs index 5bbc32eb6..20bad89ae 100644 --- a/wadsrc/static/zscript/games/exhumed/ui/sbar.zs +++ b/wadsrc/static/zscript/games/exhumed/ui/sbar.zs @@ -785,6 +785,6 @@ class ExhumedStatusBar : RazeStatusBar { DrawStatus(Exhumed.GetViewPlayer()); } - DoLevelStats(hud_size == Hud_Nothing ? 0 : hud_size == Hud_full ? 22 : 40, info); + DoLevelStats(hud_size == Hud_Nothing ? 0 : hud_size == Hud_full ? 20 : 45, info); } }