diff options
author | Linus Nielsen Feltzing <linus@haxx.se> | 2004-06-03 08:23:05 +0000 |
---|---|---|
committer | Linus Nielsen Feltzing <linus@haxx.se> | 2004-06-03 08:23:05 +0000 |
commit | f84e93edfeb50c91e8102b2bd4ec40c898cb08d4 (patch) | |
tree | da2cf4c3e79b8643b57c88f92dead3ed7145d570 /tools/binlang | |
parent | 2adfd889651a40f523a8001b73c2d448a0c2f52a (diff) |
binlang and genlang couldn't handle deprecated strings
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4713 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'tools/binlang')
-rwxr-xr-x | tools/binlang | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/binlang b/tools/binlang index 83824e38b3..7cfa562227 100755 --- a/tools/binlang +++ b/tools/binlang @@ -70,7 +70,7 @@ while(<ENG>) { if($value =~ s/^\"(.*)\"\s*$/$1/g) { # Skip voice-only entries - if(!$value && $set{'voice'}) { + if(!$value && $set{'voice'} ne "\"\"") { $idnum{$set{'id'}} = '_done_'; next; } |