X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=frontend%2Fmenu.h;h=9d60e882203443a0c08a9cd847de803076fb58aa;hb=HEAD;hp=81cd1baf56f982b06dec7fe52386a9b0d9d6130b;hpb=32631e6a5d44d1e6aa5d53d5777a039b2d3d4300;p=pcsx_rearmed.git diff --git a/frontend/menu.h b/frontend/menu.h index 81cd1baf..26643af8 100644 --- a/frontend/menu.h +++ b/frontend/menu.h @@ -1,9 +1,13 @@ +#ifndef __MENU_H__ +#define __MENU_H__ + void menu_init(void); void menu_prepare_emu(void); void menu_loop(void); void menu_finish(void); void menu_notify_mode_change(int w, int h, int bpp); +int menu_load_config(int is_game); enum g_opts_opts { OPT_SHOWFPS = 1 << 0, @@ -11,6 +15,7 @@ enum g_opts_opts { OPT_NO_FRAMELIM = 1 << 2, OPT_SHOWSPU = 1 << 3, OPT_TSGUN_NOTRIGGER = 1 << 4, + OPT_VSYNC = 1 << 5, }; enum g_scaler_opts { @@ -35,3 +40,5 @@ extern int soft_filter; extern int g_menuscreen_w; extern int g_menuscreen_h; + +#endif /* __MENU_H__ */