hedgewars/uIO.pas
changeset 2064 727f68f22915
parent 2063 c592b01061bc
child 2065 748c35c94779
equal deleted inserted replaced
2063:c592b01061bc 2064:727f68f22915
   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) and (not tmpflag) then
   306 if (headcmd <> nil) and 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);