1
0
Fork 0

Half-fix for giza paper size error.

Fixes these errors:
%giza - ERROR - giza_set_paper_size: width <= 0
%giza - ERROR - giza_set_paper_size: height <= 0

But the size is still too small, and a bit worse...

	modified:   skymap.c
giza
Jeff Moe 2022-07-27 02:44:04 -06:00
parent 9d219c5473
commit b0c438f84f
1 changed files with 1 additions and 1 deletions

View File

@ -959,7 +959,7 @@ void init_plot(char *psfile,float width,float aspect)
// Initialize plot
cpgopen(psfile);
cpgslw(2);
cpgpap(width,aspect);
cpgpap(7.5,1);
skymap_plot_renew();