1
0
Fork 0
mirror of https://github.com/codedread/bitjs synced 2025-10-03 09:39:16 +02:00

Fix remainder byte order

This commit is contained in:
Andre Brait 2022-03-05 18:25:03 +01:00 committed by GitHub
parent cbcf2c4906
commit 81194d04a2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -191,7 +191,7 @@ Packed Data (Total Packed Size) bytes
<li>4 bytes containing an MS-DOS date/time (except for mtime, which is part of FILE_HEAD)</li> <li>4 bytes containing an MS-DOS date/time (except for mtime, which is part of FILE_HEAD)</li>
<li>0 to 3 bytes containing fractions of seconds in 100ns increments</li> <li>0 to 3 bytes containing fractions of seconds in 100ns increments</li>
<ul> <ul>
<li>They form a 24-bit integer, sorted from most significant to least significant bits</li> <li>They form a 24-bit integer, sorted from least significant to most significant bits</li>
<li>If fewer than 3 bytes are present, the remaining least significant bits are to be padded with zeroes in order to complete 24-bits</li> <li>If fewer than 3 bytes are present, the remaining least significant bits are to be padded with zeroes in order to complete 24-bits</li>
</ul> </ul>
</ul> </ul>