From 19afad88f8bb973726af0c6a7850dbd992996a9f Mon Sep 17 00:00:00 2001 From: Jens Arnold Date: Mon, 31 Jan 2005 00:34:32 +0000 Subject: Fix: Deprecated voice-only entries were treated as (deprecated) standard LANG_ entries. Now they are detected by the id matching VOICE_*. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5720 a1c6a512-1295-4272-9138-f99709370657 --- tools/binlang | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tools/binlang') diff --git a/tools/binlang b/tools/binlang index 7cfa562227..13c969e260 100755 --- a/tools/binlang +++ b/tools/binlang @@ -70,7 +70,7 @@ while() { if($value =~ s/^\"(.*)\"\s*$/$1/g) { # Skip voice-only entries - if(!$value && $set{'voice'} ne "\"\"") { + if($set{'id'} =~ /^VOICE_/) { $idnum{$set{'id'}} = '_done_'; next; } -- cgit v1.2.3