Changeset - r2024:d9ab0d29ee0d
[Not reviewed]
master
0 1 0
tron - 19 years ago 2005-07-08 19:46:41
tron@openttd.org
(svn r2533) Move misplaced parenthesis, found by ludde
1 file changed with 1 insertions and 1 deletions:
map.c
1
1
0 comments (0 inline, 0 general)
map.c
Show inline comments
 
@@ -39,7 +39,7 @@ void InitMap(uint log_x, uint log_y)
 
	_map3_hi   = realloc(_map3_hi,   map_size * sizeof(_map3_hi[0]));
 
	_map5      = realloc(_map5,      map_size * sizeof(_map5[0]));
 
	_map_extra_bits =
 
		realloc(_map_extra_bits, map_size * sizeof(_map_extra_bits[0] / 4));
 
		realloc(_map_extra_bits, map_size * sizeof(_map_extra_bits[0]) / 4);
 

	
 
	// XXX TODO handle memory shortage more gracefully
 
	if (_map_type_and_height == NULL ||
0 comments (0 inline, 0 general)