mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-10 23:01:50 +00:00
- removed alpha parameter from BaseStatusBar.DrawBar because this cannot be used with this function.
This commit is contained in:
parent
b5f87aa86f
commit
1852079142
1 changed files with 1 additions and 1 deletions
|
@ -969,7 +969,7 @@ class BaseStatusBar native ui
|
||||||
//
|
//
|
||||||
//============================================================================
|
//============================================================================
|
||||||
|
|
||||||
void DrawBar(String ongfx, String offgfx, double curval, double maxval, Vector2 position, int border, int vertical, int flags = 0, double alpha = 1.)
|
void DrawBar(String ongfx, String offgfx, double curval, double maxval, Vector2 position, int border, int vertical, int flags = 0)
|
||||||
{
|
{
|
||||||
let ontex = TexMan.CheckForTexture(ongfx, TexMan.TYPE_MiscPatch);
|
let ontex = TexMan.CheckForTexture(ongfx, TexMan.TYPE_MiscPatch);
|
||||||
if (!ontex.IsValid()) return;
|
if (!ontex.IsValid()) return;
|
||||||
|
|
Loading…
Reference in a new issue