Fix for batch mode nogui (#1674)

* Don't override batch_mode to false in nogui

* Update nogui_host_interface.cpp
This commit is contained in:
Chris 2021-02-23 10:20:21 -05:00 committed by GitHub
parent 524a2f3f19
commit 8b4a7e1b98
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 4 deletions

View File

@ -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();
}
}
}