From bd99f557b87f42060b12be2997731a3b7947fae4 Mon Sep 17 00:00:00 2001 From: Christian Kroll Date: Fri, 2 Sep 2011 08:02:03 +0000 Subject: [PATCH] oops... --- animations/mherweg.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/animations/mherweg.c b/animations/mherweg.c index 8683965..d443a00 100644 --- a/animations/mherweg.c +++ b/animations/mherweg.c @@ -20,7 +20,7 @@ // use 8 bit operands where feasible -#if NUM_ROWS < 127 && NUM_COLS < 127 +#if NUM_ROWS < 64 && NUM_COLS < 64 typedef signed char operand_t; #else typedef int operand_t; @@ -265,7 +265,7 @@ static void dots1() wait(glimmer_delay); } - // wait up to 2.5 seconds until the next dot is drawn + // wait up to 2.5 seconds before the next dot is drawn wait(random8() * 10); } }