summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSolomon Peachy <pizza@shaftnet.org>2024-06-21 16:57:48 -0400
committerSolomon Peachy <pizza@shaftnet.org>2024-06-21 16:58:43 -0400
commitbb127469722ce94fe481e14984bcd0502844d1eb (patch)
tree73c91a9443c6cd672ac1a49162b112b545678747
parenteb8f6e578ed376fe75039972850cd72179894485 (diff)
downloadrockbox-bb12746972.tar.gz
rockbox-bb12746972.zip
voice: Make sure we always copy INVALID_VOICE and LANG_NAME clips
If they were in the pool, they'd not be copied out. Change-Id: If3d7d72656eba18e2df7f7f1307f967494cb4ab6
-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 {
if (defined($ENV{'POOL'})) {
copy($enc, $pool_file);
}
- # Special cases
- if ($id eq "VOICE_INVALID_VOICE_FILE") {
- copy ($enc, "InvalidVoice_$language.talk");
- }
- if ($id eq "VOICE_LANG_NAME") {
- copy ($enc, "$language.lng.talk");
- }
-
unlink($wav);
}
+
+ # Special cases
+ if ($id eq "VOICE_INVALID_VOICE_FILE") {
+ copy ($enc, "InvalidVoice_$language.talk");
+ }
+ if ($id eq "VOICE_LANG_NAME") {
+ copy ($enc, "$language.lng.talk");
+ }
+
$voice = "";
$id = "";
}