Skip to content

Commit

Permalink
fixed wrong conversion and thus wrong playback (no initial snapshot e…
Browse files Browse the repository at this point in the history
…tc) on some demos that have snapshots w/o delta
  • Loading branch information
entdark committed Oct 10, 2016
1 parent 444c20a commit 3dcd2e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion trunk/code/client/cl_demos.c
Original file line number Diff line number Diff line change
Expand Up @@ -473,7 +473,7 @@ void demoConvert( const char *oldName, const char *newBaseName, qboolean smoothe
oldSnap = &convert->snapshots[newSnap->deltaNum & PACKET_MASK];
if (!oldSnap->valid) {
Com_Printf( "Delta snapshot without base.\n" );
goto conversionerror;
// goto conversionerror;
} else if (oldSnap->messageNum != newSnap->deltaNum) {
// The frame that the server did the delta from
// is too old, so we can't reconstruct it properly.
Expand Down

0 comments on commit 3dcd2e9

Please sign in to comment.