diff options
-rw-r--r-- | tools/iceit/Unit1.pas | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/iceit/Unit1.pas b/tools/iceit/Unit1.pas index 0381147e42..703ed3cdea 100644 --- a/tools/iceit/Unit1.pas +++ b/tools/iceit/Unit1.pas @@ -443,8 +443,8 @@ begin xFilePath := MirandaPath + '\' + S + '.exe';
//in order not to duplicate existing packages of icons (miranda32) for miranda 64
// will not work if there are two files (miranda32.exe and miranda64.exe)
- if not FileExists(mirandapath+'\miranda32.exe') then
- xFilePath := MirandaPath + '\Miranda64.exe';
+ if not FileExists(MirandaPath + '\miranda32.exe') then
+ xFilePath := MirandaPath + '\miranda64.exe';
xIcoPath := IcePath + F + '\' + S + '\' + S;
end
else
|