Skip to content
Snippets Groups Projects
Commit 24f68cc2 authored by rswindell's avatar rswindell
Browse files

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.
parent f61e7d93
Branches
Tags
No related merge requests found
...@@ -300,7 +300,7 @@ void sbbs_t::outchar(char ch) ...@@ -300,7 +300,7 @@ void sbbs_t::outchar(char ch)
outchar_esc=0; outchar_esc=0;
if(lncntr==rows-1 && ((useron.misc&UPAUSE) || sys_status&SS_PAUSEON) if(lncntr==rows-1 && ((useron.misc&UPAUSE) || sys_status&SS_PAUSEON)
&& !(sys_status&SS_PAUSEOFF)) { && !(sys_status&(SS_PAUSEOFF|SS_ABORT))) {
lncntr=0; lncntr=0;
pause(); pause();
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment