summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tools/iceit/Unit1.pas2
-rw-r--r--tools/iceit/bin/iceit.exebin193536 -> 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
index fafa2f3dd8..074ad308a7 100644
--- a/tools/iceit/bin/iceit.exe
+++ b/tools/iceit/bin/iceit.exe
Binary files differ