diff options
author | Yuri Sizov <yuris@humnom.net> | 2023-12-22 17:20:18 +0100 |
---|---|---|
committer | Yuri Sizov <yuris@humnom.net> | 2023-12-22 17:20:18 +0100 |
commit | ebbc985cf8216ec179666ae86214a1642904b936 (patch) | |
tree | 1b1cba9826b72f3b9c3c171a11e1ea2b2bc04ae1 | |
parent | 7d03a223292253cb93d140de4067abb1c034ce8d (diff) | |
parent | 6da4d5bd609dbf03e1f5f0944cbcac0604f941f8 (diff) | |
download | redot-engine-ebbc985cf8216ec179666ae86214a1642904b936.tar.gz |
Merge pull request #86409 from Calinou/displayserver-failure-message-suggest-headless
Suggest `--headless` CLI argument in DisplayServer not found error message
-rw-r--r-- | main/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/main.cpp b/main/main.cpp index 9bd2578eba..4dcd92bcff 100644 --- a/main/main.cpp +++ b/main/main.cpp @@ -2463,7 +2463,7 @@ Error Main::setup2() { } if (err != OK || display_server == nullptr) { - ERR_PRINT("Unable to create DisplayServer, all display drivers failed."); + ERR_PRINT("Unable to create DisplayServer, all display drivers failed.\nUse \"--headless\" command line argument to run the engine in headless mode if this is desired (e.g. for continuous integration)."); return err; } |