aboutsummaryrefslogtreecommitdiff
path: root/frontend/menu.h
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/menu.h')
-rw-r--r--frontend/menu.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/frontend/menu.h b/frontend/menu.h
index 67beef2..e7e0aa8 100644
--- a/frontend/menu.h
+++ b/frontend/menu.h
@@ -2,4 +2,11 @@ void menu_init(void);
void menu_prepare_emu(void);
void menu_loop(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,
+};
+
+extern int g_opts;