mirror of
https://github.com/ZDoom/gzdoom.git
synced 2025-02-16 17:21:10 +00:00
- fixed menu caption for languages which use the VGA font.
This commit is contained in:
parent
b8ba606b08
commit
2a329950f6
1 changed files with 8 additions and 6 deletions
|
@ -225,9 +225,10 @@ class OptionMenu : Menu
|
||||||
|
|
||||||
if (y <= 0)
|
if (y <= 0)
|
||||||
{
|
{
|
||||||
if (mDesc.mFont && mDesc.mTitle.Length() > 0)
|
let font = generic_ui || !mDesc.mFont? NewSmallFont : mDesc.mFont;
|
||||||
|
if (font && mDesc.mTitle.Length() > 0)
|
||||||
{
|
{
|
||||||
y = -y + mDesc.mFont.GetHeight();
|
y = -y + font.GetHeight();
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
@ -422,13 +423,14 @@ class OptionMenu : Menu
|
||||||
|
|
||||||
if (y <= 0)
|
if (y <= 0)
|
||||||
{
|
{
|
||||||
if (mDesc.mFont && mDesc.mTitle.Length() > 0)
|
let font = generic_ui || !mDesc.mFont? NewSmallFont : mDesc.mFont;
|
||||||
|
if (font && mDesc.mTitle.Length() > 0)
|
||||||
{
|
{
|
||||||
let tt = Stringtable.Localize(mDesc.mTitle);
|
let tt = Stringtable.Localize(mDesc.mTitle);
|
||||||
screen.DrawText (mDesc.mFont, OptionMenuSettings.mTitleColor,
|
screen.DrawText (font, OptionMenuSettings.mTitleColor,
|
||||||
(screen.GetWidth() - mDesc.mFont.StringWidth(tt) * CleanXfac_1) / 2, 10*CleanYfac_1,
|
(screen.GetWidth() - font.StringWidth(tt) * CleanXfac_1) / 2, 10*CleanYfac_1,
|
||||||
tt, DTA_CleanNoMove_1, true);
|
tt, DTA_CleanNoMove_1, true);
|
||||||
y = -y + mDesc.mFont.GetHeight();
|
y = -y + font.GetHeight();
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue