frame limiter opt, menu btn on cfg load fix
[libpicofe.git] / common / menu.h
index 3f77603..f3d1859 100644 (file)
@@ -46,6 +46,7 @@ typedef enum
        MA_OPT_LOADCFG,
        MA_OPT_INTERLACED,      /* giz */
        MA_OPT_ROTATION,        /* uiq */
+       MA_OPT_TEARING_FIX,     /* wiz */
        MA_OPT2_GAMMA,
        MA_OPT2_A_SN_GAMMA,
        MA_OPT2_DBLBUFF,        /* giz */
@@ -96,7 +97,7 @@ typedef enum
 
 typedef struct
 {
-       char *name;
+       const char *name;
        menu_behavior beh;
        menu_id id;
        void *var;              /* for on-off/range settings */
@@ -153,9 +154,13 @@ extern me_bind_action me_ctrl_actions[15];
 extern me_bind_action emuctrl_actions[];       // platform code
 
 void menu_init(void);
+void menu_plat_setup(int is_wiz);
 void text_out16(int x, int y, const char *texto, ...);
 void me_update_msg(const char *msg);
 
+void menu_loop(void);
+int  menu_loop_tray(void);
+
 menu_entry *me_list_get_first(void);
 menu_entry *me_list_get_next(void);