From: Kevin Day Date: Thu, 27 Jul 2023 02:37:44 +0000 (-0500) Subject: Bugfix: Byte Dump program binary mode is printing wrong number of padding. X-Git-Tag: 0.6.7~15 X-Git-Url: https://git.kevux.org/?a=commitdiff_plain;h=3364dc1f6f29a1b531c317cb247bfeef82247350;p=fll Bugfix: Byte Dump program binary mode is printing wrong number of padding. --- diff --git a/level_3/byte_dump/c/private-byte_dump.c b/level_3/byte_dump/c/private-byte_dump.c index c85cc99..718c87c 100644 --- a/level_3/byte_dump/c/private-byte_dump.c +++ b/level_3/byte_dump/c/private-byte_dump.c @@ -294,7 +294,7 @@ extern "C" { } } else if (data->mode == byte_dump_mode_binary_e) { - if (!(cell.column % 6)) { + if (!(cell.column % 4)) { f_print_dynamic_raw(f_string_space_s, data->main->output.to.stream); } }