mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-11 07:11:54 +00:00
- fixed: D3DFB::DoClear did not call Super::DoClear when vid_hw2d was false.
This commit is contained in:
parent
446d1eb9c8
commit
78061f1cf7
1 changed files with 1 additions and 1 deletions
|
@ -2638,7 +2638,7 @@ void D3DFB::DoClear (int left, int top, int right, int bottom, int palcolor, uin
|
||||||
{
|
{
|
||||||
if (In2D < 2)
|
if (In2D < 2)
|
||||||
{
|
{
|
||||||
//Super::Clear(left, top, right, bottom, palcolor, color);
|
Super::DoClear(left, top, right, bottom, palcolor, color);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (!InScene)
|
if (!InScene)
|
||||||
|
|
Loading…
Reference in a new issue