Skip to content

Commit

Permalink
Con_SafePrintf uses the same message size limit as the rest of consol…
Browse files Browse the repository at this point in the history
…e output functions
  • Loading branch information
alexey-lysiuk authored and vsonnier committed Jul 18, 2024
1 parent 1b1ec44 commit bffe101
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Quake/console.c
Original file line number Diff line number Diff line change
Expand Up @@ -624,7 +624,7 @@ Okay to call even when the screen can't be updated
void Con_SafePrintf (const char *fmt, ...)
{
va_list argptr;
char msg[1024];
char msg[MAXPRINTMSG];
int temp;

va_start (argptr, fmt);
Expand Down

0 comments on commit bffe101

Please sign in to comment.