mirror of
https://github.com/doublecmd/doublecmd.git
synced 2026-06-21 09:58:13 +00:00
FIX: Windows XP compatibility
This commit is contained in:
parent
caa29d7c64
commit
1af6bd6f7d
1 changed files with 2 additions and 2 deletions
|
|
@ -2733,11 +2733,11 @@ procedure LoadPixMapManager;
|
|||
var
|
||||
Q: QWord;
|
||||
begin
|
||||
Q:= GetTickCount64;
|
||||
Q:= SysUtils.GetTickCount64;
|
||||
DCDebug('Creating PixmapManager');
|
||||
PixMapManager:=TPixMapManager.Create;
|
||||
PixMapManager.Load(gpCfgDir + 'pixmaps.txt');
|
||||
DCDebug('Creating PixmapManager done '+ IntToStr(GetTickCount64 - Q));
|
||||
DCDebug('Creating PixmapManager done '+ IntToStr(SysUtils.GetTickCount64 - Q));
|
||||
end;
|
||||
|
||||
initialization
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue