diff options
author | Solomon Peachy <pizza@shaftnet.org> | 2024-05-19 20:43:07 -0400 |
---|---|---|
committer | Solomon Peachy <pizza@shaftnet.org> | 2024-05-19 21:05:43 -0400 |
commit | dfe409c9938382a6195968a1a078bed0682f519a (patch) | |
tree | 36321916375a134ac140ed1208b5d2642acbb06b | |
parent | 27cb1abcecd7b4a5093545df90999bc49483f577 (diff) | |
download | rockbox-dfe409c993.tar.gz rockbox-dfe409c993.zip |
voice: Revert one of the changes made in b6053c4d54
We already voiced the full text displayed in that splash message.
Change-Id: I40cf3de9124f9614b139fae41c47ef2ce7fb227a
-rw-r--r-- | apps/alarm_menu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/alarm_menu.c b/apps/alarm_menu.c index c2f2422aea..67f8d1e8dd 100644 --- a/apps/alarm_menu.c +++ b/apps/alarm_menu.c @@ -74,7 +74,7 @@ int alarm_screen(void) talk_value(mins_togo % 60, UNIT_MIN, true); talk_force_enqueue_next(); } - splashf(HZ*2, ID2P(LANG_ALARM_MOD_TIME_TO_GO), + splashf(HZ*2, str(LANG_ALARM_MOD_TIME_TO_GO), mins_togo / 60, mins_togo % 60); } else { splash(HZ, ID2P(LANG_ALARM_MOD_ERROR)); |