Skip to content

Commit

Permalink
Fix see-through areas of hud background frame
Browse files Browse the repository at this point in the history
  • Loading branch information
ethanmoffat committed Mar 20, 2022
1 parent c9ef10c commit 60a6232
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions EndlessClient/HUD/Controls/HudBackgroundFrame.cs
Expand Up @@ -40,6 +40,8 @@ protected override void OnDrawControl(GameTime gameTime)
{
_spriteBatch.Begin();

_spriteBatch.Draw(_filler, new Rectangle(0, 400, 640, 80), Color.White);

_spriteBatch.Draw(_topBar, new Vector2(49, 7), Color.White);
_spriteBatch.Draw(_mainFrame, Vector2.Zero, Color.White);
_spriteBatch.Draw(_topLeft, Vector2.Zero, Color.White);
Expand Down

0 comments on commit 60a6232

Please sign in to comment.