From 3dd3595a79d5409bd7a3be6fe1dd8f9152233d14 Mon Sep 17 00:00:00 2001 From: Flyinghead Date: Tue, 20 Apr 2021 16:32:49 +0200 Subject: [PATCH] disable emulator Exit on android Issue #222 --- core/rend/gui.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/core/rend/gui.cpp b/core/rend/gui.cpp index 6fe051269..ca516591c 100644 --- a/core/rend/gui.cpp +++ b/core/rend/gui.cpp @@ -1916,7 +1916,9 @@ void gui_display_ui() std::string game_file = settings.imgread.ImagePath; if (!game_file.empty()) { +#ifndef __ANDROID__ commandLineStart = true; +#endif gui_start_game(game_file); return; }