diff options
Diffstat (limited to 'tools/iceit/Unit1.pas')
-rw-r--r-- | tools/iceit/Unit1.pas | 2 |
1 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
|