diff options
author | reinelt <> | 2003-08-24 05:17:58 +0000 |
---|---|---|
committer | reinelt <> | 2003-08-24 05:17:58 +0000 |
commit | e349ac4e73b4916c766721f22b1fbb667d25d0be (patch) | |
tree | 072381f83d0966b48fb518505e693e326d9b72ce /processor.c | |
parent | d36f45332730bf7055a51d940a6db816b29489ba (diff) | |
download | lcd4linux-e349ac4e73b4916c766721f22b1fbb667d25d0be.tar.gz |
[lcd4linux @ 2003-08-24 05:17:58 by reinelt]
liblcd4linux patch from Patrick Schemitz
Diffstat (limited to 'processor.c')
-rw-r--r-- | processor.c | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/processor.c b/processor.c index ca3f91e..3972485 100644 --- a/processor.c +++ b/processor.c @@ -1,4 +1,4 @@ -/* $Id: processor.c,v 1.36 2003/08/17 16:37:39 reinelt Exp $ +/* $Id: processor.c,v 1.37 2003/08/24 05:17:58 reinelt Exp $ * * main data processing * @@ -20,6 +20,9 @@ * * * $Log: processor.c,v $ + * Revision 1.37 2003/08/24 05:17:58 reinelt + * liblcd4linux patch from Patrick Schemitz + * * Revision 1.36 2003/08/17 16:37:39 reinelt * more icon framework * @@ -751,7 +754,7 @@ void process_init (void) lines=atoi(cfg_get("Rows","1")); if (lines<1) { - error ("bad 'Rows' entry in %s, ignoring.", cfg_file()); + error ("bad 'Rows' entry in %s, ignoring.", cfg_source()); lines=1; } if (lines>ROWS) { @@ -761,16 +764,16 @@ void process_init (void) if (lines>rows) { scroll=atoi(cfg_get("Scroll","1")); if (scroll<1) { - error ("bad 'Scroll' entry in %s, ignoring and using '1'", cfg_file()); + error ("bad 'Scroll' entry in %s, ignoring and using '1'", cfg_source()); scroll=1; } if (scroll>rows) { - error ("'Scroll' entry in %s is %d, > %d display rows.", cfg_file(), scroll, rows); + error ("'Scroll' entry in %s is %d, > %d display rows.", cfg_source(), scroll, rows); error ("This may lead to unexpected results!"); } turn=atoi(cfg_get("Turn","1000")); if (turn<1) { - error ("bad 'Turn' entry in %s, ignoring and using '1000'", cfg_file()); + error ("bad 'Turn' entry in %s, ignoring and using '1000'", cfg_source()); turn=1; } debug ("Virtual: %d rows, scroll %d lines every %d msec", lines, scroll, turn); |