From 338e4d76aad9c65971b165a745e4c00dfc742635 Mon Sep 17 00:00:00 2001 From: Rafaël Carré Date: Sat, 15 May 2010 11:19:25 +0000 Subject: fix inverted logic in r26047: voice works again git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26049 a1c6a512-1295-4272-9138-f99709370657 --- apps/talk.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'apps') 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) -- cgit v1.2.3