Flo, Clo, Hlo files, etc for filerequests, names corrected to lowercase :)

This commit is contained in:
Jacobo Tarrío 2001-08-01 22:42:55 +00:00
parent 844aca0e1e
commit 1e05ab9d67
2 changed files with 8 additions and 5 deletions

View File

@ -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

View File

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