Skip to content

Commit

Permalink
Fix demo recording message not displaying name and offset
Browse files Browse the repository at this point in the history
  • Loading branch information
ensiform committed Mar 4, 2024
1 parent 637f6c3 commit 17f7907
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/cgame/cg_draw.c
Original file line number Diff line number Diff line change
Expand Up @@ -1581,7 +1581,7 @@ void CG_DrawDemoRecording( void ) {
if( cl_waverecording.integer ) {
Com_sprintf( wavestatus, sizeof( demostatus ), " audio %s: %ik ", cl_wavefilename.string, cl_waveoffset.integer / 1024 );
} else {
demostatus[0] = '\0';
wavestatus[0] = '\0';
}

Com_sprintf( status, sizeof( status ), "RECORDING%s%s", demostatus, wavestatus );
Expand Down

0 comments on commit 17f7907

Please sign in to comment.