hedgewars/uIO.pas
changeset 2063 c592b01061bc
parent 2043 1f2b91b5e7ef
child 2064 727f68f22915
equal deleted inserted replaced
2062:61e9acf4bb42 2063:c592b01061bc
   301 			OutError('Unexpected protocol command: ' + headcmd^.cmd, True)
   301 			OutError('Unexpected protocol command: ' + headcmd^.cmd, True)
   302 		end;
   302 		end;
   303 	RemoveCmd
   303 	RemoveCmd
   304 	end;
   304 	end;
   305 
   305 
   306 if (headcmd <> nil) then
   306 if (headcmd <> nil) and (not tmpflag) then
   307 	TryDo(GameTicks < headcmd^.Time,
   307 	TryDo(GameTicks < headcmd^.Time,
   308 			'oops, queue error. in buffer: ' + headcmd^.cmd +
   308 			'oops, queue error. in buffer: ' + headcmd^.cmd +
   309 			' (' + inttostr(GameTicks) + ' > ' +
   309 			' (' + inttostr(GameTicks) + ' > ' +
   310 			inttostr(headcmd^.Time) + ')',
   310 			inttostr(headcmd^.Time) + ')',
   311 			true);
   311 			true);