Commit 86463044 authored by Mikhail Karpenko's avatar Mikhail Karpenko
Browse files

Limit interface refresh period

parent fa047c63
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -422,7 +422,7 @@ function process_recording(xmldoc) {
			if (data > frame_period)
				frame_period = data;
		}
		if (frame_period != 0) {
		if (frame_period != 0 && frame_period < 1000000) {
			frame_period /= 1000;
		} else {
			frame_period = 1000;