diff options
author | reinelt <> | 2004-06-05 06:41:40 +0000 |
---|---|---|
committer | reinelt <> | 2004-06-05 06:41:40 +0000 |
commit | 92644b6936bd999c1549754c1a587220badc422b (patch) | |
tree | 18666abbbccd14f4b2743cfcbdb6c071e8b16d56 /drv_M50530.c | |
parent | f9a606b7124325831e1da64997f1e1e63aab44b1 (diff) | |
download | lcd4linux-92644b6936bd999c1549754c1a587220badc422b.tar.gz |
[lcd4linux @ 2004-06-05 06:41:39 by reinelt]
chancged splash screen again
Diffstat (limited to 'drv_M50530.c')
-rw-r--r-- | drv_M50530.c | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/drv_M50530.c b/drv_M50530.c index 920d56e..cad2008 100644 --- a/drv_M50530.c +++ b/drv_M50530.c @@ -1,4 +1,4 @@ -/* $Id: drv_M50530.c,v 1.9 2004/06/05 06:13:12 reinelt Exp $ +/* $Id: drv_M50530.c,v 1.10 2004/06/05 06:41:39 reinelt Exp $ * * new style driver for M50530-based displays * @@ -23,6 +23,10 @@ * * * $Log: drv_M50530.c,v $ + * Revision 1.10 2004/06/05 06:41:39 reinelt + * + * chancged splash screen again + * * Revision 1.9 2004/06/05 06:13:12 reinelt * * splash screen for all text-based display drivers @@ -277,7 +281,7 @@ static int drv_M5_start (char *section, int quiet) if (!quiet) { char buffer[40]; qprintf(buffer, sizeof(buffer), "%s %dx%d", Name, DCOLS, DROWS); - if (drv_generic_text_greet (buffer)) { + if (drv_generic_text_greet (buffer, NULL)) { sleep (3); drv_M5_clear(); } @@ -390,7 +394,7 @@ int drv_M5_quit (void) { drv_M5_clear(); // say goodbye... - drv_generic_text_greet ("goodbye!"); + drv_generic_text_greet ("goodbye!", NULL); // clear all signals drv_generic_parport_control (SIGNAL_EX|SIGNAL_IOC1|SIGNAL_IOC2|SIGNAL_GPO, 0); |