mirror of
https://github.com/chibicitiberiu/rainmeter-studio.git
synced 2024-02-24 04:33:31 +00:00
Fixed PLAYSTOP case sensitivity.
This commit is contained in:
parent
dd4edd3df0
commit
8ae8a1b73d
@ -3130,7 +3130,7 @@ void CRainmeter::ExecuteCommand(const WCHAR* command, CMeterWindow* meterWindow)
|
|||||||
}
|
}
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
else if (wcsncmp(L"PLAYSTOP", strCommand.c_str(), 8) == 0)
|
else if (_wcsnicmp(L"PLAYSTOP", strCommand.c_str(), 8) == 0)
|
||||||
{
|
{
|
||||||
PlaySound(NULL, NULL, SND_PURGE);
|
PlaySound(NULL, NULL, SND_PURGE);
|
||||||
return;
|
return;
|
||||||
|
Loading…
Reference in New Issue
Block a user