summaryrefslogtreecommitdiff
path: root/tools/voice.pl
diff options
context:
space:
mode:
Diffstat (limited to 'tools/voice.pl')
-rwxr-xr-xtools/voice.pl17
1 files changed, 9 insertions, 8 deletions
diff --git a/tools/voice.pl b/tools/voice.pl
index 0e58bad503..b2aadbcfab 100755
--- a/tools/voice.pl
+++ b/tools/voice.pl
@@ -511,16 +511,17 @@ sub generateclips {
511 if (defined($ENV{'POOL'})) { 511 if (defined($ENV{'POOL'})) {
512 copy($enc, $pool_file); 512 copy($enc, $pool_file);
513 } 513 }
514 # Special cases
515 if ($id eq "VOICE_INVALID_VOICE_FILE") {
516 copy ($enc, "InvalidVoice_$language.talk");
517 }
518 if ($id eq "VOICE_LANG_NAME") {
519 copy ($enc, "$language.lng.talk");
520 }
521
522 unlink($wav); 514 unlink($wav);
523 } 515 }
516
517 # Special cases
518 if ($id eq "VOICE_INVALID_VOICE_FILE") {
519 copy ($enc, "InvalidVoice_$language.talk");
520 }
521 if ($id eq "VOICE_LANG_NAME") {
522 copy ($enc, "$language.lng.talk");
523 }
524
524 $voice = ""; 525 $voice = "";
525 $id = ""; 526 $id = "";
526 } 527 }