~ubuntu-branches/debian/squeeze/freeciv/squeeze

« back to all changes in this revision

Viewing changes to common/map.h

  • Committer: Bazaar Package Importer
  • Author(s): Clint Adams
  • Date: 2009-06-22 22:41:51 UTC
  • mfrom: (1.2.10 upstream)
  • Revision ID: james.westby@ubuntu.com-20090622224151-w8tzzniems5f6kdn
Tags: 2.1.9-1
* New upstream version.
  - Update 99_build_without_ggzd.diff.
* Bump to Standards-Version 3.8.2.

Show diffs side-by-side

added added

removed removed

Lines of Context:
77
77
  TF_HEX = 8
78
78
};
79
79
 
 
80
/* Parameters for terrain counting functions. */
 
81
static const bool C_ADJACENT = FALSE;
 
82
static const bool C_CARDINAL = TRUE;
 
83
static const bool C_NUMBER = FALSE;
 
84
static const bool C_PERCENT = TRUE;
 
85
 
80
86
#define MAP_IS_ISOMETRIC (topo_has_flag(TF_ISO) || topo_has_flag(TF_HEX))
81
87
 
82
88
#define CURRENT_TOPOLOGY (map.topology_id)