From 24f68cc2953136fcdc57d7b88b889eb524f2b422 Mon Sep 17 00:00:00 2001 From: rswindell <> Date: Wed, 15 Aug 2018 19:48:38 +0000 Subject: [PATCH] This is just something I noticed while looking into the change for the previous commit: don't clear the line counter or call pause() - which will do nothing - if the console abort flag is set. --- src/sbbs3/con_out.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sbbs3/con_out.cpp b/src/sbbs3/con_out.cpp index be61f435a6..62d65d37ea 100644 --- a/src/sbbs3/con_out.cpp +++ b/src/sbbs3/con_out.cpp @@ -300,7 +300,7 @@ void sbbs_t::outchar(char ch) outchar_esc=0; if(lncntr==rows-1 && ((useron.misc&UPAUSE) || sys_status&SS_PAUSEON) - && !(sys_status&SS_PAUSEOFF)) { + && !(sys_status&(SS_PAUSEOFF|SS_ABORT))) { lncntr=0; pause(); } -- GitLab