Skip to content
Snippets Groups Projects
Commit cd9f9865 authored by Florent Berthaut's avatar Florent Berthaut
Browse files

Fix osc reception in c++ and sending in gdpd patch

parent c796267b
No related branches found
No related tags found
No related merge requests found
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
......@@ -425,7 +425,10 @@ void GdPd::_process(double delta) {
}
if(mode==OSC) {
if(m_receiver!=NULL) {
lo_server_recv_noblock(m_receiver, 10);
int bytes = 1;
while(bytes>0) {
bytes = lo_server_recv_noblock(m_receiver, 0);
}
}
}
else {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment