diff options
| author | Jens Arnold <amiconn@rockbox.org> | 2006-10-08 17:27:33 +0000 |
|---|---|---|
| committer | Jens Arnold <amiconn@rockbox.org> | 2006-10-08 17:27:33 +0000 |
| commit | dfcbcd1235c670d2d6c909189a18f1876cce8bc5 (patch) | |
| tree | 278205df3c5b578e6a1ea594fb305e18f858e64d /apps/plugins | |
| parent | b837e45591a4a1b5a3e779d2f970d480bf81310f (diff) | |
| download | rockbox-dfcbcd1235c670d2d6c909189a18f1876cce8bc5.zip rockbox-dfcbcd1235c670d2d6c909189a18f1876cce8bc5.tar.gz rockbox-dfcbcd1235c670d2d6c909189a18f1876cce8bc5.tar.bz2 rockbox-dfcbcd1235c670d2d6c909189a18f1876cce8bc5.tar.xz | |
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
Diffstat (limited to 'apps/plugins')
| -rw-r--r-- | apps/plugins/rockblox.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/apps/plugins/rockblox.c b/apps/plugins/rockblox.c index 3bdae48..a3f5b16 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) |