summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--firmware/hwcompat.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/firmware/hwcompat.c b/firmware/hwcompat.c
index ceac5b1c58..701fb4c220 100644
--- a/firmware/hwcompat.c
+++ b/firmware/hwcompat.c
@@ -41,6 +41,8 @@ int read_hw_mask(void)
41#ifdef ARCHOS_PLAYER 41#ifdef ARCHOS_PLAYER
42bool is_new_player(void) 42bool is_new_player(void)
43{ 43{
44 return read_rom_version() > 451; 44 int ver = read_rom_version();
45
46 return (ver > 449) || (ver == 116);
45} 47}
46#endif 48#endif