Explorar o código

* fix hours timestamp conversion zipped file. Mantis #25499
(shift count off by one)

git-svn-id: trunk@26408 -

marco %!s(int64=11) %!d(string=hai) anos
pai
achega
d314cd87aa
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      packages/paszlib/src/zipper.pp

+ 1 - 1
packages/paszlib/src/zipper.pp

@@ -675,7 +675,7 @@ begin
   MS:=0;
   S:=(ZT and 31) shl 1;
   N:=(ZT shr 5) and 63;
-  H:=(ZT shr 12) and 31;
+  H:=ZT shr 11;
   D:=ZD and 31;
   M:=(ZD shr 5) and 15;
   Y:=((ZD shr 9) and 127)+1980;