X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;ds=sidebyside;f=platform%2Fcommon%2Fmenu.h;h=0b5aac30cc2c5d4226aecc1199760fd730544bba;hb=c46ffd310f86522e2557e4d19945de5a40350ffc;hp=529d78dfeb664c1f2aba9ac8e162131463114ac8;hpb=c6196c0f0108d27df27d576ece320b3ec5705bb3;p=picodrive.git diff --git a/platform/common/menu.h b/platform/common/menu.h index 529d78d..0b5aac3 100644 --- a/platform/common/menu.h +++ b/platform/common/menu.h @@ -74,6 +74,7 @@ typedef enum MA_OPT3_PRES_FULLSCR, MA_OPT3_FILTERING, MA_OPT3_VSYNC, + MA_OPT3_GAMMAA, MA_OPT3_DONE, MA_CDOPT_TESTBIOS_USA, MA_CDOPT_TESTBIOS_EUR, @@ -98,6 +99,7 @@ typedef struct signed char min; /* for ranged integer settings, to be sign-extended */ signed char max; char enabled; + char need_to_save; } menu_entry; @@ -110,4 +112,5 @@ menu_id me_index2id(const menu_entry *entries, int count, int index); void me_draw(const menu_entry *entries, int count, int x, int y, me_draw_custom_f *cust_draw, void *param); int me_process(menu_entry *entries, int count, menu_id id, int is_next); +const char *me_region_name(unsigned int code, int auto_order);