aboutsummaryrefslogtreecommitdiff
path: root/text_file_functions.cpp
diff options
context:
space:
mode:
authorDavid Skoland <davidskoland@gmail.com>2018-11-16 02:37:57 +0100
committerDavid Skoland <davidskoland@gmail.com>2018-11-16 02:37:57 +0100
commitee4b9acfeb1a860cf67957548c544ff893ce71bb (patch)
treec9f3ab70d7a97d411bbf2d3316b3e228c796d8ce /text_file_functions.cpp
parent727c39a1df42a5aba8a9c863ee2f05169d204ffa (diff)
fixed get_sounds_path as well + nuked the last unneccessary tolower calls
Diffstat (limited to 'text_file_functions.cpp')
-rw-r--r--text_file_functions.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/text_file_functions.cpp b/text_file_functions.cpp
index e31ff862..f63e720c 100644
--- a/text_file_functions.cpp
+++ b/text_file_functions.cpp
@@ -433,14 +433,14 @@ QString AOApplication::get_chat(QString p_char)
QString f_result = read_char_ini(p_char, "chat", "[Options]", "[Time]");
//handling the correct order of chat is a bit complicated, we let the caller do it
- return f_result.toLower();
+ return f_result;
}
QString AOApplication::get_char_shouts(QString p_char)
{
QString f_result = read_char_ini(p_char, "shouts", "[Options]", "[Time]");
- return f_result.toLower();
+ return f_result;
}
int AOApplication::get_preanim_duration(QString p_char, QString p_emote)