summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/defines.h
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-06-10 07:09:17 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-06-10 07:09:17 +0000
commit5fa3929b28b5d95811818871a7c8053acd6ea54a (patch)
tree217104efae7f855ec6478216d1abb310e2a2499c /crawl-ref/source/defines.h
parent6e0782d31cbb3ff5b87b059264df6fe8f09a69df (diff)
downloadcrawl-ref-5fa3929b28b5d95811818871a7c8053acd6ea54a.tar.gz
crawl-ref-5fa3929b28b5d95811818871a7c8053acd6ea54a.zip
Add still more whitespace fixes.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@5694 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/defines.h')
-rw-r--r--crawl-ref/source/defines.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/crawl-ref/source/defines.h b/crawl-ref/source/defines.h
index 4202294609..267e81ffce 100644
--- a/crawl-ref/source/defines.h
+++ b/crawl-ref/source/defines.h
@@ -191,7 +191,7 @@ const int LABYRINTH_BORDER = 4;
#define SL_BUZZ 6
#define SL_GROWL 8
#define SL_MOAN 8
-#define SL_SPLASH 8
+#define SL_SPLASH 8
#define SL_CREAK 8
#define SL_CROAK 8
#define SL_BARK 10
@@ -277,7 +277,7 @@ const int LABYRINTH_BORDER = 4;
CHATTR_REVERSE, /* 5 */
CHATTR_DIM,
CHATTR_HILITE,
-
+
CHATTR_ATTRMASK = 0xF, /* 15 (well, obviously) */
CHATTR_COLMASK = 0xF00 // Mask with this to get extra colour info.
@@ -294,8 +294,8 @@ const int LABYRINTH_BORDER = 4;
#define MINIMUM( xxx, yyy ) (((xxx) < (yyy)) ? (xxx) : (yyy))
#define MAXIMUM( xxx, yyy ) (((xxx) > (yyy)) ? (xxx) : (yyy))
-// Convert capital letters into mystic numbers representing
-// CTRL sequences. This is a macro because a lot of the type
+// Convert capital letters into mystic numbers representing
+// CTRL sequences. This is a macro because a lot of the type
// it wants to be used in case labels.
#define CONTROL( xxx ) ((xxx) - 'A' + 1)