frontend: add an option to disable scaling (Caanoo)
[pcsx_rearmed.git] / frontend / menu.h
index 67beef2..7f366df 100644 (file)
@@ -1,5 +1,17 @@
 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);
+void menu_notify_mode_change(int w, int h, int bpp);
+
+enum opts {
+       OPT_SHOWFPS = 1 << 0,
+       OPT_SHOWCPU = 1 << 1,
+       OPT_NO_FRAMELIM = 1 << 2,
+       OPT_SHOWSPU = 1 << 3,
+       OPT_TSGUN_NOTRIGGER = 1 << 4,
+};
+
+extern int g_opts;
+extern int soft_scaling, analog_deadzone;