mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-10 06:41:41 +00:00
- allow switching the Strife conversation screen to the VGA font for all languages by a CVAR.
This is for readability purposes because the styled SmallFont may be problematic for some players.
This commit is contained in:
parent
495f2d9c82
commit
86d2742798
2 changed files with 2 additions and 1 deletions
|
@ -70,6 +70,7 @@ static bool DrawConversationMenu ();
|
|||
static void PickConversationReply (int replyindex);
|
||||
static void TerminalResponse (const char *str);
|
||||
|
||||
CVAR(Bool, dlg_vgafont, false, CVAR_ARCHIVE)
|
||||
|
||||
//============================================================================
|
||||
//
|
||||
|
|
|
@ -112,7 +112,7 @@ class ConversationMenu : Menu
|
|||
mShowGold = false;
|
||||
ConversationPauseTic = gametic + 20;
|
||||
DontDim = true;
|
||||
if (!generic_ui)
|
||||
if (!generic_ui && !dlg_vgafont)
|
||||
{
|
||||
displayFont = SmallFont;
|
||||
displayWidth = CleanWidth;
|
||||
|
|
Loading…
Reference in a new issue