OSC: fix check for a valid OSC server

This commit is contained in:
Alexandre Quessy
2014-10-16 20:31:14 -04:00
parent e31e412378
commit 7e89ee4ed7
2 changed files with 6 additions and 1 deletions
+5
View File
@@ -218,6 +218,11 @@ void OscInterface::applyOscCommand(MainWindow &main_window, QVariantList & comma
//std::cout << "load /mapmap/paint/media/load " << paint_id << " " << image_uri << std::endl;
main_window.setTextureUri(paint_id, image_uri);
}
else
{
std::cout << "Unhandled OSC message: ";
printCommand(command);
}
//else if (path == "/add/quad")
// addQuad();
+1 -1
View File
@@ -9,8 +9,8 @@ OscReceiver::OscReceiver(const std::string &port) :
port_(port),
server_(0)
{
server_is_ok_ = (server_ != NULL);
server_ = lo_server_thread_new(port_.c_str(), error);
server_is_ok_ = (server_ != NULL);
// #ifdef CONFIG_DEBUG
// /* add method that will match any path and args */
// lo_server_thread_add_method(server_, NULL, NULL, genericHandler, this);