From 0a68390dc05a8f66d19d7ed63ead5a0a6490dcdf Mon Sep 17 00:00:00 2001 From: rswindell <> Date: Sun, 17 Feb 2013 06:33:59 +0000 Subject: [PATCH] Always set line 6 of door.sys to 'Y', regardless of CON_L_ECHO setting to work-around door game bug reported by DeliriumTremens. --- src/sbbs3/xtrn_sec.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/sbbs3/xtrn_sec.cpp b/src/sbbs3/xtrn_sec.cpp index c3ea751c3e..5ded8c867b 100644 --- a/src/sbbs3/xtrn_sec.cpp +++ b/src/sbbs3/xtrn_sec.cpp @@ -8,7 +8,7 @@ * @format.tab-size 4 (Plain Text/Source Code File Header) * * @format.use-tabs true (see http://www.synchro.net/ptsc_hdr.html) * * * - * Copyright 2012 Rob Swindell - http://www.synchro.net/copyright.html * + * Copyright 2013 Rob Swindell - http://www.synchro.net/copyright.html * * * * This program is free software; you can redistribute it and/or * * modify it under the terms of the GNU General Public License * @@ -556,7 +556,7 @@ void sbbs_t::xtrndat(char *name, char *dropdir, uchar type, ulong tleft ,8 /* 03: Data bits */ ,cfg.node_num /* 04: Node number */ ,dte_rate /* 05: DTE rate */ - ,console&CON_L_ECHO ? 'Y':'N' /* 06: Screen display */ + ,'Y' /* 06: Screen display */ ,'Y' /* 07: Printer toggle */ ,'Y' /* 08: Page bell */ ,'Y'); /* 09: Caller alarm */ -- GitLab