Server no longer uses a fixed lcd structure, but now a pointer to

a lcd_logical_driver structure (lcd_ptr).  Fixed bug in lcd.c
which caused lcd_drv_getkey_loop to act badly.
This commit is contained in:
ddouthitt
2001-09-27 16:12:55 +00:00
parent ae2f2d5638
commit eb6e99e7e8
10 changed files with 156 additions and 136 deletions
+2 -2
View File
@@ -32,8 +32,8 @@ screen_create ()
s->priority = DEFAULT_SCREEN_PRIORITY;
s->duration = default_duration;
s->heartbeat = DEFAULT_HEARTBEAT;
s->wid = lcd.wid;
s->hgt = lcd.hgt;
s->wid = lcd_ptr->wid;
s->hgt = lcd_ptr->hgt;
s->keys = NULL;
s->parent = NULL;
s->widgets = NULL;