mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-02-25 05:01:24 +00:00
[gamesource] Correct columns for bitops
bitnot doesn't use operand b so its columns needs to be 0, not 1.
This commit is contained in:
parent
2c204d40b2
commit
974306fa12
1 changed files with 1 additions and 1 deletions
|
@ -116,7 +116,7 @@ bitops_formats = {
|
|||
"opname": "{op_bit[oo]}",
|
||||
"format": "{bit_fmt[oo]}",
|
||||
"widths": "{ss+1}, { oo < 3 and ss+1 or 0}, {ss+1}",
|
||||
"columns": "1, 1, 1",
|
||||
"columns": "1, { oo < 3 and ss+1 or 0}, 1",
|
||||
"types": "{bit_types[t]}, {oo < 3 and bit_types[t] or 'ev_invalid'}, {bit_types[t]}",
|
||||
"args": {
|
||||
"op_bit": ["bitand", "bitor", "bitxor", "bitnot"],
|
||||
|
|
Loading…
Reference in a new issue