summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/abl-show.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/abl-show.cc')
-rw-r--r--crawl-ref/source/abl-show.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/crawl-ref/source/abl-show.cc b/crawl-ref/source/abl-show.cc
index 62be13def5..d86c658715 100644
--- a/crawl-ref/source/abl-show.cc
+++ b/crawl-ref/source/abl-show.cc
@@ -851,7 +851,7 @@ bool activate_ability()
const int keyin = get_ch();
- if ( keyin == '?' || keyin == '*' )
+ if (keyin == '?' || keyin == '*')
{
selected = choose_ability_menu(talents);
if (selected == -1)
@@ -860,8 +860,8 @@ bool activate_ability()
return (false);
}
}
- else if (keyin == ESCAPE || keyin == ' ' ||
- keyin == '\r' || keyin == '\n')
+ else if (keyin == ESCAPE || keyin == ' '
+ || keyin == '\r' || keyin == '\n')
{
canned_msg( MSG_OK );
return (false);