aboutsummaryrefslogtreecommitdiffstats
path: root/filter.c
diff options
context:
space:
mode:
authorreinelt <>2000-03-23 07:24:48 +0000
committerreinelt <>2000-03-23 07:24:48 +0000
commit53195ac9c4d7426fa9d8806621370c265aeb3fe5 (patch)
treeebd49cfda4012cdd484e35799fdf2fdaff7a5dfa /filter.c
parentaf243c0321c8eff1fcf1384d105333ae4e243f67 (diff)
downloadlcd4linux-53195ac9c4d7426fa9d8806621370c265aeb3fe5.tar.gz
[lcd4linux @ 2000-03-23 07:24:48 by reinelt]
PPM driver up and running (but slow!)
Diffstat (limited to 'filter.c')
-rw-r--r--filter.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/filter.c b/filter.c
index 1fbf9c2..93d7a22 100644
--- a/filter.c
+++ b/filter.c
@@ -1,4 +1,4 @@
-/* $Id: filter.c,v 1.3 2000/03/22 07:33:50 reinelt Exp $
+/* $Id: filter.c,v 1.4 2000/03/23 07:24:48 reinelt Exp $
*
* smooth and damp functions
*
@@ -20,6 +20,10 @@
*
*
* $Log: filter.c,v $
+ * Revision 1.4 2000/03/23 07:24:48 reinelt
+ *
+ * PPM driver up and running (but slow!)
+ *
* Revision 1.3 2000/03/22 07:33:50 reinelt
*
* FAQ added
@@ -127,7 +131,7 @@ double damp(char *name, double value)
int i, j;
if (tau==-1)
- tau=atoi(cfg_get("tau"));
+ tau=atoi(cfg_get("tau")?:"500");
if (tau==0.0)
return value;