mirror of
https://github.com/moparisthebest/minetest
synced 2024-11-04 08:25:01 -05:00
Fix bug introduced by me (Zeno)
This commit is contained in:
parent
dd4c21c180
commit
6c9bbb0360
@ -125,9 +125,10 @@ inline std::vector<std::string> str_split(const std::string &str, char delimiter
|
|||||||
|
|
||||||
inline std::string lowercase(const std::string &s)
|
inline std::string lowercase(const std::string &s)
|
||||||
{
|
{
|
||||||
std::string s2;
|
std::string s2 = s;
|
||||||
for(size_t i = 0; i < s.size(); i++)
|
for(size_t i = 0; i < s.size(); i++)
|
||||||
s2[i] = tolower(s.at(i));
|
if (isupper(s2.at(i)))
|
||||||
|
s2[i] = tolower(s2.at(i));
|
||||||
return s2;
|
return s2;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user