summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/wiz-fsim.cc
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2012-11-22 03:30:06 +0100
committerAdam Borowski <kilobyte@angband.pl>2012-11-22 04:34:29 +0100
commit44b6e7a985c2c5f852a6c9638bdca64259025d8e (patch)
tree83ba28d6144eb81ee574fc0a72892997e6adbaeb /crawl-ref/source/wiz-fsim.cc
parent064836cfdb99776b23764e3e460af59756e6beef (diff)
downloadcrawl-ref-44b6e7a985c2c5f852a6c9638bdca64259025d8e.tar.gz
crawl-ref-44b6e7a985c2c5f852a6c9638bdca64259025d8e.zip
Fix prompts asking for 'I' in Turkish locales.
They have I<->ı and İ<->i. Fortunately, people are quite unlikely to type capital letters in response to prompts, perhaps save for the stat gain one.
Diffstat (limited to 'crawl-ref/source/wiz-fsim.cc')
-rw-r--r--crawl-ref/source/wiz-fsim.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/wiz-fsim.cc b/crawl-ref/source/wiz-fsim.cc
index 43015bed1b..c3e4d69563 100644
--- a/crawl-ref/source/wiz-fsim.cc
+++ b/crawl-ref/source/wiz-fsim.cc
@@ -594,7 +594,7 @@ void wizard_fight_sim(bool double_scale)
{
mpr("(A)ttack or (D)efense?", MSGCH_PROMPT);
- switch (tolower(getchk()))
+ switch (toalower(getchk()))
{
case 'a':
case 'A':