summaryrefslogtreecommitdiff
path: root/apps/plugins/imageviewer
diff options
context:
space:
mode:
authorWilliam Wilgus <wilgus.william@gmail.com>2022-12-17 03:27:21 -0500
committerWilliam Wilgus <wilgus.william@gmail.com>2022-12-17 04:24:37 -0500
commitc85a4f1fa4062e69f8ad8d9f4a8d70fe8c32bb82 (patch)
tree5b3fad1b7db0925c44247840a1459ac430f4b6d5 /apps/plugins/imageviewer
parentccf1aaa5bede11c95d219adbf6267426b57613d2 (diff)
downloadrockbox-c85a4f1fa4062e69f8ad8d9f4a8d70fe8c32bb82.tar.gz
rockbox-c85a4f1fa4062e69f8ad8d9f4a8d70fe8c32bb82.zip
menus remove reserved 'param' parameter
-- missed the plugin menu -- Change-Id: Iac2c9b0b8212ab5f3ac2ef90e1ac2723d212f86c
Diffstat (limited to 'apps/plugins/imageviewer')
-rw-r--r--apps/plugins/imageviewer/imageviewer.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugins/imageviewer/imageviewer.c b/apps/plugins/imageviewer/imageviewer.c
index a8ef3efc97..91c0950035 100644
--- a/apps/plugins/imageviewer/imageviewer.c
+++ b/apps/plugins/imageviewer/imageviewer.c
@@ -236,9 +236,9 @@ static bool set_option_dithering(void)
236} 236}
237 237
238MENUITEM_FUNCTION(grayscale_item, 0, ID2P(LANG_GRAYSCALE), 238MENUITEM_FUNCTION(grayscale_item, 0, ID2P(LANG_GRAYSCALE),
239 set_option_grayscale, NULL, NULL, Icon_NOICON); 239 set_option_grayscale, NULL, Icon_NOICON);
240MENUITEM_FUNCTION(dithering_item, 0, ID2P(LANG_DITHERING), 240MENUITEM_FUNCTION(dithering_item, 0, ID2P(LANG_DITHERING),
241 set_option_dithering, NULL, NULL, Icon_NOICON); 241 set_option_dithering, NULL, Icon_NOICON);
242MAKE_MENU(display_menu, "Display Options", NULL, Icon_NOICON, 242MAKE_MENU(display_menu, "Display Options", NULL, Icon_NOICON,
243 &grayscale_item, &dithering_item); 243 &grayscale_item, &dithering_item);
244 244