fixed demo playback jerkiness

This commit is contained in:
Magnus Auvinen 2008-10-06 21:13:36 +00:00
parent 12472ef7f4
commit 316e6605be

View file

@ -1239,6 +1239,11 @@ static void client_democallback(DEMOREC_CHUNK chunk, void *data)
{
/* dbg_msg("client/playback", "got %c%c%c%c", chunk.type[0], chunk.type[1], chunk.type[2], chunk.type[3]); */
/* update ticks, they could have changed */
const DEMOREC_PLAYBACKINFO *info = demorec_playback_info();
current_tick = info->current_tick;
prev_tick = info->previous_tick;
if(mem_comp(chunk.type, "SNAP", 4) == 0)
{
/* handle snapshots */
@ -1260,7 +1265,6 @@ static void client_democallback(DEMOREC_CHUNK chunk, void *data)
if(!sys)
modc_message(msg);
}
}
const DEMOPLAYBACK_INFO *client_demoplayer_getinfo()