summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJens Arnold <amiconn@rockbox.org>2006-10-08 17:27:33 +0000
committerJens Arnold <amiconn@rockbox.org>2006-10-08 17:27:33 +0000
commitdfcbcd1235c670d2d6c909189a18f1876cce8bc5 (patch)
tree278205df3c5b578e6a1ea594fb305e18f858e64d
parentb837e45591a4a1b5a3e779d2f970d480bf81310f (diff)
downloadrockbox-dfcbcd1235c670d2d6c909189a18f1876cce8bc5.tar.gz
rockbox-dfcbcd1235c670d2d6c909189a18f1876cce8bc5.zip
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
-rw-r--r--apps/plugins/rockblox.c4
1 files changed, 4 insertions, 0 deletions
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)
447 447
448static inline int level_speed(int level) 448static inline int level_speed(int level)
449{ 449{
450#if BOARD_HEIGHT == 20
450 return (5*HZ) / (level + 9); 451 return (5*HZ) / (level + 9);
452#elif BOARD_HEIGHT == 14
453 return (7*HZ) / (level + 9);
454#endif
451} 455}
452 456
453static int getRelativeX (int figure, int square, int orientation) 457static int getRelativeX (int figure, int square, int orientation)