aboutsummaryrefslogtreecommitdiff
path: root/system/pdp_control.c
diff options
context:
space:
mode:
Diffstat (limited to 'system/pdp_control.c')
-rw-r--r--system/pdp_control.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/system/pdp_control.c b/system/pdp_control.c
index a7ee0c7..1053f6d 100644
--- a/system/pdp_control.c
+++ b/system/pdp_control.c
@@ -64,11 +64,11 @@ static void pdp_control_thread(t_pdp_control *x, t_floatarg f)
int t = (int)f;
if (t){
- post("pdp_control: switching on processing in thread");
+ post("pdp_control: pdp is now using its own processing thread");
pdp_queue_use_thread(1);
}
else {
- post("pdp_control: switching off processing in thread");
+ post("pdp_control: pdp is now using the main pd thread");
pdp_queue_use_thread(0);
}
}