aboutsummaryrefslogtreecommitdiff
path: root/frontend/menu.h
diff options
context:
space:
mode:
authornotaz2010-12-25 02:52:55 +0200
committernotaz2010-12-25 02:52:55 +0200
commitbd6267e616cc4966fadf971019fe15db2469e97d (patch)
treebadf7c77696d520d09b0dcfec170ecb43fe3a8c1 /frontend/menu.h
parentd4a1e87d6a8f5d5de071344fd0718ca32a520850 (diff)
downloadpcsx_rearmed-bd6267e616cc4966fadf971019fe15db2469e97d.tar.gz
pcsx_rearmed-bd6267e616cc4966fadf971019fe15db2469e97d.tar.bz2
pcsx_rearmed-bd6267e616cc4966fadf971019fe15db2469e97d.zip
menu: add most options
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;