Skip to content

Commit

Permalink
Fix wrong text position
Browse files Browse the repository at this point in the history
  • Loading branch information
Fewnity committed Jul 9, 2022
1 parent 24af2c7 commit 553e6d0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Counter-Strike-nds/source/ui.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
}

Expand Down

0 comments on commit 553e6d0

Please sign in to comment.