From dfcbcd1235c670d2d6c909189a18f1876cce8bc5 Mon Sep 17 00:00:00 2001 From: Jens Arnold Date: Sun, 8 Oct 2006 17:27:33 +0000 Subject: Make rockblox a little slower on player to further account for the lower line count. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11150 a1c6a512-1295-4272-9138-f99709370657 --- apps/plugins/rockblox.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'apps') diff --git a/apps/plugins/rockblox.c b/apps/plugins/rockblox.c index 3bdae489f3..a3f5b16d52 100644 --- a/apps/plugins/rockblox.c +++ b/apps/plugins/rockblox.c @@ -447,7 +447,11 @@ static void init_rockblox (void) static inline int level_speed(int level) { +#if BOARD_HEIGHT == 20 return (5*HZ) / (level + 9); +#elif BOARD_HEIGHT == 14 + return (7*HZ) / (level + 9); +#endif } static int getRelativeX (int figure, int square, int orientation) -- cgit v1.2.3