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
This commit is contained in:
parent
b837e45591
commit
dfcbcd1235
1 changed files with 4 additions and 0 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue