From 553e6d09ff59fdd113de40b43c0a310cdbc2faf1 Mon Sep 17 00:00:00 2001 From: Fewnity Date: Sat, 9 Jul 2022 19:01:22 +0200 Subject: [PATCH] Fix wrong text position --- Counter-Strike-nds/source/ui.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Counter-Strike-nds/source/ui.c b/Counter-Strike-nds/source/ui.c index 222a974..277546b 100644 --- a/Counter-Strike-nds/source/ui.c +++ b/Counter-Strike-nds/source/ui.c @@ -2502,15 +2502,15 @@ void drawGameMenu() { // Print texts NE_TextPrint(0, // Font slot - 12, 2, // Coordinates x(column), y(row) + 12, 1, // Coordinates x(column), y(row) NE_White, // Color "Main menu"); if (isPrivate) { - char PartyCodeText[30] = "Party code : "; + char PartyCodeText[30] = "Party code: "; sprintf(PartyCodeText + strlen(PartyCodeText), "%s ", partyCode); - printLongText(17, 31, 10, PartyCodeText); + printLongText(10, 23, 3, PartyCodeText); } }