Changeset - r16409:9a88093d14c8
[Not reviewed]
master
0 1 0
smatz - 14 years ago 2010-11-10 19:54:20
smatz@openttd.org
(svn r21135) -Fix (r19870): silencing gcc 3.3 warnings caused gcc 4.0 to warn
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
src/table/settings.h
Show inline comments
 
@@ -93,7 +93,7 @@ static bool UpdateClientConfigValues(int
 
 */
 

	
 
#define NSD_GENERAL(name, def, cmd, guiflags, min, max, interval, many, str, proc, load)\
 
	{name, (const void*)(ptrdiff_t)(def), {(byte)cmd}, {(uint16)guiflags}, min, max, interval, many, str, proc, load}
 
	{name, (const void*)(size_t)(def), {(byte)cmd}, {(uint16)guiflags}, min, max, interval, many, str, proc, load}
 

	
 
/* Macros for various objects to go in the configuration file.
 
 * This section is for global variables */
0 comments (0 inline, 0 general)