DBG: use the correct string split on cmddirectexec
This commit is contained in:
parent
94561bb255
commit
c4587670b3
|
|
@ -275,7 +275,7 @@ bool cmddirectexec(const char* cmd)
|
|||
return false;
|
||||
|
||||
StringList commands;
|
||||
StringUtils::Split(cmd, ';');
|
||||
StringUtils::Split(cmd, ';', commands);
|
||||
for(auto & command : commands)
|
||||
{
|
||||
command = StringUtils::Trim(command);
|
||||
|
|
|
|||
Loading…
Reference in New Issue