summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/xom.cc
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-06-25 17:45:51 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-06-25 17:45:51 +0000
commiteef749ceb30bf5694dfe06646fde3f2493dc1fa0 (patch)
treec490de25d3df102d273c1a7f440f35b85d3d7c71 /crawl-ref/source/xom.cc
parent4668568ce094c6e9d5bd06e97f3c8f32db89a007 (diff)
downloadcrawl-ref-eef749ceb30bf5694dfe06646fde3f2493dc1fa0.tar.gz
crawl-ref-eef749ceb30bf5694dfe06646fde3f2493dc1fa0.zip
Add more minor cosmetic fixes.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@6138 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/xom.cc')
-rw-r--r--crawl-ref/source/xom.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/crawl-ref/source/xom.cc b/crawl-ref/source/xom.cc
index 5d90c20a17..4d76aca3e7 100644
--- a/crawl-ref/source/xom.cc
+++ b/crawl-ref/source/xom.cc
@@ -67,7 +67,7 @@ static const spell_type _xom_spells[] =
SPELL_NECROMUTATION
};
-static const char* _xom_message_arrays[NUM_XOM_MESSAGE_TYPES][6] =
+static const char *_xom_message_arrays[NUM_XOM_MESSAGE_TYPES][6] =
{
// XM_NORMAL
{
@@ -104,7 +104,7 @@ const char *describe_xom_favour()
: "A beloved plaything of Xom.";
}
-static const char* _get_xom_speech(const std::string key)
+static const char *_get_xom_speech(const std::string key)
{
std::string result = getSpeakString("Xom " + key);
@@ -125,7 +125,7 @@ bool xom_is_nice()
}
static void _xom_is_stimulated(int maxinterestingness,
- const char* message_array[],
+ const char *message_array[],
bool force_message)
{
if (you.religion != GOD_XOM || maxinterestingness <= 0)
@@ -172,7 +172,7 @@ void xom_is_stimulated(int maxinterestingness, xom_message_type message_type,
void xom_is_stimulated(int maxinterestingness, const std::string& message,
bool force_message)
{
- const char* message_array[6];
+ const char *message_array[6];
for (int i = 0; i < 6; ++i)
message_array[i] = message.c_str();