From 0e971323147af684b183d5954059cec535e643d6 Mon Sep 17 00:00:00 2001 From: Solomon Peachy Date: Tue, 14 Jul 2020 23:00:37 -0400 Subject: talk: only show the "failed reading .voice" splash if talking is enabled Change-Id: I4046294e39c621ddeeceeb6f21eab05a1e687cb5 --- apps/talk.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/talk.c b/apps/talk.c index 35c2a477fc..2d27f7a399 100644 --- a/apps/talk.c +++ b/apps/talk.c @@ -939,7 +939,8 @@ void talk_init(void) { if (!load_voicefile_index(filehandle)) { - splashf(HZ * 2, str(LANG_READ_FAILED), ".voice"); + if (global_settings.talk_menu) + splashf(HZ, str(LANG_READ_FAILED), ".voice"); goto out; } /* Now determine the maximum buffer size needed for the voicefile. -- cgit v1.2.3