Compare commits

..

No commits in common. "12a55a52f221ca572c455991682c1876b294f9d7" and "900ed23ebf146883e735cec3da3b60878ceeddb6" have entirely different histories.

2 changed files with 2 additions and 1 deletions

View File

@ -1,4 +1,4 @@
# Voicemeeter Remote Command Line Utility # VMRCLI Command Line Utility
## `Tested against` ## `Tested against`

View File

@ -215,6 +215,7 @@ void interactive(T_VBVMR_INTERFACE *vmr)
while (*p && !isspace(*p)) while (*p && !isspace(*p))
command[i++] = *p++; command[i++] = *p++;
command[i] = '\0'; command[i] = '\0';
p++; /* shift to next char */
if (command[0] != '\0') if (command[0] != '\0')
parse_command(vmr, command); parse_command(vmr, command);