Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
highperformancecoder committed Mar 14, 2024
2 parents b362087 + e4f88d4 commit 56faa42
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/plot.cc
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,7 @@ namespace ecolab
if (y[i][j]<miny1) miny1=y[i][j];
if (y[i][j]>maxy1) maxy1=y[i][j];
}
else if (i>=penSide.size() || i<penSide.size() && penSide[i]==left)
else if (i>=penSide.size() || (i<penSide.size() && penSide[i]==left))
{
if (y[i][j]<miny) miny=y[i][j];
if (y[i][j]>maxy) maxy=y[i][j];
Expand Down

0 comments on commit 56faa42

Please sign in to comment.