Skip to content

Commit

Permalink
Fixed a couple old references to 'libmpr' in source file.
Browse files Browse the repository at this point in the history
  • Loading branch information
malloch committed Jun 8, 2023
1 parent 86bef04 commit 4fcb9f1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions mpr.device/mpr.device.c
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ static void *mpr_device_new(t_symbol *s, int argc, t_atom *argv)

x->device = mpr_dev_new(x->name, 0);
if (!x->device) {
object_post((t_object *)x, "error initializing libmpr device.");
object_post((t_object *)x, "error initializing libmapper device.");
return 0;
}
x->graph = mpr_obj_get_graph(x->device);
Expand All @@ -191,7 +191,7 @@ static void *mpr_device_new(t_symbol *s, int argc, t_atom *argv)
return 0;
}

object_post((t_object *)x, "Using libmpr version %s – visit libmapper.org"
object_post((t_object *)x, "Using libmapper version %s – visit libmapper.org"
" for more information.", mpr_get_version());
object_post((t_object *)x, "Connecting to network interface %s...",
mpr_graph_get_interface(x->graph));
Expand Down Expand Up @@ -641,7 +641,7 @@ static void mpr_device_sig_handler(mpr_sig sig, mpr_sig_evt evt, mpr_id inst, in
}

// *********************************************************
// -(poll libmpr)-------------------------------------------
// -(poll libmapper)----------------------------------------
static void mpr_device_poll(t_mpr_device *x)
{
int count = x->throttle;
Expand Down

0 comments on commit 4fcb9f1

Please sign in to comment.