summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/tilepick.cc
diff options
context:
space:
mode:
authorDavid Lawrence Ramsey <dolorous@users.sourceforge.net>2009-09-23 21:50:33 -0500
committerDavid Lawrence Ramsey <dolorous@users.sourceforge.net>2009-09-23 21:50:33 -0500
commitb0ed14492f4344a3c3247fdc206fad74a2973bfe (patch)
tree6521cddd673638b367a3f5f3677c12fca9686bfc /crawl-ref/source/tilepick.cc
parentb8e97166ca3207b75e437f852679c8c4b8e75b6c (diff)
downloadcrawl-ref-b0ed14492f4344a3c3247fdc206fad74a2973bfe.tar.gz
crawl-ref-b0ed14492f4344a3c3247fdc206fad74a2973bfe.zip
Add spelling fixes.
Diffstat (limited to 'crawl-ref/source/tilepick.cc')
-rw-r--r--crawl-ref/source/tilepick.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/crawl-ref/source/tilepick.cc b/crawl-ref/source/tilepick.cc
index ff0f574ebd..b7971cfd64 100644
--- a/crawl-ref/source/tilepick.cc
+++ b/crawl-ref/source/tilepick.cc
@@ -2959,7 +2959,7 @@ int tileidx_spell(spell_type spell)
}
// Modify wall tile index depending on floor/wall flavour.
-static inline void _finalize_tile(unsigned int *tile,
+static inline void _finalise_tile(unsigned int *tile,
unsigned char wall_flv,
unsigned char floor_flv,
unsigned char special_flv,
@@ -4415,7 +4415,7 @@ void tile_floor_halo(dungeon_feature_type target, int tile)
}
else if (u_spc && d_spc)
{
- // We know this value is already initialized and
+ // We know this value is already initialised and
// is necessarily in bounds.
int t = env.tile_flv[x][y-1].floor - tile;
if (t == SPECIAL_NE || t == SPECIAL_E)
@@ -4427,7 +4427,7 @@ void tile_floor_halo(dungeon_feature_type target, int tile)
}
else if (r_spc && l_spc)
{
- // We know this value is already initialized and
+ // We know this value is already initialised and
// is necessarily in bounds.
int t = env.tile_flv[x-1][y].floor - tile;
if (t == SPECIAL_NW || t == SPECIAL_N)
@@ -4748,7 +4748,7 @@ void tile_finish_dngn(unsigned int *tileb, int cx, int cy)
special_flv = env.tile_flv(gc).special;
}
- _finalize_tile(&tileb[count+1], wall_flv, floor_flv, special_flv,
+ _finalise_tile(&tileb[count+1], wall_flv, floor_flv, special_flv,
gc);
if (is_excluded(gc))