Fix a few text mistaked discovered during merge.
This commit is contained in:
@@ -45,7 +45,7 @@ DriverPath=server/drivers/
|
|||||||
#
|
#
|
||||||
# The following drivers are supported:
|
# The following drivers are supported:
|
||||||
# bayrad, CFontz, CFontzPacket, curses, CwLnx, ea65,
|
# bayrad, CFontz, CFontzPacket, curses, CwLnx, ea65,
|
||||||
# EyeboxOne, g15, glcdlib, glk, hd44780, icp_a106, imon, imonlcd,
|
# EyeboxOne, g15, glcd, glcdlib, glk, hd44780, icp_a106, imon, imonlcd,
|
||||||
# IOWarrior, irman, joy, lb216, lcdm001, lcterm, lirc, lis, MD8800,
|
# IOWarrior, irman, joy, lb216, lcdm001, lcterm, lirc, lis, MD8800,
|
||||||
# mdm166a, ms6931, mtc_s16209x, MtxOrb, mx5000, NoritakeVFD, picolcd,
|
# mdm166a, ms6931, mtc_s16209x, MtxOrb, mx5000, NoritakeVFD, picolcd,
|
||||||
# pyramid, sdeclcd, sed1330, sed1520, serialPOS, serialVFD, shuttleVFD, sli,
|
# pyramid, sdeclcd, sed1330, sed1520, serialPOS, serialVFD, shuttleVFD, sli,
|
||||||
@@ -359,7 +359,7 @@ ConnectionType=t6963
|
|||||||
# the ConnectionType. [default: 128x64; legal: 1x1 - 640x480]
|
# the ConnectionType. [default: 128x64; legal: 1x1 - 640x480]
|
||||||
#Size=128x64
|
#Size=128x64
|
||||||
|
|
||||||
# Width ond height of a character cell in pixels. This value is only used if
|
# Width and height of a character cell in pixels. This value is only used if
|
||||||
# the driver has been compiled with FreeType and it is enabled. Otherwise the
|
# the driver has been compiled with FreeType and it is enabled. Otherwise the
|
||||||
# default 6x8 cell is used.
|
# default 6x8 cell is used.
|
||||||
#CellSize=12x16
|
#CellSize=12x16
|
||||||
@@ -1053,7 +1053,7 @@ InterfaceType=80
|
|||||||
DelayMult=0
|
DelayMult=0
|
||||||
|
|
||||||
# The original wiring used an inverter to drive the control lines. If you do
|
# The original wiring used an inverter to drive the control lines. If you do
|
||||||
# not use an inverter set haveInverter to off. [default: yes; legal: yes, no]
|
# not use an inverter set haveInverter to no. [default: yes; legal: yes, no]
|
||||||
haveInverter=no
|
haveInverter=no
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -65,7 +65,7 @@ iface_process_configfile(void)
|
|||||||
iface[iface_count].alias = strdup(config_get_string("Iface", iface_label, 0, iface[iface_count].name));
|
iface[iface_count].alias = strdup(config_get_string("Iface", iface_label, 0, iface[iface_count].name));
|
||||||
if (iface[iface_count].alias == NULL)
|
if (iface[iface_count].alias == NULL)
|
||||||
/*
|
/*
|
||||||
* make alias the same as the interface name in case #
|
* make alias the same as the interface name in case
|
||||||
* strdup() failed
|
* strdup() failed
|
||||||
*/
|
*/
|
||||||
iface[iface_count].alias = iface[iface_count].name;
|
iface[iface_count].alias = iface[iface_count].name;
|
||||||
|
|||||||
@@ -276,9 +276,10 @@ mem_top_screen(int rep, int display, int *flags_ptr)
|
|||||||
|
|
||||||
/* frame from (2nd line, left) to (last line, right) */
|
/* frame from (2nd line, left) to (last line, right) */
|
||||||
sock_send_string(sock, "widget_add S f frame\n");
|
sock_send_string(sock, "widget_add S f frame\n");
|
||||||
|
|
||||||
|
/* scroll rate: 1 line every X ticks (= 1/8 sec) */
|
||||||
sock_printf(sock, "widget_set S f 1 2 %i %i %i 5 v %i\n",
|
sock_printf(sock, "widget_set S f 1 2 %i %i %i 5 v %i\n",
|
||||||
lcd_wid, lcd_hgt, lcd_wid,
|
lcd_wid, lcd_hgt, lcd_wid,
|
||||||
/* scroll rate: 1 line every X ticks (= 1/8 sec) */
|
|
||||||
((lcd_hgt >= 4) ? 8 : 12));
|
((lcd_hgt >= 4) ? 8 : 12));
|
||||||
|
|
||||||
/* frame contents */
|
/* frame contents */
|
||||||
|
|||||||
+1
-1
@@ -1,7 +1,7 @@
|
|||||||
/** \file server/client.h
|
/** \file server/client.h
|
||||||
* Defines all the client data and actions.
|
* Defines all the client data and actions.
|
||||||
*
|
*
|
||||||
* \note If you only need 'struct Client' to work with you should use the
|
* \note If you only need 'struct Client' to work with, you should use the
|
||||||
* following code (which does not create an indirect dependency on
|
* following code (which does not create an indirect dependency on
|
||||||
* 'struct Screen'):
|
* 'struct Screen'):
|
||||||
*
|
*
|
||||||
|
|||||||
+1
-1
@@ -1,7 +1,7 @@
|
|||||||
/** \file server/screen.h
|
/** \file server/screen.h
|
||||||
* Public interface to the screen management methods.
|
* Public interface to the screen management methods.
|
||||||
*
|
*
|
||||||
* \note If you only need 'struct Screen' to work with you should use the
|
* \note If you only need 'struct Screen' to work with, you should use the
|
||||||
* following code (which does not create an indirect dependency on
|
* following code (which does not create an indirect dependency on
|
||||||
* 'struct Widget'):
|
* 'struct Widget'):
|
||||||
*
|
*
|
||||||
|
|||||||
Reference in New Issue
Block a user