summaryrefslogtreecommitdiff
path: root/source/cl_pred.c
diff options
context:
space:
mode:
authorAndrey Nazarov <skuller@skuller.net>2009-03-24 14:54:32 +0000
committerAndrey Nazarov <skuller@skuller.net>2009-03-24 14:54:32 +0000
commit385ccd0e9a518933019a8c6f1fecad2ae660b766 (patch)
tree6b86f96c16a6d89a5803fce5081af64ac76165ab /source/cl_pred.c
parentfd8cba03f93046e892a732da27f221406f726b7c (diff)
Implemented a workaround for Q2 pmove bug resulting in swimming velocity in ‘z’ direction being heavily dependent of client's FPS when ‘+moveup’ is used.
New minor Q2PRO protocol version 1015. Fixed command completion mode cursor positioning. Disable ‘cl_updaterate’ variable until it is fully supported. Added ‘sv_waterjump_hack’ variable, enabling the pmove bug workaround described above for supported clients. Properly count connected MVD spectators in menus. Update MVD menus as spectators join/leave the channels.
Diffstat (limited to 'source/cl_pred.c')
-rw-r--r--source/cl_pred.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/cl_pred.c b/source/cl_pred.c
index 05edcb3..c240aba 100644
--- a/source/cl_pred.c
+++ b/source/cl_pred.c
@@ -68,7 +68,7 @@ void CL_CheckPredictionError( void ) {
VectorClear( cl.prediction_error );
} else {
if( cl_showmiss->integer && ( delta[0] || delta[1] || delta[2] ) ) {
- Com_Printf( "prediction miss on %i: %i\n", cl.frame.number, len );
+ Com_Printf( "prediction miss on %i: %i (%d %d %d)\n", cl.frame.number, len, delta[0], delta[1], delta[2]);
}
VectorCopy( ps->pmove.origin, cl.predicted_origins[cmd] );