diff --git a/aegisub/src/ass_file.cpp b/aegisub/src/ass_file.cpp index 3aaa8cb9f..5ee633e1c 100644 --- a/aegisub/src/ass_file.cpp +++ b/aegisub/src/ass_file.cpp @@ -598,7 +598,7 @@ void AssFile::InsertAttachment (wxString filename) { } wxString AssFile::GetScriptInfo(wxString key) { - key.Lower(); + key.MakeLower(); key += ":"; bool GotIn = false; @@ -606,7 +606,7 @@ wxString AssFile::GetScriptInfo(wxString key) { if ((*cur)->group == "[Script Info]") { GotIn = true; wxString curText = (*cur)->GetEntryData(); - curText.Lower(); + curText.MakeLower(); wxString value; if (curText.StartsWith(key, &value))