blind-matrix-rotate: fix nonuse of -c - blind - suckless command-line video edi… | |
git clone git://git.suckless.org/blind | |
Log | |
Files | |
Refs | |
README | |
LICENSE | |
--- | |
commit b4a50a1ad6ab7d8a674ce54cde9778986badd333 | |
parent 62ffee45ea763a321606b8ec8fe1bcf0a3791d27 | |
Author: Mattias Andrée <[email protected]> | |
Date: Fri, 14 Jul 2017 20:01:10 +0200 | |
blind-matrix-rotate: fix nonuse of -c | |
Signed-off-by: Mattias Andrée <[email protected]> | |
Diffstat: | |
M src/blind-matrix-rotate.c | 6 +++--- | |
1 file changed, 3 insertions(+), 3 deletions(-) | |
--- | |
diff --git a/src/blind-matrix-rotate.c b/src/blind-matrix-rotate.c | |
@@ -29,9 +29,9 @@ static int per_channel = 0; | |
matrix[4][0] = matrix[0][0] = cos(buf[1]);\ | |
matrix[3][0] = -(matrix[1][0] = sin(buf[1]));\ | |
matrix[0][3] = matrix[0][2] = matrix[0][1] = m… | |
- matrix[1][3] = matrix[0][2] = matrix[0][1] = m… | |
- matrix[3][3] = matrix[0][2] = matrix[0][1] = m… | |
- matrix[4][3] = matrix[0][2] = matrix[0][1] = m… | |
+ matrix[1][3] = matrix[1][2] = matrix[1][1] = m… | |
+ matrix[3][3] = matrix[3][2] = matrix[3][1] = m… | |
+ matrix[4][3] = matrix[4][2] = matrix[4][1] = m… | |
}\ | |
ewriteall(STDOUT_FILENO, matrix, sizeof(matrix), "<std… | |
}\ |