From 3fbd9ce6747b78a1a87fd1277682e9f8a80524f0 Mon Sep 17 00:00:00 2001 From: Christian Kroll Date: Tue, 17 Jun 2014 20:45:26 +0200 Subject: [PATCH] thisisnotdetroit.c: speed up scrolling --- src/animations/bitmapscroller/thisisnotdetroit.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/animations/bitmapscroller/thisisnotdetroit.c b/src/animations/bitmapscroller/thisisnotdetroit.c index bcd149e..2241a43 100644 --- a/src/animations/bitmapscroller/thisisnotdetroit.c +++ b/src/animations/bitmapscroller/thisisnotdetroit.c @@ -135,7 +135,7 @@ static uint8_t logo_thisIsNotDetroit_getChunk(unsigned char const nBitPlane, void logo_thisIsNotDetroit() { - // width 64, height 55, 2 bitplanes (4 colors), 600 frames à 100ms + // width 64, height 55, 2 bitplanes (4 colors), 600 frames à 75ms // frame change and viewport movement after every cyle (both dividers are 1) - bitmap_scroll(64, 55, 2, 600, 100, 1, 1, logo_thisIsNotDetroit_getChunk); + bitmap_scroll(64, 55, 2, 600, 75, 1, 1, logo_thisIsNotDetroit_getChunk); }