Use cmake to determine which string func we need.
On a side note, better to default to linux names when possible.
This commit is contained in:
@@ -204,7 +204,7 @@ bool NoteSkinManager::NoteSkinNameInList(const RString name, vector<RString> nam
|
||||
{
|
||||
for(size_t i= 0; i < name_list.size(); ++i)
|
||||
{
|
||||
if(0 == stricmp(name, name_list[i]))
|
||||
if(0 == strcasecmp(name, name_list[i]))
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user