aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--dla2csv.c8
-rw-r--r--dla2csv.xexbin10909 -> 10917 bytes
2 files changed, 5 insertions, 3 deletions
diff --git a/dla2csv.c b/dla2csv.c
index 98d1173..413229d 100644
--- a/dla2csv.c
+++ b/dla2csv.c
@@ -479,9 +479,11 @@ int convert(void) {
clear_keystroke();
return 0;
}
- backspace2();
- printf("%02d", y * 100 / HEIGHT); /* percentage */
- fflush(stdout);
+ if(y & 1) {
+ backspace2();
+ printf("%02d", y * 100 / HEIGHT); /* percentage */
+ fflush(stdout);
+ }
for(x = 0; x < BYTEWIDTH; ++x) {
if(*inp) {
pixx = x * 8;
diff --git a/dla2csv.xex b/dla2csv.xex
index fe0eb4e..7eefaa1 100644
--- a/dla2csv.xex
+++ b/dla2csv.xex
Binary files differ