mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-10 06:42:12 +00:00
- fixed: strife conversations do not need to unnecessarily trigger the switch to 640x400
This commit is contained in:
parent
4ff8922006
commit
9ad628f6e5
1 changed files with 4 additions and 1 deletions
|
@ -105,7 +105,10 @@ namespace
|
|||
// minimum set in GZDoom 4.0.0, but only while those fonts are required.
|
||||
|
||||
static bool lastspecialUI = false;
|
||||
bool specialUI = (generic_ui || !!log_vgafont || !!dlg_vgafont || menuactive == MENU_On || ConsoleState != c_up);
|
||||
bool isInActualMenu = false;
|
||||
|
||||
bool specialUI = (generic_ui || !!log_vgafont || !!dlg_vgafont || ConsoleState != c_up ||
|
||||
(menuactive == MENU_On && CurrentMenu && !CurrentMenu->IsKindOf("ConversationMenu")));
|
||||
|
||||
if (specialUI == lastspecialUI)
|
||||
return;
|
||||
|
|
Loading…
Reference in a new issue