diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2018-06-18 15:00:38 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-18 15:00:38 +0200 |
commit | e19da5ab6ac1acd965842c5deaa329dad8ea3299 (patch) | |
tree | 0d7939aefcceffb5d5728bfc743d86b3e321bd2e | |
parent | 88cc8074d0798b9119b6d36753d99f890ec4e66b (diff) | |
parent | 03bb14bcc56e33208865b37d4ef8ae0c3a72cda8 (diff) |
Merge pull request #19589 from NathanWarden/build_solutions_force_editor
The build-solutions flag now forces editor mode.
-rw-r--r-- | main/main.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/main/main.cpp b/main/main.cpp index f719830cbc..2e3c2f41b9 100644 --- a/main/main.cpp +++ b/main/main.cpp @@ -539,6 +539,7 @@ Error Main::setup(const char *execpath, int argc, char *argv[], bool p_second_ph } else if (I->get() == "--build-solutions") { // Build the scripting solution such C# auto_build_solutions = true; + editor = true; #endif } else if (I->get() == "--no-window") { // disable window creation, Windows only |