summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Schodet2012-05-19 20:25:36 +0200
committerNicolas Schodet2012-05-19 20:25:36 +0200
commit98b3e413b309082c8b9c8afcc823fa15aa01608a (patch)
treecfb930542a8412850e0e7dff12a6f50083940e86
parent7c890bc9d19e17d523b49ba7827e67b9273f738d (diff)
digital/io-hub/src/guybrush: fix chaos move distance
-rw-r--r--digital/io-hub/src/guybrush/top.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/digital/io-hub/src/guybrush/top.c b/digital/io-hub/src/guybrush/top.c
index ea0b69dc..a8c4c5c3 100644
--- a/digital/io-hub/src/guybrush/top.c
+++ b/digital/io-hub/src/guybrush/top.c
@@ -194,7 +194,7 @@ top_chaos_move (void)
}
else
{
- int16_t dist = ((top.chaos + 3) % 8 + 1) * 100;
+ int16_t dist = ((top.chaos + 3) % 8 + 1) * 10;
if (!(top.chaos % 2))
dist = -dist;
asserv_move_linearly (dist);