Changeset - r2953:a59e10678800
[Not reviewed]
master
0 5 0
peter1138 - 18 years ago 2006-02-01 09:08:25
peter1138@openttd.org
(svn r3512) Yet more whitespace fixes (mostly by Rubidium)
3 files changed with 7 insertions and 8 deletions:
0 comments (0 inline, 0 general)
os/macosx/splash.c
Show inline comments
 
@@ -105,10 +105,8 @@ void DisplaySplashImage(void)
 

	
 
	memset(_screen.dst_ptr, 0xff, _screen.pitch * _screen.height);
 

	
 
	if(width > (uint) _screen.width)
 
		width = _screen.width;
 
	if(height > (uint) _screen.height)
 
		height = _screen.height;
 
	if (width > (uint) _screen.width) width = _screen.width;
 
	if (height > (uint) _screen.height) height = _screen.height;
 

	
 
	xoff = (_screen.width - width) / 2;
 
	yoff = (_screen.height - height) / 2;
settings.c
Show inline comments
 
@@ -130,10 +130,11 @@ static IniGroup *ini_group_alloc(IniFile
 
	IniGroup *grp = pool_alloc(&ini->pool, sizeof(IniGroup));
 
	grp->ini = ini;
 
	grp->name = pool_strdup(&ini->pool, grpt, len);
 
	if(!strcmp(grp->name, "newgrf") || !strcmp(grp->name, "servers") || !strcmp(grp->name, "bans") )
 
	if (!strcmp(grp->name, "newgrf") || !strcmp(grp->name, "servers") || !strcmp(grp->name, "bans")) {
 
		grp->type = IGT_LIST;
 
	else
 
	} else {
 
		grp->type = IGT_VARIABLES;
 
	}
 
	grp->next = NULL;
 
	grp->item = NULL;
 
	grp->comment = NULL;
sound/cocoa_s.c
Show inline comments
 
/* $Id$ */
 

	
 
/******************************************************************************************
 
/*****************************************************************************
 
 *                             Cocoa sound driver                                         *
 
 * Known things left to do:                                                               *
 
 * - Might need to do endian checking for it to work on both ppc and x86                  *
 
 ******************************************************************************************/
 
 *****************************************************************************/
 

	
 
#ifdef WITH_COCOA
 

	
0 comments (0 inline, 0 general)