diff options
author | Andrey Nazarov <skuller@skuller.net> | 2008-10-25 16:43:39 +0000 |
---|---|---|
committer | Andrey Nazarov <skuller@skuller.net> | 2008-10-25 16:43:39 +0000 |
commit | 8a4e5f5516e94fe901a332bce7eef9b824f225c6 (patch) | |
tree | 93d64ca93047c6b1c1b59658e950ab0062544fe9 /source/q_msg.h | |
parent | b7d3939f3f68617f80d74d0a2bf6ea34ddea1065 (diff) |
Progress meter now works for local MVDs again.
Implemented `mvdskip' command which allows one jump to the next map in a MVD.
Removed `mvd_shownet' debugging stuff from dedicated server build.
Dropped packets no longer have maximum height on the lagometer.
Diffstat (limited to 'source/q_msg.h')
-rw-r--r-- | source/q_msg.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/source/q_msg.h b/source/q_msg.h index 1d0e227..10d8361 100644 --- a/source/q_msg.h +++ b/source/q_msg.h @@ -138,18 +138,16 @@ void MSG_ParseDeltaPlayerstate_Enhanced( const player_state_t *from, player_s #endif void MSG_ParseDeltaPlayerstate_Packet( const player_state_t *from, player_state_t *to, int flags ); -void MSG_ShowDeltaEntityBits( int bits ); #if USE_CLIENT +void MSG_ShowDeltaEntityBits( int bits ); void MSG_ShowDeltaPlayerstateBits_Default( int flags ); void MSG_ShowDeltaPlayerstateBits_Enhanced( int flags ); -#endif void MSG_ShowDeltaPlayerstateBits_Packet( int flags ); -#if USE_CLIENT void MSG_ShowDeltaUsercmdBits_Enhanced( int bits ); -#endif const char *MSG_ServerCommandString( int cmd ); #define MSG_ShowSVC( cmd ) \ Com_Printf( "%3"PRIz":%s\n", msg_read.readcount - 1, \ MSG_ServerCommandString( cmd ) ) +#endif // USE_CLIENT |