From 13c33e02d7207ed1e9727ee84c61dc9857613bb4 Mon Sep 17 00:00:00 2001
From: "Jan \"Yenya\" Kasprzak" <kas@fi.muni.cz>
Date: Thu, 28 Feb 2013 00:57:35 +0100
Subject: [PATCH] pattern.c: num_pattern(10) is also allowed

---
 firmware/pattern.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/firmware/pattern.c b/firmware/pattern.c
index 03a7517..43a1150 100644
--- a/firmware/pattern.c
+++ b/firmware/pattern.c
@@ -113,8 +113,8 @@ void init_pattern()
 
 pattern_t *number_pattern(unsigned char num, unsigned char inv)
 {
-	if (num >= 9)
-		num = 9;
+	if (num >= 10)
+		num = 10;
 
 	if (inv) {
 		return pattern_invnum
-- 
2.43.5