diff options
-rw-r--r-- | pd_client.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pd_client.pl b/pd_client.pl index e0a83f3..4938dd4 100644 --- a/pd_client.pl +++ b/pd_client.pl @@ -13,7 +13,7 @@ launch(Module, StreamIn, StreamOut) :- atom_concat('rules/', Module, Path), consult(Path), do([], StreamIn, StreamOut, Module, [], []). -do(e, _, _, _, _) :- !. +do(e, _, _, _, _, _) :- !. do(Choice, StreamIn, StreamOut, Module, ModuleState, Hist) :- call(Module, Hist, ModuleDecision, ModuleState, NewModuleState), write(StreamOut, ModuleDecision), flush_output(StreamOut), |