fixed hex bug

--HG--
branch : pmacs2
This commit is contained in:
moculus 2008-04-11 12:25:44 +00:00
parent 060b23650b
commit fee6b2026a
1 changed files with 1 additions and 1 deletions

View File

@ -537,7 +537,7 @@ class Binary32Buffer(FileBuffer):
if groupdiv >= self.numgroups:
return None
bytemod = (cx + self.bytepad) % bytespace
bytemod = (cx + self.bytepad - groupdiv) % bytespace
if bytemod == 0:
return None