1
0
Fork 0
forked from len0rd/rockbox

[Feature] Supress voice during sleep timer shutdown

if show_shutdown_message == false and sleep timer is active
talk will be disabled on shutdown

Change-Id: Ia660e753700f3e283691f41797ef7a77a2d9a8d9
This commit is contained in:
William Wilgus 2023-04-08 17:13:07 -04:00
parent 3554306617
commit 78c92c5ca8
3 changed files with 12 additions and 0 deletions

View file

@ -306,6 +306,12 @@ static bool clean_shutdown(enum shutdown_type sd_type,
{
long msg_id = -1;
if (!global_settings.show_shutdown_message && get_sleep_timer_active())
{
talk_force_shutup();
talk_disable(true);
}
status_save();
#if CONFIG_CHARGING && !defined(HAVE_POWEROFF_WHILE_CHARGING)