Skip to content

Commit

Permalink
fix for issue #99
Browse files Browse the repository at this point in the history
Bug introduced in 0.1.37
  • Loading branch information
Michael Spinelli committed Nov 1, 2019
1 parent 9b882f1 commit 81d762f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -422,7 +422,7 @@ else if(gvSymbol2 != null)
if(gvFrame != null)
shapeFrame = gvFrame.getGlyphOutline(0, (int)pixel.getX(), (int)pixel.getY());
if(gvFill != null)
shapeFill = gvFill.getGlyphOutline(0, (int)pixel.getX(), (int)pixel.getY());
shapeFill = gvFill.getGlyphOutline(0, (int)pixel.getX(), (int)pixel.getY());
if(gvSymbol1 != null)
shapeSymbol1 = gvSymbol1.getGlyphOutline(0, (int)pixel.getX(), (int)pixel.getY());
if(gvSymbol2 != null)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -474,7 +474,7 @@ else if(battleDimension=='P')//space
returnVal = 803;
}
}
if(affiliation == 'H' || affiliation == 'S')//hostile,suspect
else if(affiliation == 'H' || affiliation == 'S')//hostile,suspect
{
if(battleDimension=='Z')//unknown
{
Expand Down Expand Up @@ -504,7 +504,7 @@ else if(battleDimension=='P')//space
returnVal = 806;
}
}
if(affiliation == 'N' || affiliation == 'L')//neutral,exercise neutral
else if(affiliation == 'N' || affiliation == 'L')//neutral,exercise neutral
{
if(battleDimension=='Z')//unknown
{
Expand Down

0 comments on commit 81d762f

Please sign in to comment.