Commit a834b990 authored by Mikhail Karpenko's avatar Mikhail Karpenko

Limit minimum interface refresh period

parent 86463044
......@@ -422,7 +422,7 @@ function process_recording(xmldoc) {
if (data > frame_period)
frame_period = data;
}
if (frame_period != 0 && frame_period < 1000000) {
if (frame_period != 0 && frame_period > 1000000) {
frame_period /= 1000;
} else {
frame_period = 1000;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment