1
0
mirror of https://github.com/rcornwell/sims.git synced 2026-02-17 13:07:53 +00:00

KA10: More LPT changes.

This commit is contained in:
Richard Cornwell
2019-08-07 22:49:06 -04:00
parent dcf54c64ca
commit 3a32afa4f1

View File

@@ -182,7 +182,7 @@ lpt_printline(UNIT *uptr, int nl) {
lpt_buffer[uptr->POS++] = '\n';
uptr->LINE++;
}
if (nl < 0 && uptr->LINE > (int32)uptr->capac) {
if (nl > 0 && uptr->LINE > (int32)uptr->capac) {
lpt_buffer[uptr->POS++] = '\f';
uptr->LINE = 0;
}