From: curt Date: Mon, 13 Apr 2009 18:41:31 +0000 (+0000) Subject: newest gnuplot doesn't like the "set terminal png color" command, X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=3b478871dd59351a72ec25e1d52242269379d4b7;p=flightgear.git newest gnuplot doesn't like the "set terminal png color" command, change to "set terminal png" --- diff --git a/scripts/perl/examples/logging.pl b/scripts/perl/examples/logging.pl index 69d4f0806..1c56aacae 100755 --- a/scripts/perl/examples/logging.pl +++ b/scripts/perl/examples/logging.pl @@ -151,7 +151,7 @@ sub quick_plot_vs_time { # create the gnuplot command file open( CMD, ">$tmpcmd" ); - print CMD "set terminal png color\n"; + print CMD "set terminal png\n"; print "png_image = $png_image\n"; print CMD "set output \"$png_image\"\n"; print CMD "set xlabel \"Time (sec)\"\n";