From 90a86105a75c2fe227d610da2a924e7ded133672 Mon Sep 17 00:00:00 2001 From: Egan Ford Date: Sun, 9 Apr 2017 14:47:26 -0600 Subject: [PATCH] text2page minor non-functional update --- bin/text2page.exe | Bin 28370 -> 28370 bytes text2page.c | 14 +++++++------- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/bin/text2page.exe b/bin/text2page.exe index d1ee34978848f0137c36049fe38a47b704be7997..0feb084bc1377673dc69e9df802ed825b9555fed 100755 GIT binary patch delta 22 ecmca~m+{hF#t9wFu5({a?Dl1PetqMuAGrXB 39) // user didn't read the docs + if(column > 39) // user didn't read the docs continue; - if(lines > 23) // ditto + if(line > 23) // ditto break; if(c == '\n') { // end of line - columns=0; - lines++; + column=0; + line++; continue; } - screen[linemap[lines]][columns] = c | highbit; - columns++; + screen[linemap[line]][column] = c | highbit; + column++; } // dump to stdout