diff options
Diffstat (limited to 'mp/src/game/client/death.cpp')
| -rw-r--r-- | mp/src/game/client/death.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mp/src/game/client/death.cpp b/mp/src/game/client/death.cpp index fa63ede8..50463d57 100644 --- a/mp/src/game/client/death.cpp +++ b/mp/src/game/client/death.cpp @@ -289,7 +289,7 @@ void CHudDeathNotice::FireGameEvent( KeyValues * event) if ( !strcmp( killedwith+2, "gauss" ) )
Q_strncpy( killedwith, "d_tau cannon", sizeof( killedwith ) );
- Msg( killedwith+2 ); // skip over the "d_" part
+ Msg( "%s", killedwith+2 ); // skip over the "d_" part
}
Msg( "\n" );
|