Mercurial > lcfOS
diff python/hexedit.py @ 279:2ccd57b1d78c
Fix register allocator to do burn2 OK
author | Windel Bouwman |
---|---|
date | Sat, 12 Oct 2013 09:56:23 +0200 |
parents | c101826ffe2b |
children | 1c7c1e619be8 |
line wrap: on
line diff
--- a/python/hexedit.py Sun Sep 29 14:08:15 2013 +0200 +++ b/python/hexedit.py Sat Oct 12 09:56:23 2013 +0200 @@ -5,7 +5,7 @@ from PyQt4.QtGui import * from PyQt4 import uic -BYTES_PER_LINE, GAP = 16, 12 +BYTES_PER_LINE, GAP = 8, 12 def clamp(minimum, x, maximum): return max(minimum, min(x, maximum))