diff options
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/genlang | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/tools/genlang b/tools/genlang index 6139bd1810..bfd9fac7b5 100755 --- a/tools/genlang +++ b/tools/genlang | |||
@@ -807,7 +807,12 @@ elsif($voiceout) { | |||
807 | my $o = $engl[$i]; | 807 | my $o = $engl[$i]; |
808 | 808 | ||
809 | if(($o < 0) || !length($o)) { | 809 | if(($o < 0) || !length($o)) { |
810 | print "#$i\nid: NOT_USED_$i\nvoice: \"\"\n"; | 810 | if($i < 0x8000) { |
811 | print "#$i\nid: NOT_USED_$i\nvoice: \"\"\n"; | ||
812 | } | ||
813 | else { | ||
814 | print "#$i\nid: VOICE_NOT_USED_$i\nvoice: \"\"\n"; | ||
815 | } | ||
811 | next; | 816 | next; |
812 | } | 817 | } |
813 | 818 | ||