From 8b4a7e1b98f9204ee06e92b23e84dbf143d25425 Mon Sep 17 00:00:00 2001 From: Chris Date: Tue, 23 Feb 2021 10:20:21 -0500 Subject: [PATCH] Fix for batch mode nogui (#1674) * Don't override batch_mode to false in nogui * Update nogui_host_interface.cpp --- src/duckstation-nogui/nogui_host_interface.cpp | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/duckstation-nogui/nogui_host_interface.cpp b/src/duckstation-nogui/nogui_host_interface.cpp index 45c88625e..d30efaf60 100644 --- a/src/duckstation-nogui/nogui_host_interface.cpp +++ b/src/duckstation-nogui/nogui_host_interface.cpp @@ -41,9 +41,6 @@ bool NoGUIHostInterface::Initialize() // TODO: Make command line. m_fullscreen_ui_enabled = true; - // we're always in batch mode for now - m_command_line_flags.batch_mode = !m_fullscreen_ui_enabled; - if (!CommonHostInterface::Initialize()) return false; @@ -477,4 +474,4 @@ void NoGUIHostInterface::RunCallbacks() callback(); lock.lock(); } -} \ No newline at end of file +}