summaryrefslogtreecommitdiff
path: root/2003/i/buzz/src/busp/test_busp.cc
diff options
context:
space:
mode:
authorschodet2003-05-25 16:50:59 +0000
committerschodet2003-05-25 16:50:59 +0000
commit8808da5ae1dbc8f005bd5b2267cf31478d94b9e5 (patch)
tree24e73f119c30e9711f569150b3bbc019fb83661c /2003/i/buzz/src/busp/test_busp.cc
parent22908ff52497b931b762c5e87e19f2a47dfc100a (diff)
Fix: ça compile
Add: utilisation de Config
Diffstat (limited to '2003/i/buzz/src/busp/test_busp.cc')
-rw-r--r--2003/i/buzz/src/busp/test_busp.cc4
1 files changed, 3 insertions, 1 deletions
diff --git a/2003/i/buzz/src/busp/test_busp.cc b/2003/i/buzz/src/busp/test_busp.cc
index a3b7c9e..154e83c 100644
--- a/2003/i/buzz/src/busp/test_busp.cc
+++ b/2003/i/buzz/src/busp/test_busp.cc
@@ -81,7 +81,7 @@ main (int argc, char **argv)
if (strcmp (argv[2], "all") == 0)
{
busp.getActionneurs ().setAll (atoi (argv[3]),
- atoi (argv[4]))
+ atoi (argv[4]));
}
else
{
@@ -191,6 +191,8 @@ testCapteurs (void)
while (1)
{
Busp::getInstance ().getCapteurs ().dump ();
+ cout << '\r';
+ cout.flush ();
sleep (1);
}
}