From 4dc70a6e9cef671fdf75d7e872ff79a1bab5ac32 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Thu, 11 Mar 2021 20:19:37 +0100 Subject: [PATCH] Remove unused menu_ctx_iterate_t --- menu/menu_driver.h | 28 ---------------------------- 1 file changed, 28 deletions(-) diff --git a/menu/menu_driver.h b/menu/menu_driver.h index 91831d0e5d..245ac1a2ea 100644 --- a/menu/menu_driver.h +++ b/menu/menu_driver.h @@ -401,34 +401,6 @@ typedef struct menu_ctx_displaylist unsigned type; } menu_ctx_displaylist_t; -typedef struct menu_ctx_iterate -{ - enum menu_action action; - - struct - { - int16_t x; - int16_t y; - bool touch; - } pointer; - - struct - { - int16_t x; - int16_t y; - struct - { - bool left; - bool right; - } buttons; - struct - { - bool up; - bool down; - } wheel; - } mouse; -} menu_ctx_iterate_t; - typedef struct menu_ctx_environment { void *data;