1
0
Fork 0
forked from len0rd/rockbox

voice: fix regression 39f8685 (already voiced)

Some of the splashf messages that were converted
to support voicing in commit 39f8685 already had
a voice equivalent that was more appropriate,
since it also voiced parameters, and included
pauses between announcements where necessary.

Change-Id: Ia91a01c82acd6148afb4afadd64b1105802aea36
This commit is contained in:
Christian Soffke 2025-05-26 01:45:50 +02:00
parent 348054712d
commit 498d581ca6
7 changed files with 12 additions and 10 deletions

View file

@ -711,7 +711,8 @@ static void mm_errorhandler(void)
rb->talk_value_decimal(MikMod_errno, UNIT_INT, 0, true);
rb->talk_force_enqueue_next();
}
rb->splashf(HZ, ID2P(LANG_ERROR_FORMATSTR), MikMod_strerror(MikMod_errno));
/* (voiced above) */
rb->splashf(HZ, rb->str(LANG_ERROR_FORMATSTR), MikMod_strerror(MikMod_errno));
quit = true;
}