diff options
author | William Wilgus <wilgus.william@gmail.com> | 2020-07-15 12:00:09 -0400 |
---|---|---|
committer | William Wilgus <wilgus.william@gmail.com> | 2020-07-27 20:47:03 -0400 |
commit | be04c4be0afbdef36f2968dc291af54360de8e23 (patch) | |
tree | 8b4e87d48b38bf98f4f7eb8bcbd62cc196cbbaff /tools | |
parent | 3f828e9244140e7860e961917fc96e42b2a866ca (diff) | |
download | rockbox-be04c4be0afbdef36f2968dc291af54360de8e23.tar.gz rockbox-be04c4be0afbdef36f2968dc291af54360de8e23.zip |
Voice TSR Plugin Demo
allows user to run plugin in background that voices
status messages
grouping is now working it counts ; as the end of a group
sleep timer remaining is not voiced if sleep timer is not active
TODO
manual entries
Change-Id: I39e8500df6440c07d2a3347513c749d5e155d1cc
Diffstat (limited to 'tools')
-rw-r--r-- | tools/voicefont.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/voicefont.c b/tools/voicefont.c index 9a8a7fbc02..b732f49c07 100644 --- a/tools/voicefont.c +++ b/tools/voicefont.c | |||
@@ -153,7 +153,7 @@ int voicefont(FILE* voicefontids,int targetnum,char* filedir, FILE* output, unsi | |||
153 | } | 153 | } |
154 | else /* second run, skip the non voice only ones */ | 154 | else /* second run, skip the non voice only ones */ |
155 | { | 155 | { |
156 | if (!voiceonly[i] == 1) | 156 | if (!(voiceonly[i] == 1)) |
157 | continue; | 157 | continue; |
158 | } | 158 | } |
159 | 159 | ||