X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?p=pcsx_rearmed.git;a=blobdiff_plain;f=frontend%2Fmenu.h;h=81cd1baf56f982b06dec7fe52386a9b0d9d6130b;hp=3c09abe17b8e9047d98bd31afc0bb24668b5a61a;hb=HEAD;hpb=cc56203b76e1fcef2c7e55b460daf07e654a1547 diff --git a/frontend/menu.h b/frontend/menu.h index 3c09abe1..9d60e882 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, @@ -15,6 +19,7 @@ enum g_opts_opts { enum g_scaler_opts { SCALE_1_1, + SCALE_2_2, SCALE_4_3, SCALE_4_3v2, SCALE_FULLSCREEN, @@ -28,8 +33,11 @@ enum g_soft_filter_opts { }; extern int g_opts, g_scaler, g_gamma; +extern int scanlines, scanline_level; extern int soft_scaling, analog_deadzone; -extern int filter, soft_filter; +extern int soft_filter; extern int g_menuscreen_w; extern int g_menuscreen_h; + +#endif /* __MENU_H__ */