summaryrefslogtreecommitdiff
path: root/apps/plugins
diff options
context:
space:
mode:
authorJörg Hohensohn <hohensoh@rockbox.org>2004-01-05 07:26:59 +0000
committerJörg Hohensohn <hohensoh@rockbox.org>2004-01-05 07:26:59 +0000
commit974c2f0d43c1ebc786854f48f15ccaea7803d8f0 (patch)
tree618498adcf30b7ead31d6c9425cc42050ef8ae8d /apps/plugins
parent2fa3ea313dd6b7c04702f9756329a15ce169a731 (diff)
downloadrockbox-974c2f0d43c1ebc786854f48f15ccaea7803d8f0.zip
rockbox-974c2f0d43c1ebc786854f48f15ccaea7803d8f0.tar.gz
rockbox-974c2f0d43c1ebc786854f48f15ccaea7803d8f0.tar.bz2
rockbox-974c2f0d43c1ebc786854f48f15ccaea7803d8f0.tar.xz
tolerate firmware v1.32 for a V2 Recorder
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4191 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins')
-rw-r--r--apps/plugins/firmware_flash.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/apps/plugins/firmware_flash.c b/apps/plugins/firmware_flash.c
index 4abd8dd..c609f5d 100644
--- a/apps/plugins/firmware_flash.c
+++ b/apps/plugins/firmware_flash.c
@@ -283,6 +283,10 @@ bool CheckPlatform(int platform_id, UINT16 version)
{ /* it can be a FM or V2 recorder */
return (platform_id == ID_FM || platform_id == ID_REC_V2);
}
+ else if (version == 132)
+ { /* seen on a V2 recorder */
+ return (platform_id == ID_REC_V2);
+ }
else if (version >= 115 && version <= 129)
{ /* the range of Recorders seen so far */
return (platform_id == ID_RECORDER);