mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Merge pull request #14502 from Kingcom/armips
Transform labels to lower case for armips
This commit is contained in:
commit
09bd12f6c9
1 changed files with 1 additions and 0 deletions
|
@ -1013,6 +1013,7 @@ void SymbolMap::GetLabels(std::vector<LabelDefinition> &dest) {
|
|||
LabelDefinition entry;
|
||||
entry.value = it->first;
|
||||
entry.name = ConvertUTF8ToWString(it->second.name);
|
||||
std::transform(entry.name.begin(), entry.name.end(), entry.name.begin(), ::towlower);
|
||||
dest.push_back(entry);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue