summaryrefslogtreecommitdiff
path: root/vfs/UVFSCore.pas
diff options
context:
space:
mode:
authorTomas Bzatek <tbzatek@users.sourceforge.net>2008-11-15 16:22:51 +0100
committerTomas Bzatek <tbzatek@users.sourceforge.net>2008-11-15 16:22:51 +0100
commitb4a479a691069a0293754fa94922b77ca406fea7 (patch)
tree1c1629c445240340be23093b1607bb659040038d /vfs/UVFSCore.pas
parent7f89810e3c6ff92b0771ca11a817b82e081ccfa5 (diff)
downloadtuxcmd-b4a479a691069a0293754fa94922b77ca406fea7.tar.xz
VFS: Compressed size display support
Diffstat (limited to 'vfs/UVFSCore.pas')
-rw-r--r--vfs/UVFSCore.pas2
1 files changed, 2 insertions, 0 deletions
diff --git a/vfs/UVFSCore.pas b/vfs/UVFSCore.pas
index a514512..270b240 100644
--- a/vfs/UVFSCore.pas
+++ b/vfs/UVFSCore.pas
@@ -596,6 +596,7 @@ begin
UID := P^.iUID;
GID := P^.iGID;
Size := P^.iSize;
+ PackedSize := P^.iPackedSize;
libc_free(P);
end;
Result := Item;
@@ -658,6 +659,7 @@ var Item: PDataItemSL;
UID := P^.iUID;
GID := P^.iGID;
Size := P^.iSize;
+ PackedSize := P^.iPackedSize;
Level := ALevel + Ord(not AddCurrDirStage);
end;
if AddCurrDirStage then List.Add(Item)