IDE: fixed checking system.ppu file

git-svn-id: trunk@26885 -
This commit is contained in:
mattias 2010-07-29 00:06:31 +00:00
parent 2af1e1f4f1
commit 7a5bd656f3

View File

@ -539,7 +539,7 @@ var
if ConfigCache.Units=nil then exit;
AFilename:=ConfigCache.Units['system'];
if AFilename='' then exit;
if CompareFileExt(AFilename,'.ppu')<>0 then exit;
if CompareFileExt(AFilename,'.ppu',false)<>0 then exit;
Result:=true;
end;