Browse Source

Mixer: Don't allow ',' in OSC paths.

tags/non-daw-v1.1.0
Jonathan Moore Liles 13 years ago
parent
commit
0590687857
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      mixer/src/Module.C

+ 1
- 1
mixer/src/Module.C View File

@@ -222,7 +222,7 @@ Module::Port::generate_osc_path ()
// Hack to keep spaces out of OSC URL... Probably need to handle other special characters similarly.
for ( int i = strlen( path ); i--; )
{
if ( path[i] == ' ' )
if ( path[i] == ' ' || path[i] == ',' )
path[i] = '_';
}



Loading…
Cancel
Save