no need for Time::HiRes to play back

pull/1/head
dscho 18 years ago
parent afcdc4f4b2
commit d12939e22c

@ -1,3 +1,6 @@
2006-06-15: Johannes Schindelin <Johannes.Schindelin@gmx.de>
* added timing: you can record the events with their timestamps now
2005-01-13: Johannes Schindelin <Johannes.Schindelin@gmx.de>
* started the project

@ -1 +1,4 @@
No News yet
With --timing, you can actually record action scripts which are meaningful...
Earlier, the events just got garbled, because the GUI could not react as
fast as the events were churned out.

@ -56,15 +56,10 @@ if($vnc<0) {
exit 1;
}
# TODO: timing
open OUT, ">$output.pl";
print OUT "#!/usr/bin/perl\n";
print OUT "\n";
print OUT "use nacro;\n";
if ($timing) {
print OUT "use Time::HiRes;"
}
print OUT "\n";
print OUT "\$x_origin=0; \$y_origin=0;\n";
print OUT "\$vnc=nacro::initvnc(\"$server\",$port,$listen_port);\n";

Loading…
Cancel
Save