summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/command.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/command.cc')
-rw-r--r--crawl-ref/source/command.cc5
1 files changed, 2 insertions, 3 deletions
diff --git a/crawl-ref/source/command.cc b/crawl-ref/source/command.cc
index 7ef2c502dd..6efd53eb59 100644
--- a/crawl-ref/source/command.cc
+++ b/crawl-ref/source/command.cc
@@ -231,7 +231,7 @@ static void adjust_spells(void)
}
index_1 = letter_to_index( input_1 );
- int spell = get_spell_by_letter( input_1 );
+ spell_type spell = get_spell_by_letter( input_1 );
if (spell == SPELL_NO_SPELL)
{
@@ -241,8 +241,7 @@ static void adjust_spells(void)
}
// print out targeted spell:
- snprintf( info, INFO_SIZE, "%c - %s", input_1, spell_title( spell ) );
- mpr(info);
+ mprf( "%c - %s", input_1, spell_title( spell ) );
mpr( "Adjust to which letter?", MSGCH_PROMPT );