mirror of
https://github.com/nzp-team/quakespasm.git
synced 2024-11-22 03:41:07 +00:00
VITA/NX: Fix dividing lines on Menu
This commit is contained in:
parent
6870d7fa8f
commit
5850ad9da7
1 changed files with 10 additions and 5 deletions
|
@ -567,7 +567,7 @@ void M_Main_Draw (void)
|
||||||
Draw_ColoredStringScale(10, y + 70, "Co-Op (Coming Soon!)", 0.5, 0.5, 0.5, 1, 1.5f);
|
Draw_ColoredStringScale(10, y + 70, "Co-Op (Coming Soon!)", 0.5, 0.5, 0.5, 1, 1.5f);
|
||||||
|
|
||||||
// Divider
|
// Divider
|
||||||
Draw_FillByColor(10, y + 90, 240, 3, 220, 220, 220, 0.8);
|
Draw_FillByColor(10, y + 90, 240, 3, 220, 220, 220, 255);
|
||||||
|
|
||||||
// Settings
|
// Settings
|
||||||
if (m_main_cursor == 1)
|
if (m_main_cursor == 1)
|
||||||
|
@ -589,7 +589,7 @@ void M_Main_Draw (void)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Divider
|
// Divider
|
||||||
Draw_FillByColor(10, y + 135, 240, 3, 220, 220, 220, 0.8);
|
Draw_FillByColor(10, y + 135, 240, 3, 220, 220, 220, 255);
|
||||||
#ifdef VITA
|
#ifdef VITA
|
||||||
// Credits
|
// Credits
|
||||||
if (m_main_cursor == 3)
|
if (m_main_cursor == 3)
|
||||||
|
@ -601,7 +601,7 @@ void M_Main_Draw (void)
|
||||||
Draw_ColoredStringScale(10, y + 145, "Credits", 1, 1, 1, 1, 1.5f);
|
Draw_ColoredStringScale(10, y + 145, "Credits", 1, 1, 1, 1, 1.5f);
|
||||||
|
|
||||||
// Divider
|
// Divider
|
||||||
Draw_FillByColor(10, y + 165, 240, 3, 220, 220, 220, 0.8);
|
Draw_FillByColor(10, y + 165, 240, 3, 220, 220, 220, 255);
|
||||||
#ifdef VITA
|
#ifdef VITA
|
||||||
// Exit
|
// Exit
|
||||||
if (m_main_cursor == 4)
|
if (m_main_cursor == 4)
|
||||||
|
@ -908,7 +908,7 @@ void M_SinglePlayer_Draw (void)
|
||||||
Draw_ColoredStringScale(10, y + 115, "Christmas Special", 1, 1, 1, 1, 1.5f);
|
Draw_ColoredStringScale(10, y + 115, "Christmas Special", 1, 1, 1, 1, 1.5f);
|
||||||
|
|
||||||
// Divider
|
// Divider
|
||||||
Draw_FillByColor(10, y + 135, 240, 3, 220, 220, 220, 0.8);
|
Draw_FillByColor(10, y + 135, 240, 3, 220, 220, 220, 255);
|
||||||
|
|
||||||
// Custom Maps
|
// Custom Maps
|
||||||
if (m_singleplayer_cursor == 3)
|
if (m_singleplayer_cursor == 3)
|
||||||
|
@ -1722,6 +1722,11 @@ void Map_Finder(void)
|
||||||
{
|
{
|
||||||
if(!strcmp(COM_FileGetExtension(ent->d_name),"bsp") || !strcmp(COM_FileGetExtension(ent->d_name),"BSP"))
|
if(!strcmp(COM_FileGetExtension(ent->d_name),"bsp") || !strcmp(COM_FileGetExtension(ent->d_name),"BSP"))
|
||||||
{
|
{
|
||||||
|
// Attempt to fix operating system files (macOS, bleh)
|
||||||
|
// from appearing in maps menu.
|
||||||
|
if (ent->d_name[0] == '.' || ent->d_name[0] == '_')
|
||||||
|
continue;
|
||||||
|
|
||||||
breakaway = false;
|
breakaway = false;
|
||||||
char ntype[32];
|
char ntype[32];
|
||||||
COM_StripExtension(ent->d_name, ntype, sizeof(ntype));
|
COM_StripExtension(ent->d_name, ntype, sizeof(ntype));
|
||||||
|
@ -2473,7 +2478,7 @@ void M_Options_Draw (void)
|
||||||
Draw_ColoredStringScale(10, y + 85, "Control Settings", 1, 1, 1, 1, 1.5f);
|
Draw_ColoredStringScale(10, y + 85, "Control Settings", 1, 1, 1, 1, 1.5f);
|
||||||
|
|
||||||
// Divider
|
// Divider
|
||||||
Draw_FillByColor(10, y + 105, 240, 3, 220, 220, 220, 0.8);
|
Draw_FillByColor(10, y + 105, 240, 3, 220, 220, 220, 255);
|
||||||
|
|
||||||
// Console
|
// Console
|
||||||
if (options_cursor == 3)
|
if (options_cursor == 3)
|
||||||
|
|
Loading…
Reference in a new issue