mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-14 08:31:23 +00:00
- fixed: moved blur before and outside of menu dimming code.
This commit is contained in:
parent
b747b0c3c6
commit
f6d9d153b1
1 changed files with 2 additions and 2 deletions
|
@ -778,11 +778,11 @@ void M_Drawer (void)
|
||||||
|
|
||||||
if (CurrentMenu != nullptr && menuactive != MENU_Off)
|
if (CurrentMenu != nullptr && menuactive != MENU_Off)
|
||||||
{
|
{
|
||||||
|
if (GLRenderer)
|
||||||
|
GLRenderer->BlurScene(gameinfo.bluramount);
|
||||||
if (!CurrentMenu->DontDim)
|
if (!CurrentMenu->DontDim)
|
||||||
{
|
{
|
||||||
screen->Dim(fade);
|
screen->Dim(fade);
|
||||||
if (GLRenderer)
|
|
||||||
GLRenderer->BlurScene(gameinfo.bluramount);
|
|
||||||
V_SetBorderNeedRefresh();
|
V_SetBorderNeedRefresh();
|
||||||
}
|
}
|
||||||
CurrentMenu->CallDrawer();
|
CurrentMenu->CallDrawer();
|
||||||
|
|
Loading…
Reference in a new issue