mirror of
https://github.com/ZDoom/Raze.git
synced 2025-01-19 07:01:09 +00:00
- Duke: Make screen backdrop setup the same as the other games.
This commit is contained in:
parent
7f1add4786
commit
62c6131901
1 changed files with 5 additions and 2 deletions
|
@ -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{};
|
||||
|
||||
|
|
Loading…
Reference in a new issue