summaryrefslogtreecommitdiff
path: root/tools/binlang
diff options
context:
space:
mode:
authorLinus Nielsen Feltzing <linus@haxx.se>2004-06-03 08:23:05 +0000
committerLinus Nielsen Feltzing <linus@haxx.se>2004-06-03 08:23:05 +0000
commitf84e93edfeb50c91e8102b2bd4ec40c898cb08d4 (patch)
treeda2cf4c3e79b8643b57c88f92dead3ed7145d570 /tools/binlang
parent2adfd889651a40f523a8001b73c2d448a0c2f52a (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-xtools/binlang2
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;
}