X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=frontend%2Fmenu.h;h=8f5acda7ac2fe776bd87f2ae19b7678ef999affe;hb=7a8d521fba9c86ae7b51369ce061bf63112b745f;hp=c6c1ab1d46f66264b74ddfb4c435759515d68a20;hpb=a83762012066e4799394f63d08a161a45f982ab6;p=pcsx_rearmed.git diff --git a/frontend/menu.h b/frontend/menu.h index c6c1ab1d..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,9 +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 g_use_overlay, g_fullscreen; -extern int filter, soft_filter; +extern int soft_filter; extern int g_menuscreen_w; extern int g_menuscreen_h; + +#endif /* __MENU_H__ */