Skip to content

Commit

Permalink
Use zmin also
Browse files Browse the repository at this point in the history
Signed-off-by: Cees Bassa <[email protected]>
  • Loading branch information
cbassa committed Dec 22, 2024
1 parent 68116ed commit 3f5cfbc
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion rfplot.c
Original file line number Diff line number Diff line change
Expand Up @@ -214,8 +214,10 @@ int main(int argc,char *argv[])
ymin=0.0;
ymax=(float) s.nchan;
zmin=0.0;
if (maxflag==0)
if (maxflag==0) {
zmin=s.zmin;
zmax=s.zmax;
}

// Set trace
tf.n=0;
Expand Down

0 comments on commit 3f5cfbc

Please sign in to comment.