summaryrefslogtreecommitdiff
path: root/apps/tagtree.c
diff options
context:
space:
mode:
authorSolomon Peachy <pizza@shaftnet.org>2024-05-19 21:04:34 -0400
committerSolomon Peachy <pizza@shaftnet.org>2024-05-19 21:05:43 -0400
commit62da4ad84b4223fc18e7473d2500c51b6fd2c0ff (patch)
tree1677a0d4acff79531e10e6183fb902de2ca03b93 /apps/tagtree.c
parentdfe409c9938382a6195968a1a078bed0682f519a (diff)
downloadrockbox-62da4ad84b4223fc18e7473d2500c51b6fd2c0ff.tar.gz
rockbox-62da4ad84b4223fc18e7473d2500c51b6fd2c0ff.zip
voice: Correct all uses of spashf() with an ID2P() argument
...Instead voice the string and all of the arguments manually. Change-Id: Ic030b2f00c90cb372ff5b781a8de4bcb19375d5d
Diffstat (limited to 'apps/tagtree.c')
-rw-r--r--apps/tagtree.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/apps/tagtree.c b/apps/tagtree.c
index 736493bfd9..3a875d6da6 100644
--- a/apps/tagtree.c
+++ b/apps/tagtree.c
@@ -41,6 +41,7 @@
41#include "tagtree.h" 41#include "tagtree.h"
42#include "lang.h" 42#include "lang.h"
43#include "logf.h" 43#include "logf.h"
44#include "talk.h"
44#include "playlist.h" 45#include "playlist.h"
45#include "keyboard.h" 46#include "keyboard.h"
46#include "gui/list.h" 47#include "gui/list.h"
@@ -1744,7 +1745,12 @@ entry_skip_formatter:
1744 1745
1745 if (!sort && (sort_inverse || sort_limit)) 1746 if (!sort && (sort_inverse || sort_limit))
1746 { 1747 {
1747 splashf(HZ*4, ID2P(LANG_SHOWDIR_BUFFER_FULL), total_count); 1748 if (global_settings.talk_menu) {
1749 talk_id(LANG_SHOWDIR_BUFFER_FULL, true);
1750 talk_value(total_count, UNIT_INT, true);
1751 }
1752
1753 splashf(HZ*4, str(LANG_SHOWDIR_BUFFER_FULL), total_count);
1748 logf("Too small dir buffer"); 1754 logf("Too small dir buffer");
1749 return 0; 1755 return 0;
1750 } 1756 }