Improve and cleanup OSC control and translation

Changed default send Port to 7001. Updated documentation.
This commit is contained in:
Bruno Herbelin
2021-12-27 17:28:11 +01:00
parent c79be090df
commit 4b8efabc5f
5 changed files with 81 additions and 55 deletions

View File

@@ -393,7 +393,7 @@ bool Session::empty() const
SourceList::iterator Session::at(int index)
{
if (index<0)
if ( index < 0 || index > (int) sources_.size())
return sources_.end();
int i = 0;