mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-14 08:31:23 +00:00
- Fixed: The background on some bars was cliped incorrectly.
SVN r3065 (trunk)
This commit is contained in:
parent
fb7a45efe4
commit
bada44a291
1 changed files with 1 additions and 1 deletions
|
@ -1190,7 +1190,7 @@ public:
|
||||||
}
|
}
|
||||||
|
|
||||||
if(clearDontDraw)
|
if(clearDontDraw)
|
||||||
screen->Clear(static_cast<int>(MAX<double>(dx, dcx)), static_cast<int>(MAX<double>(dy, dcy)), static_cast<int>(dcr), static_cast<int>(dcb), GPalette.BlackIndex, 0);
|
screen->Clear(static_cast<int>(MAX<double>(dx, dcx)), static_cast<int>(MAX<double>(dy, dcy)), static_cast<int>(MIN<double>(dcr,w+MAX<double>(dx, dcx))), static_cast<int>(MIN<double>(dcb,MAX<double>(dy, dcy)+h)), GPalette.BlackIndex, 0);
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
if(alphaMap)
|
if(alphaMap)
|
||||||
|
|
Loading…
Reference in a new issue