Flo, Clo, Hlo files, etc for filerequests, names corrected to lowercase :)
This commit is contained in:
parent
844aca0e1e
commit
1e05ab9d67
@ -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
|
||||
|
@ -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);
|
||||
|
Reference in New Issue
Block a user