diff --git a/source/games/duke/src/sbar.cpp b/source/games/duke/src/sbar.cpp index 0c824ac3b..d9da4e82f 100644 --- a/source/games/duke/src/sbar.cpp +++ b/source/games/duke/src/sbar.cpp @@ -48,7 +48,7 @@ BEGIN_DUKE_NS // //========================================================================== -void DrawBorder() +void UpdateFrame() { auto tex = tileGetTexture(TILE_SCREENBORDER); if (tex != nullptr && tex->isValid()) @@ -94,7 +94,10 @@ void DrawBorder() void DrawStatusBar() { - DrawBorder(); + if (hud_size <= Hud_Stbar) + { + UpdateFrame(); + } SummaryInfo info{};