Skip to content

Commit

Permalink
engine: client: minor change, add forgotten newline in CL_DeltaEntity…
Browse files Browse the repository at this point in the history
…GS Host_Error call
  • Loading branch information
a1batross committed Jan 25, 2025
1 parent ad6db91 commit 92dc04f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion engine/client/cl_parse_gs.c
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ static void CL_DeltaEntityGS( const delta_header_t *hdr, sizebuf_t *msg, frame_t
if(( newnum < 0 ) || ( newnum >= clgame.maxEntities ))
{
Con_DPrintf( S_ERROR "CL_DeltaEntity: invalid newnum: %d\n", newnum );
Host_Error( "%s: bad delta entity number: %i", __func__, newnum );
Host_Error( "%s: bad delta entity number: %i\n", __func__, newnum );
return;
}

Expand Down

0 comments on commit 92dc04f

Please sign in to comment.