diff options
author | Rafaël Carré <rafael.carre@gmail.com> | 2010-05-15 11:19:25 +0000 |
---|---|---|
committer | Rafaël Carré <rafael.carre@gmail.com> | 2010-05-15 11:19:25 +0000 |
commit | 338e4d76aad9c65971b165a745e4c00dfc742635 (patch) | |
tree | 3eee23f4a286bd06016afa6c7e42a2348d3960ca /apps | |
parent | fecf90fda951a817219cd13885d3da22c58bdcb5 (diff) |
fix inverted logic in r26047: voice works again
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26049 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
-rw-r--r-- | apps/talk.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/talk.c b/apps/talk.c index c327487962..0e3ff17a1b 100644 --- a/apps/talk.c +++ b/apps/talk.c @@ -542,7 +542,7 @@ void talk_init(void) filehandle = open_voicefile(); size_t audiobufsz = audiobufend - audiobuf; /* test if we can open and if it fits in the audiobuffer */ - has_voicefile = filehandle >= 0 && filesize(filehandle) > (off_t)audiobufsz; + has_voicefile = filehandle >= 0 && filesize(filehandle) <= (off_t)audiobufsz; voicefile_size = 0; if (has_voicefile) |