mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-11 07:11:54 +00:00
- due to issues with chat, scoreboard, and the stat screen, disable 320x200 in multiplayer for now
This commit is contained in:
parent
d4ac797602
commit
f398819ce3
1 changed files with 2 additions and 3 deletions
|
@ -42,8 +42,7 @@
|
|||
|
||||
#define NUMSCALEMODES countof(vScaleTable)
|
||||
|
||||
extern bool setsizeneeded;
|
||||
extern bool generic_ui;
|
||||
extern bool setsizeneeded, multiplayer, generic_ui;
|
||||
|
||||
EXTERN_CVAR(Int, vid_aspect)
|
||||
|
||||
|
@ -109,7 +108,7 @@ namespace
|
|||
static bool lastspecialUI = false;
|
||||
bool isInActualMenu = false;
|
||||
|
||||
bool specialUI = (generic_ui || !!log_vgafont || !!dlg_vgafont || ConsoleState != c_up ||
|
||||
bool specialUI = (generic_ui || !!log_vgafont || !!dlg_vgafont || ConsoleState != c_up || multiplayer ||
|
||||
(menuactive == MENU_On && CurrentMenu && !CurrentMenu->IsKindOf("ConversationMenu")));
|
||||
|
||||
if (specialUI == lastspecialUI)
|
||||
|
|
Loading…
Reference in a new issue