- Duke: Make screen backdrop setup the same as the other games.

This commit is contained in:
Mitchell Richters 2023-01-13 11:06:42 +11:00
parent 7f1add4786
commit 62c6131901

View file

@ -48,7 +48,7 @@ BEGIN_DUKE_NS
// //
//========================================================================== //==========================================================================
void DrawBorder() void UpdateFrame()
{ {
auto tex = tileGetTexture(TILE_SCREENBORDER); auto tex = tileGetTexture(TILE_SCREENBORDER);
if (tex != nullptr && tex->isValid()) if (tex != nullptr && tex->isValid())
@ -94,7 +94,10 @@ void DrawBorder()
void DrawStatusBar() void DrawStatusBar()
{ {
DrawBorder(); if (hud_size <= Hud_Stbar)
{
UpdateFrame();
}
SummaryInfo info{}; SummaryInfo info{};