summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/initfile.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/initfile.cc')
-rw-r--r--crawl-ref/source/initfile.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/initfile.cc b/crawl-ref/source/initfile.cc
index eeb349a65b..3aa40954c6 100644
--- a/crawl-ref/source/initfile.cc
+++ b/crawl-ref/source/initfile.cc
@@ -1856,7 +1856,7 @@ static void _bindkey(std::string field)
}
else if (key_str.length() == 2)
{
- if(key_str[0] != '^')
+ if (key_str[0] != '^')
{
mprf(MSGCH_ERROR, "Invalid key '%s' in bindkey directive '%s'",
key_str.c_str(), field.c_str());
@@ -3178,7 +3178,7 @@ void game_options::read_option_line(const std::string &str, bool runscript)
}
#endif
- else if(key == "bindkey")
+ else if (key == "bindkey")
{
_bindkey(field);
}