aboutsummaryrefslogtreecommitdiffstats
path: root/drv_G15.c
diff options
context:
space:
mode:
authorreinelt <>2006-02-27 06:14:46 +0000
committerreinelt <>2006-02-27 06:14:46 +0000
commit02c64f740f569c77e56c469dfe8b6e882bfabeda (patch)
treea25268ffaeb5bc6340b8c520954fc0e1c8946346 /drv_G15.c
parent440ecfb4a2b273bfa1d11fc201793a98b02add51 (diff)
downloadlcd4linux-02c64f740f569c77e56c469dfe8b6e882bfabeda.tar.gz
[lcd4linux @ 2006-02-27 06:14:46 by reinelt]
graphic bug resulting in all black pixels solved
Diffstat (limited to '')
-rw-r--r--drv_G15.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/drv_G15.c b/drv_G15.c
index 6242436..ef7bbae 100644
--- a/drv_G15.c
+++ b/drv_G15.c
@@ -1,4 +1,4 @@
-/* $Id: drv_G15.c,v 1.5 2006/02/08 04:55:03 reinelt Exp $
+/* $Id: drv_G15.c,v 1.6 2006/02/27 06:14:46 reinelt Exp $
*
* Driver for Logitech G-15 keyboard LCD screen
*
@@ -24,6 +24,9 @@
*
*
* $Log: drv_G15.c,v $
+ * Revision 1.6 2006/02/27 06:14:46 reinelt
+ * graphic bug resulting in all black pixels solved
+ *
* Revision 1.5 2006/02/08 04:55:03 reinelt
* moved widget registration to drv_generic_graphic
*
@@ -184,7 +187,7 @@ static void drv_G15_blit(const int row, const int col, const int height, const i
for (r = row; r < row + height; r++) {
for (c = col; c < col + width; c++) {
- g15_image[r * 160 + c] = drv_generic_graphic_gray(r, c);
+ g15_image[r * 160 + c] = drv_generic_graphic_black(r, c);
}
}
@@ -289,7 +292,7 @@ int drv_G15_init(const char *section, const int quiet)
{
int ret;
- info("%s: %s", Name, "$Revision: 1.5 $");
+ info("%s: %s", Name, "$Revision: 1.6 $");
DEBUG("entered");