From accfb7f4f453c80d5492abb616ef84f3c91835bf Mon Sep 17 00:00:00 2001 From: rswindell <> Date: Fri, 15 Feb 2008 20:14:06 +0000 Subject: [PATCH] Change "Delete Message?" after reply prompt to default to "No". --- src/sbbs3/readmail.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/sbbs3/readmail.cpp b/src/sbbs3/readmail.cpp index 7a67cab71b..edcacb1a9e 100644 --- a/src/sbbs3/readmail.cpp +++ b/src/sbbs3/readmail.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 2007 Rob Swindell - http://www.synchro.net/copyright.html * + * Copyright 2008 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 * @@ -418,7 +418,7 @@ void sbbs_t::readmail(uint usernumber, int which) } } - if(msg.hdr.attr&MSG_DELETE || !yesno(str2)) { + if(msg.hdr.attr&MSG_DELETE || noyes(str2)) { if(smb.curmsg<smb.msgs-1) smb.curmsg++; else done=1; break; } -- GitLab