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:
|
||||
# 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,
|
||||
# mdm166a, ms6931, mtc_s16209x, MtxOrb, mx5000, NoritakeVFD, picolcd,
|
||||
# pyramid, sdeclcd, sed1330, sed1520, serialPOS, serialVFD, shuttleVFD, sli,
|
||||
@@ -359,7 +359,7 @@ ConnectionType=t6963
|
||||
# the ConnectionType. [default: 128x64; legal: 1x1 - 640x480]
|
||||
#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
|
||||
# default 6x8 cell is used.
|
||||
#CellSize=12x16
|
||||
@@ -1053,7 +1053,7 @@ InterfaceType=80
|
||||
DelayMult=0
|
||||
|
||||
# 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
|
||||
|
||||
|
||||
|
||||
@@ -65,7 +65,7 @@ iface_process_configfile(void)
|
||||
iface[iface_count].alias = strdup(config_get_string("Iface", iface_label, 0, iface[iface_count].name));
|
||||
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
|
||||
*/
|
||||
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) */
|
||||
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",
|
||||
lcd_wid, lcd_hgt, lcd_wid,
|
||||
/* scroll rate: 1 line every X ticks (= 1/8 sec) */
|
||||
((lcd_hgt >= 4) ? 8 : 12));
|
||||
|
||||
/* frame contents */
|
||||
|
||||
+1
-1
@@ -1,7 +1,7 @@
|
||||
/** \file server/client.h
|
||||
* 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
|
||||
* 'struct Screen'):
|
||||
*
|
||||
|
||||
+1
-1
@@ -1,7 +1,7 @@
|
||||
/** \file server/screen.h
|
||||
* 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
|
||||
* 'struct Widget'):
|
||||
*
|
||||
|
||||
Reference in New Issue
Block a user