diff options
| author | Tomas Bzatek <tbzatek@users.sourceforge.net> | 2008-11-15 16:22:51 +0100 |
|---|---|---|
| committer | Tomas Bzatek <tbzatek@users.sourceforge.net> | 2008-11-15 16:22:51 +0100 |
| commit | b4a479a691069a0293754fa94922b77ca406fea7 (patch) | |
| tree | 1c1629c445240340be23093b1607bb659040038d /vfs/UVFSCore.pas | |
| parent | 7f89810e3c6ff92b0771ca11a817b82e081ccfa5 (diff) | |
| download | tuxcmd-b4a479a691069a0293754fa94922b77ca406fea7.tar.xz | |
VFS: Compressed size display support
Diffstat (limited to 'vfs/UVFSCore.pas')
| -rw-r--r-- | vfs/UVFSCore.pas | 2 |
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) |
