Menu-FN: Only run the drawfill() command when the engine requests an opaque loading screen.

This commit is contained in:
Marco Cawthorne 2024-03-22 15:39:05 -07:00
parent 33d7c3cc50
commit 4b35d47522
Signed by: eukara
GPG Key ID: CE2032F0A2882A22
1 changed files with 5 additions and 1 deletions

View File

@ -337,7 +337,11 @@ m_drawloading(vector screensize, float opaque)
{
vector pos;
pos = (screensize / 2) - [32,32];
drawfill([0,0], screensize, [0.5,0.5,0.5], 1.0f);
if (opaque) {
drawfill([0,0], screensize, [0.25,0.25,0.25], 1.0f);
}
drawpic(pos, "gfx/loading", [64,64], [1,1,1], 1.0f);
}