diff options
| author | Steve Bavin <pondlife@pondlife.me> | 2007-06-07 09:24:53 +0000 |
|---|---|---|
| committer | Steve Bavin <pondlife@pondlife.me> | 2007-06-07 09:24:53 +0000 |
| commit | 6fd10bacceb576ee39e7ecfa32510ae8c97815ba (patch) | |
| tree | d7a55ab832c6943fb469c34bd85d15e0fc7e2f2c /apps/talk.c | |
| parent | 44034055500509b3b2b85b6df66172abbf77399c (diff) | |
| download | rockbox-6fd10bacceb576ee39e7ecfa32510ae8c97815ba.zip rockbox-6fd10bacceb576ee39e7ecfa32510ae8c97815ba.tar.gz rockbox-6fd10bacceb576ee39e7ecfa32510ae8c97815ba.tar.bz2 rockbox-6fd10bacceb576ee39e7ecfa32510ae8c97815ba.tar.xz | |
Separate out voice options for .talk clips (FS #7249). This removes the assumptions about what to speak if a .talk clip is not available for a particular file or directory,
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13584 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/talk.c')
| -rw-r--r-- | apps/talk.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/talk.c b/apps/talk.c index 04e3739..e9307f0 100644 --- a/apps/talk.c +++ b/apps/talk.c @@ -539,8 +539,8 @@ void talk_init(void) bool talk_voice_required(void) { return (voicefile_size != 0) /* Voice file is available */ - || (global_settings.talk_dir == 3) /* Thumbnail clips are required */ - || (global_settings.talk_file == 3); + || (global_settings.talk_dir_clip) /* Thumbnail clips are required */ + || (global_settings.talk_file_clip); } #endif |