Adjusted version criteria for newplayer check according to latest findings
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5463 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
6fa25709d1
commit
73d3b18ef6
1 changed files with 3 additions and 1 deletions
|
@ -41,6 +41,8 @@ int read_hw_mask(void)
|
||||||
#ifdef ARCHOS_PLAYER
|
#ifdef ARCHOS_PLAYER
|
||||||
bool is_new_player(void)
|
bool is_new_player(void)
|
||||||
{
|
{
|
||||||
return read_rom_version() > 451;
|
int ver = read_rom_version();
|
||||||
|
|
||||||
|
return (ver > 449) || (ver == 116);
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in a new issue