From 364195879109cac42485af8f5cf02076d42a3bfc Mon Sep 17 00:00:00 2001 From: Martin Haye Date: Wed, 20 Aug 2014 11:41:26 -0700 Subject: [PATCH] Changed paste to 1 pass at Seth's request. --- .../org/badvision/outlaweditor/apple/FloydSteinbergDither.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OutlawEditor/src/main/java/org/badvision/outlaweditor/apple/FloydSteinbergDither.java b/OutlawEditor/src/main/java/org/badvision/outlaweditor/apple/FloydSteinbergDither.java index 6ad99d6b..3bd0a26e 100644 --- a/OutlawEditor/src/main/java/org/badvision/outlaweditor/apple/FloydSteinbergDither.java +++ b/OutlawEditor/src/main/java/org/badvision/outlaweditor/apple/FloydSteinbergDither.java @@ -53,7 +53,7 @@ import static org.badvision.outlaweditor.apple.AppleNTSCGraphics.hgrToDhgr; */ public class FloydSteinbergDither { - static final int totalPasses = 6; + static final int totalPasses = 1; static final int nonErrorPasses = 1; public static interface DitherCallback {