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);