mirror of
https://github.com/chibicitiberiu/rainmeter-studio.git
synced 2024-02-24 04:33:31 +00:00
NowPlaying plugin: Fix measure name case sensitivity comparing in PlayerName option
This commit is contained in:
parent
02517c1ef1
commit
814098f0cd
@ -88,7 +88,7 @@ PLUGIN_EXPORT void Reload(void* data, void* rm, double* maxValue)
|
|||||||
for ( ; iter != g_ParentMeasures.end(); ++iter)
|
for ( ; iter != g_ParentMeasures.end(); ++iter)
|
||||||
{
|
{
|
||||||
if (skin == (*iter)->skin &&
|
if (skin == (*iter)->skin &&
|
||||||
wcsncmp(str, (*iter)->ownerName, len) == 0)
|
_wcsnicmp(str, (*iter)->ownerName, len) == 0)
|
||||||
{
|
{
|
||||||
// Use same ParentMeasure as referenced section
|
// Use same ParentMeasure as referenced section
|
||||||
measure->parent = (*iter);
|
measure->parent = (*iter);
|
||||||
|
Loading…
Reference in New Issue
Block a user