diff options
Diffstat (limited to 'tools/genlang')
-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) { my $o = $engl[$i]; if(($o < 0) || !length($o)) { - print "#$i\nid: NOT_USED_$i\nvoice: \"\"\n"; + if($i < 0x8000) { + print "#$i\nid: NOT_USED_$i\nvoice: \"\"\n"; + } + else { + print "#$i\nid: VOICE_NOT_USED_$i\nvoice: \"\"\n"; + } next; } |