From 1e05ab9d67d0b18a779ba788528ccc5ee95825d6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jacobo=20Tarr=C3=ADo?= Date: Wed, 1 Aug 2001 22:42:55 +0000 Subject: [PATCH] Flo, Clo, Hlo files, etc for filerequests, names corrected to lowercase :) --- docs/notework.txt | 3 +++ golded3/gmarea.cpp | 10 +++++----- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/docs/notework.txt b/docs/notework.txt index 24e024a..1cfe0c1 100644 --- a/docs/notework.txt +++ b/docs/notework.txt @@ -12,6 +12,9 @@ ______________________________________________________________________ Notes for GoldED+ 1.1.5, /snapshot/ ______________________________________________________________________ +- Fixed *.?lo file creation where the character in '?' was uppercase, + in file requests. + ! Old logo returned back with Pavel Gulchouck's patch :-) - Fixed double WAZOO FREQ bug (Thanx to Dmitry Lebus for discovering diff --git a/golded3/gmarea.cpp b/golded3/gmarea.cpp index 2308676..5e12eda 100644 --- a/golded3/gmarea.cpp +++ b/golded3/gmarea.cpp @@ -142,15 +142,15 @@ void FreqWaZOO(const char* files, const Addr& dest, const Attr& attr) { char m; if(attr.imm()) - m = 'I'; + m = 'i'; else if(attr.cra()) - m = 'C'; + m = 'c'; else if(attr.dir()) - m = 'D'; + m = 'd'; else if(attr.hld()) - m = 'H'; + m = 'h'; else - m = 'F'; + m = 'f'; char buf2[5]; sprintf(buf2, ".%clo", m);