summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZakk Roberts <midk@rockbox.org>2006-03-21 05:45:37 +0000
committerZakk Roberts <midk@rockbox.org>2006-03-21 05:45:37 +0000
commitdd521146b735790549dd91898ed814af994ef6ea (patch)
treec832880f2dab8dbf777fbab6798639b9f495ecd2
parent28cb5e732d96798f92beee355c3be5ae93b3b385 (diff)
downloadrockbox-dd521146b735790549dd91898ed814af994ef6ea.tar.gz
rockbox-dd521146b735790549dd91898ed814af994ef6ea.zip
Display logo for 3 seconds instead of 2 before rolling the credits - makes it easier to read the build date/time.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@9145 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/plugins/credits.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugins/credits.c b/apps/plugins/credits.c
index 5fdc215aa3..12bfa60a8f 100644
--- a/apps/plugins/credits.c
+++ b/apps/plugins/credits.c
@@ -40,7 +40,7 @@ enum plugin_status plugin_start(struct plugin_api* api, void* parameter)
40 rb->lcd_double_height(false); 40 rb->lcd_double_height(false);
41#endif 41#endif
42 42
43 for (j = 0; j < 10; j++) { 43 for (j = 0; j < 15; j++) {
44 rb->sleep((HZ*2)/10); 44 rb->sleep((HZ*2)/10);
45 45
46 btn = rb->button_get(false); 46 btn = rb->button_get(false);
@@ -114,7 +114,7 @@ static int minisin[]={
114#if 1 114#if 1
115 1, 2, 2, 3, 3, 3, 2, 2, 1, 0, 0, 0, 0, 0, 0, 0 115 1, 2, 2, 3, 3, 3, 2, 2, 1, 0, 0, 0, 0, 0, 0, 0
116#else 116#else
117 1, 2, 3, 4, 4, 4, 3, 2, 1, 0, 0, -1, -1, -1, 0, 0, 117 1, 2, 3, 4, 4, 4, 3, 2, 1, 0, 0, -1, -1, -1, 0, 0,
118#endif 118#endif
119}; 119};
120 120