summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/coord-circle.h
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2010-06-08 21:40:09 +0200
committerAdam Borowski <kilobyte@angband.pl>2010-06-08 21:40:09 +0200
commit13c6cab02a22a461521f9261bb9bbaa8ce51c4b9 (patch)
treeddeaa27d7627cd882b58423da9a2e5b184a1427f /crawl-ref/source/coord-circle.h
parenta7e9368205d063d909ea949a912e846997a7636f (diff)
downloadcrawl-ref-13c6cab02a22a461521f9261bb9bbaa8ce51c4b9.tar.gz
crawl-ref-13c6cab02a22a461521f9261bb9bbaa8ce51c4b9.zip
Bring sanity to enums by making them diffable/patchable.
Diffstat (limited to 'crawl-ref/source/coord-circle.h')
-rw-r--r--crawl-ref/source/coord-circle.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/coord-circle.h b/crawl-ref/source/coord-circle.h
index ee76c507cf..9228934cb9 100644
--- a/crawl-ref/source/coord-circle.h
+++ b/crawl-ref/source/coord-circle.h
@@ -6,7 +6,7 @@
enum shape_type
{
SH_SQUARE, // square around an origin
- SH_CIRCLE // circle around an origin
+ SH_CIRCLE, // circle around an origin
};
// External interface to circle_def shapes.
@@ -15,7 +15,7 @@ enum circle_type
C_SQUARE,
C_CIRCLE, // circle specified by pre-squared radius
C_POINTY, // circle with square radius r*r
- C_ROUND // circle with square radius r*r+1
+ C_ROUND, // circle with square radius r*r+1
};
class rectangle_iterator;