FIX: Windows XP compatibility

This commit is contained in:
Alexander Koblov 2025-06-01 01:04:14 +03:00
commit 1af6bd6f7d

View file

@ -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