mirror of
https://github.com/ZDoom/raze-gles.git
synced 2025-01-11 18:50:46 +00:00
Menu stuff
git-svn-id: https://svn.eduke32.com/eduke32@6377 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
e87f1591f9
commit
715d2ec25a
1 changed files with 4 additions and 3 deletions
|
@ -122,7 +122,7 @@ static void Menu_DrawTopBarCaption(const char *caption, const vec2_t origin)
|
|||
{
|
||||
char *s = Bstrdup(caption), p = Bstrlen(caption)-1;
|
||||
if (s[p] == ':') s[p] = 0;
|
||||
menutext_(origin.x + (MENU_MARGIN_CENTER<<16), origin.y + (24<<16) + (MF_Redfont.emptychar.y>>1), 0, s, 10|16, TEXT_XCENTER|TEXT_YCENTER);
|
||||
menutext_(origin.x + (MENU_MARGIN_CENTER<<16), origin.y + (24<<16) + (15<<15), 0, s, 10|16, TEXT_XCENTER|TEXT_YCENTER);
|
||||
Bfree(s);
|
||||
}
|
||||
|
||||
|
@ -1660,9 +1660,10 @@ void Menu_Init(void)
|
|||
if (KXDWN)
|
||||
{
|
||||
MF_Redfont.between.x = 2<<16;
|
||||
MF_Redfont.cursorScale = MF_Redfont.zoom = 32768;
|
||||
MF_Redfont.cursorScale = 32768;
|
||||
MF_Redfont.zoom = 16384;
|
||||
MF_Bluefont.between.x = MF_BluefontRed.between.x = 0;
|
||||
MF_Bluefont.zoom = MF_BluefontRed.zoom = MF_BluefontGame.zoom = 32768;
|
||||
MF_Bluefont.zoom = MF_BluefontRed.zoom = MF_BluefontGame.zoom = 16384;
|
||||
|
||||
// hack; should swap out pointers
|
||||
MF_Minifont = MF_Bluefont;
|
||||
|
|
Loading…
Reference in a new issue