diff options
Diffstat (limited to 'tests/vm/trgba.nim')
-rw-r--r-- | tests/vm/trgba.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/vm/trgba.nim b/tests/vm/trgba.nim index a270df267..923ea1b2e 100644 --- a/tests/vm/trgba.nim +++ b/tests/vm/trgba.nim @@ -22,7 +22,7 @@ template `B=`*(self: TAggRgba8, val: byte) = template `A=`*(self: TAggRgba8, val: byte) = self[3] = val -proc ABGR* (val: int| int64): TAggRgba8 = +proc ABGR*(val: int| int64): TAggRgba8 = var V = val result.R = byte(V and 0xFF) V = V shr 8 |