Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/best.f
Original file line number Diff line number Diff line change
Expand Up @@ -788,7 +788,7 @@ program best
call pgpoint(ndm,x,y,17)
else if (mode.eq.4.or.mode.eq.5) then
call pggray(grid,mg,mg,1,ngx,1,ngy,gridmax,gridmin,tr)
call pgpoint(1,xx,yy,27)
call pgpoint(1,[real(xx)],[real(yy)],27)
call pgsls(4)
call pgmove(xmin,0.0)
call pgdraw(xmax,0.0)
Expand Down
2 changes: 1 addition & 1 deletion src/quickplot.f
Original file line number Diff line number Diff line change
Expand Up @@ -495,7 +495,7 @@ subroutine quickgrey(dat,nxd,nyd,nx,ny,flip)
if(k.gt.0)then
x=i
y=j
call pgpoint(1,x,y,ksym(k))
call pgpoint(1,[real(x)],[real(y)],ksym(k))
endif
enddo
enddo
Expand Down