summaryrefslogtreecommitdiff
path: root/apps/menus/main_menu.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/menus/main_menu.c')
-rw-r--r--apps/menus/main_menu.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/apps/menus/main_menu.c b/apps/menus/main_menu.c
index a64b1f8e47..1d22dba7ea 100644
--- a/apps/menus/main_menu.c
+++ b/apps/menus/main_menu.c
@@ -110,9 +110,12 @@ MAKE_MENU(manage_settings, ID2P(LANG_MANAGE_MENU), NULL, Icon_Config,
110/***********************************/ 110/***********************************/
111/* INFO MENU */ 111/* INFO MENU */
112 112
113
113static bool show_credits(void) 114static bool show_credits(void)
114{ 115{
115 if (plugin_load(VIEWERS_DIR "/credits.rock",NULL) != PLUGIN_OK) 116 char credits[MAX_PATH] = { '\0' };
117 snprintf(credits, MAX_PATH, "%s/credits.rock", VIEWERS_DIR);
118 if (plugin_load(credits, NULL) != PLUGIN_OK)
116 { 119 {
117 /* show the rockbox logo and version untill a button is pressed */ 120 /* show the rockbox logo and version untill a button is pressed */
118 show_logo(); 121 show_logo();