From e829027eb560491efe83b0772d71fef47e01d450 Mon Sep 17 00:00:00 2001 From: PlexSheep Date: Thu, 1 Feb 2024 23:05:42 +0100 Subject: [PATCH] fix #1 last line all zero we toggle the buffer one time to much after the duplicated lines are processed. This commit just removes that one toggle too much. --- src/dumper.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/dumper.rs b/src/dumper.rs index cbe48c2..6648f7c 100644 --- a/src/dumper.rs +++ b/src/dumper.rs @@ -125,7 +125,6 @@ impl Hedu { buf = format!("{:X?}", self.buf), "dumping buf after line skip" ); - self.alt_buf ^= 1; // read into the other buf, so we can check for sameness self.display(); Ok(()) }