summaryrefslogtreecommitdiff
path: root/apps/plugins/jpeg.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/jpeg.c')
-rw-r--r--apps/plugins/jpeg.c28
1 files changed, 14 insertions, 14 deletions
diff --git a/apps/plugins/jpeg.c b/apps/plugins/jpeg.c
index 5e221fea98..dfc198605d 100644
--- a/apps/plugins/jpeg.c
+++ b/apps/plugins/jpeg.c
@@ -2097,22 +2097,22 @@ int show_menu(void) /* return 1 to quit */
2097 { "Return", NULL }, 2097 { "Return", NULL },
2098 }; 2098 };
2099 static const struct opt_items slideshow[2] = { 2099 static const struct opt_items slideshow[2] = {
2100 {"Disable",0}, 2100 { "Disable", -1 },
2101 {"Enable",0}, 2101 { "Enable", -1 },
2102 }; 2102 };
2103 static const struct opt_items timeout[12] = { 2103 static const struct opt_items timeout[12] = {
2104 { "1 second", 0 }, 2104 { "1 second", -1 },
2105 { "2 seconds", 0 }, 2105 { "2 seconds", -1 },
2106 { "3 seconds", 0 }, 2106 { "3 seconds", -1 },
2107 { "4 seconds", 0 }, 2107 { "4 seconds", -1 },
2108 { "5 seconds", 0 }, 2108 { "5 seconds", -1 },
2109 { "6 seconds", 0 }, 2109 { "6 seconds", -1 },
2110 { "7 seconds", 0 }, 2110 { "7 seconds", -1 },
2111 { "8 seconds", 0 }, 2111 { "8 seconds", -1 },
2112 { "9 seconds", 0 }, 2112 { "9 seconds", -1 },
2113 { "10 seconds", 0 }, 2113 { "10 seconds", -1 },
2114 { "15 seconds", 0 }, 2114 { "15 seconds", -1 },
2115 { "20 seconds", 0 }, 2115 { "20 seconds", -1 },
2116 }; 2116 };
2117 m = rb->menu_init(items, sizeof(items) / sizeof(*items), 2117 m = rb->menu_init(items, sizeof(items) / sizeof(*items),
2118 NULL, NULL, NULL, NULL); 2118 NULL, NULL, NULL, NULL);