X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=frontend%2Fmenu.h;h=8f5acda7ac2fe776bd87f2ae19b7678ef999affe;hb=e0f25b64cf98406b7059b373b04a18b45e2a0aa7;hp=3c09abe17b8e9047d98bd31afc0bb24668b5a61a;hpb=cc56203b76e1fcef2c7e55b460daf07e654a1547;p=pcsx_rearmed.git diff --git a/frontend/menu.h b/frontend/menu.h index 3c09abe1..8f5acda7 100644 --- a/frontend/menu.h +++ b/frontend/menu.h @@ -1,3 +1,6 @@ +#ifndef __MENU_H__ +#define __MENU_H__ + void menu_init(void); void menu_prepare_emu(void); void menu_loop(void); @@ -15,6 +18,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 +32,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__ */