diff options
Diffstat (limited to 'gen/prop/bool-props.py')
-rwxr-xr-x | gen/prop/bool-props.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gen/prop/bool-props.py b/gen/prop/bool-props.py index 32a293e..c0f9d05 100755 --- a/gen/prop/bool-props.py +++ b/gen/prop/bool-props.py @@ -44,7 +44,7 @@ def genfile(cs: list[tuple[bool, ...]], blksize: int) -> None: print() bcnt = blksize // 8 - bpc = columns(bcnt) + bpc = columns(bcnt, 5) print(f'static constexpr unsigned char stage2[][{bcnt}] = {{') for c in cs: x = sum(map(lambda x: x[1] << x[0], enumerate(c))) |