From 29f17809bfeef4a02cc421030118867a7ef02724 Mon Sep 17 00:00:00 2001 From: toaster Date: Wed, 15 Mar 2023 17:34:49 +0000 Subject: [PATCH] Addons menu: Adjust most assetsby a handful of pixels to prevent the loaded indicator from going off the bottom of the screen --- src/k_menu.h | 1 - src/k_menudraw.c | 7 ++++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/k_menu.h b/src/k_menu.h index 305722615..e2980e814 100644 --- a/src/k_menu.h +++ b/src/k_menu.h @@ -1124,7 +1124,6 @@ void M_DrawReplayStartMenu(void); // Misc menus: #define LOCATIONSTRING1 "Visit \x83SRB2.ORG/MODS\x80 to get & make addons!" -#define LOCATIONSTRING2 "Visit \x88SRB2.ORG/MODS\x80 to get & make addons!" void M_DrawAddons(void); // Challenges menu: diff --git a/src/k_menudraw.c b/src/k_menudraw.c index 08cde418c..cb9bbc1f7 100644 --- a/src/k_menudraw.c +++ b/src/k_menudraw.c @@ -4478,13 +4478,14 @@ void M_DrawAddons(void) } if (Playing()) - V_DrawCenteredString(BASEVIDWIDTH/2, 5, warningflags, "Adding files mid-game may cause problems."); + V_DrawCenteredString(BASEVIDWIDTH/2, 4, warningflags, "Adding files mid-game may cause problems."); else - V_DrawCenteredString(BASEVIDWIDTH/2, 5, 0, (recommendedflags == V_SKYMAP ? LOCATIONSTRING2 : LOCATIONSTRING1)); + V_DrawCenteredString(BASEVIDWIDTH/2, 4, 0, + LOCATIONSTRING1); // DRAW MENU x = currentMenu->x; - y = currentMenu->y + 1; + y = currentMenu->y - 1; hilicol = V_GetStringColormap(highlightflags)[0];