From 2b59b2fda06c1f0707474a0b863764ff959319c1 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Wed, 5 Mar 2014 18:40:01 +0100 Subject: [PATCH] (Mobile) Don't expose 'Black Frame Insertion' for mobile platforms - can be dangerous for screens --- frontend/menu/menu_common.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/frontend/menu/menu_common.c b/frontend/menu/menu_common.c index d3289fcb82..c90cb6f156 100644 --- a/frontend/menu/menu_common.c +++ b/frontend/menu/menu_common.c @@ -1898,7 +1898,9 @@ void menu_populate_entries(void *data, unsigned menu_type) file_list_push(rgui->selection_buf, "VSync", RGUI_SETTINGS_VIDEO_VSYNC, 0); file_list_push(rgui->selection_buf, "Hard GPU Sync", RGUI_SETTINGS_VIDEO_HARD_SYNC, 0); file_list_push(rgui->selection_buf, "Hard GPU Sync Frames", RGUI_SETTINGS_VIDEO_HARD_SYNC_FRAMES, 0); +#if !defined(RARCH_MOBILE) file_list_push(rgui->selection_buf, "Black Frame Insertion", RGUI_SETTINGS_VIDEO_BLACK_FRAME_INSERTION, 0); +#endif file_list_push(rgui->selection_buf, "VSync Swap Interval", RGUI_SETTINGS_VIDEO_SWAP_INTERVAL, 0); #if defined(HAVE_THREADS) && !defined(GEKKO) file_list_push(rgui->selection_buf, "Threaded Driver", RGUI_SETTINGS_VIDEO_THREADED, 0);