Skip to content

Commit

Permalink
Remove unused variable from M_LineWrap
Browse files Browse the repository at this point in the history
  • Loading branch information
andrei-drexler committed Dec 22, 2023
1 parent 13a00f1 commit dbadecc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Quake/menu.c
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,7 @@ static int M_WordLength (const char *text)
static int M_LineWrap (const char **text, int maxchars)
{
const char *str = *text;
int i, lastspace = 0;
int i;

for (i = 0; i < maxchars && str[i]; /**/)
{
Expand Down

0 comments on commit dbadecc

Please sign in to comment.