diff --git a/apps/plugins/reversi/reversi-gui.c b/apps/plugins/reversi/reversi-gui.c index e25aa5fe3e..e6613d6a25 100644 --- a/apps/plugins/reversi/reversi-gui.c +++ b/apps/plugins/reversi/reversi-gui.c @@ -430,11 +430,6 @@ static bool reversi_gui_menu(void) { MENU_TEXT_STRAT_BLACK, MENU_TEXT_STRAT_WHITE, MENU_TEXT_WRAP_MODE, "Playback Control", "Quit"); -#ifdef HAVE_TOUCHSCREEN - /* Entering Menu, set the touchscreen to the global setting */ - rb->touchscreen_set_mode(rb->global_settings->touch_mode); -#endif - result = rb->do_menu(&menu, NULL, NULL, false); switch (result) { @@ -478,11 +473,6 @@ static bool reversi_gui_menu(void) { break; } -#ifdef HAVE_TOUCHSCREEN - /* Leaving the menu, set back to pointer mode */ - rb->touchscreen_set_mode(TOUCHSCREEN_POINT); -#endif - return (result == MENU_ATTACHED_USB); }