mirror of
https://github.com/chibicitiberiu/rainmeter-studio.git
synced 2024-02-24 04:33:31 +00:00
Fixed PLAY command issue in r904.
This commit is contained in:
parent
91654989ff
commit
12be2ffad1
@ -3269,7 +3269,7 @@ void CRainmeter::ExecuteCommand(const WCHAR* command, CMeterWindow* meterWindow)
|
||||
|
||||
if (!strCommand.empty())
|
||||
{
|
||||
const WCHAR* command = strCommand.c_str();
|
||||
command = strCommand.c_str();
|
||||
|
||||
if (command[0] == L'!' && Rainmeter->GetDummyLitestep()) // Bangs
|
||||
{
|
||||
@ -3316,7 +3316,7 @@ void CRainmeter::ExecuteCommand(const WCHAR* command, CMeterWindow* meterWindow)
|
||||
command += 4; // Skip LOOP
|
||||
}
|
||||
|
||||
if (command[1] == L' ')
|
||||
if (command[0] == L' ')
|
||||
{
|
||||
command += 1; // Skip the space
|
||||
strCommand = command;
|
||||
|
Loading…
Reference in New Issue
Block a user