Skip to content

Commit

Permalink
Small code cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
KodeMunkie committed Jul 10, 2020
1 parent 270ebfd commit 28eee9b
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,6 @@ private void convertAttributeBlock(int x, int y, GigaScreenAttribute combo, Buff
public ResultImage[] convert(BufferedImage original) {
OptionsObject oo = OptionsObject.getInstance();
int height = original.getHeight();
int atrributeHeightMultipler = 1;

// If interlace we have a double height input for a regular output (over 2 screens), so we need to
// compare odd and even fields to halve the height.
Expand Down Expand Up @@ -137,7 +136,7 @@ public ResultImage[] convert(BufferedImage original) {
}

if (imageConverter.getDrawStrategyLabel()) {
PreviewLabeller.drawPreviewStrategyWithName(output, imageConverter.getDitherStrategyLabel().toString());
PreviewLabeller.drawPreviewStrategyWithName(output, imageConverter.getDitherStrategyLabel());
}

return new ResultImage[]{new ResultImage(ResultImageType.FINAL_IMAGE, output),
Expand Down

0 comments on commit 28eee9b

Please sign in to comment.