Introduction
Introduction Statistics Contact Development Disclaimer Help
Fix blind-spiral-gradient - blind - suckless command-line video editing utility
git clone git://git.suckless.org/blind
Log
Files
Refs
README
LICENSE
---
commit 187994906ae77986072050ea2024fb531747fea5
parent d1a5dfdf162d1e1200e7ee1060435d76a028d4c4
Author: Mattias Andrée <[email protected]>
Date: Fri, 7 Jul 2017 21:48:47 +0200
Fix blind-spiral-gradient
Signed-off-by: Mattias Andrée <[email protected]>
Diffstat:
M src/blind-spiral-gradient.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/src/blind-spiral-gradient.c b/src/blind-spiral-gradient.c
@@ -146,7 +146,7 @@ main(int argc, char *argv[])
stream.width * stream.height > 5)
eprintf("<stdin>: each frame must contain exactly 2, 3, 4, or …
- with_params = (stream.width * stream.height) & 2;
+ with_params = (stream.width * stream.height) & 1;
with_vector = stream.width * stream.height > 3;
stream.width = width;
You are viewing proxied material from suckless.org. The copyright of proxied material belongs to its original authors. Any comments or complaints in relation to proxied material should be directed to the original authors of the content concerned. Please see the disclaimer for more details.