From 3df2734b5240d23d4b8348eb8c7256dbadb2f6bf Mon Sep 17 00:00:00 2001 From: krcroft Date: Tue, 31 Mar 2020 10:49:17 -0700 Subject: [PATCH] Clarify choice of wrap-width --- src/dos/program_autotype.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/dos/program_autotype.cpp b/src/dos/program_autotype.cpp index 7f7f9ea7..3b4b501e 100644 --- a/src/dos/program_autotype.cpp +++ b/src/dos/program_autotype.cpp @@ -46,8 +46,8 @@ void AUTOTYPE::PrintKeys() { } // Setup our rows and columns - const size_t console_width = 72; - const size_t columns = console_width / max_length; + const size_t wrap_width = 72; // confortable columns not pushed to the edge + const size_t columns = wrap_width / max_length; const size_t rows = ceil_udivide(names.size(), columns); // Build the string output by rows and columns