From 0906626513b45e9d8d822df69f6d23614c887297 Mon Sep 17 00:00:00 2001 From: MightyPork Date: Thu, 25 Dec 2014 02:04:27 +0100 Subject: [PATCH] slightly slowed memogame btn walk speed --- projects/color-memory-game/main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/projects/color-memory-game/main.c b/projects/color-memory-game/main.c index d33f479..9176b4b 100644 --- a/projects/color-memory-game/main.c +++ b/projects/color-memory-game/main.c @@ -30,7 +30,7 @@ #define PAIR_COUNT (CARD_COUNT / 2) // when the "small" pin is DOWN, only this many cards are dealt - on the same board size -#define CARD_COUNT_SMALL 18 +#define CARD_COUNT_SMALL 12 // color palette const xrgb_t COLORS[] = { @@ -210,7 +210,7 @@ uint8_t tile2; #define HIDE_TIME 100 // length of button holding before it's repeated (in 10ms) -#define BTNHOLD_REPEAT 15 +#define BTNHOLD_REPEAT 20 uint8_t btn_hold_cnt[DEBO_CHANNELS];