diff options
author | Vadim Dashevskiy <watcherhd@gmail.com> | 2014-11-03 17:00:30 +0000 |
---|---|---|
committer | Vadim Dashevskiy <watcherhd@gmail.com> | 2014-11-03 17:00:30 +0000 |
commit | 3884b938b660d4809139826d3a93c0ff38d18f99 (patch) | |
tree | ed5d0a6b61a9b3286d3480cea163652bf0d086ce /tools | |
parent | 415dcffc401ffdca1c0ccf94975c733b15d2e3c3 (diff) |
Ice patcher now can patch up to 1000 icons (thanks Awkward)
git-svn-id: http://svn.miranda-ng.org/main/trunk@10912 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'tools')
-rw-r--r-- | tools/iceit/Unit1.pas | 2 | ||||
-rw-r--r-- | tools/iceit/bin/iceit.exe | bin | 193536 -> 193536 bytes |
2 files changed, 1 insertions, 1 deletions
diff --git a/tools/iceit/Unit1.pas b/tools/iceit/Unit1.pas index 703ed3cdea..919bde982e 100644 --- a/tools/iceit/Unit1.pas +++ b/tools/iceit/Unit1.pas @@ -293,7 +293,7 @@ begin case n of
0..8 : IcoFileName := IcoName + ' 00' + IntToStr(n+1) + '.ico';
9..98 : IcoFileName := IcoName + ' 0' + IntToStr(n+1) + '.ico';
- 99 : IcoFileName := IcoName + ' ' + IntToStr(n+1) + '.ico';
+ 99..998 : IcoFileName := IcoName + ' ' + IntToStr(n+1) + '.ico';
end;
if not FileExists(IcoFileName) then
begin
diff --git a/tools/iceit/bin/iceit.exe b/tools/iceit/bin/iceit.exe Binary files differindex fafa2f3dd8..074ad308a7 100644 --- a/tools/iceit/bin/iceit.exe +++ b/tools/iceit/bin/iceit.exe |