diff options
| author | Steve Bavin <pondlife@pondlife.me> | 2007-10-24 12:32:12 +0000 |
|---|---|---|
| committer | Steve Bavin <pondlife@pondlife.me> | 2007-10-24 12:32:12 +0000 |
| commit | 072a3c5017e4d97a0d8bc56b71d1a8b100784ef7 (patch) | |
| tree | 879e85636ba10520bbd0cdd20389f87d1b335dbe /apps/talk.h | |
| parent | 537b27d58f382277e239bbefaab3bb48a8df245e (diff) | |
| download | rockbox-072a3c5017e4d97a0d8bc56b71d1a8b100784ef7.zip rockbox-072a3c5017e4d97a0d8bc56b71d1a8b100784ef7.tar.gz rockbox-072a3c5017e4d97a0d8bc56b71d1a8b100784ef7.tar.bz2 rockbox-072a3c5017e4d97a0d8bc56b71d1a8b100784ef7.tar.xz | |
Complete info screen voicing; now consistent with displayed screen
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@15284 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/talk.h')
| -rw-r--r-- | apps/talk.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/apps/talk.h b/apps/talk.h index a939c1f..0dea8d6 100644 --- a/apps/talk.h +++ b/apps/talk.h @@ -80,9 +80,11 @@ void talk_shutup(void); /* Interrupt voice, as when enqueue is false */ #if CONFIG_RTC /* this is in talk.c which isnt compiled for hwcodec simulator */ #if !defined(SIMULATOR) || CONFIG_CODEC == SWCODEC -void talk_date_time(struct tm *time, bool speak_current_time_string); +void talk_time(struct tm *tm, bool enqueue); +void talk_date(struct tm *tm, bool enqueue); #else -#define talk_date_time(t, s) +#define talk_date(t, e) +#define talk_time(t, e) #endif #endif /* CONFIG_RTC */ |