From 6e9aa7569460399618c93bc73a40ea125364dae9 Mon Sep 17 00:00:00 2001 From: tTh Date: Thu, 6 Jul 2023 09:02:32 +0200 Subject: [PATCH] bla --- Fonderie/crapulator.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Fonderie/crapulator.c b/Fonderie/crapulator.c index e9af908..a3c3771 100644 --- a/Fonderie/crapulator.c +++ b/Fonderie/crapulator.c @@ -82,7 +82,7 @@ FloatImg img; int foo, retval; FimgFilter3x3 *pfiltre; -FimgFilter3x3 lowpass = { +static FimgFilter3x3 lowpass = { { 1.0, 2.0, 1.0, 2.0, 4.0, 2.0, @@ -91,7 +91,7 @@ FimgFilter3x3 lowpass = { 16.0, 0.0 }; -FimgFilter3x3 hipass = { +static FimgFilter3x3 hipass = { /* there was a bug with this filter */ { -1.0, -1.0, -1.0, @@ -101,7 +101,7 @@ FimgFilter3x3 hipass = { 1.0, 0.0 }; -FimgFilter3x3 diagonal = { +static FimgFilter3x3 diagonal = { /* there was a bug with this filter */ { 4.0, 1.0, 0.0,