fix bignum supprot for glk displays

This commit is contained in:
marschap
2007-04-27 13:24:29 +00:00
parent 1cc8183a9e
commit 64b951bde3
2 changed files with 2 additions and 1 deletions
+1
View File
@@ -9,6 +9,7 @@ v.0.5dev (ongoing development)
+ lcdexec: notification when called program finishes + lcdexec: notification when called program finishes
+ xosd driver: offset from top-left corner + xosd driver: offset from top-left corner
+ LCDd: Hello= config option for startup message + LCDd: Hello= config option for startup message
* glk driver: bignum support fixed
v.0.5.2 v.0.5.2
* fix switching on/off the Load screen in lcdproc client using the menu * fix switching on/off the Load screen in lcdproc client using the menu
+1 -1
View File
@@ -533,7 +533,7 @@ glk_output(Driver *drvthis, int on)
* \param num Character to write (0 - 10 with 10 representing ':') * \param num Character to write (0 - 10 with 10 representing ':')
*/ */
MODULE_EXPORT void MODULE_EXPORT void
IOWarrior_num(Driver *drvthis, int x, int num) glk_num(Driver *drvthis, int x, int num)
{ {
//PrivateData *p = drvthis->private_data; //PrivateData *p = drvthis->private_data;
int do_init = 1; int do_init = 1;