From 2a35f7d19764d8cbdd4b3f60fed616e5cdcf9644 Mon Sep 17 00:00:00 2001 From: toaster Date: Tue, 13 Dec 2022 22:20:24 +0000 Subject: [PATCH] Adjust y offset for challenge description --- src/k_menudraw.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/k_menudraw.c b/src/k_menudraw.c index 0616a553b..d5f42ad60 100644 --- a/src/k_menudraw.c +++ b/src/k_menudraw.c @@ -4884,6 +4884,6 @@ challengedesc: // Conditions for unlock if (challengesmenu.unlockcondition != NULL) { - V_DrawCenteredString(BASEVIDWIDTH/2, 120 + 40, V_ALLOWLOWERCASE, challengesmenu.unlockcondition); + V_DrawCenteredString(BASEVIDWIDTH/2, 120 + 32, V_ALLOWLOWERCASE, challengesmenu.unlockcondition); } }