diff options
author | patwork <patwork@gmail.com> | 2024-05-28 12:32:46 +0200 |
---|---|---|
committer | patwork <patwork@gmail.com> | 2024-05-28 12:32:46 +0200 |
commit | 2dedf6253b328869b1401da7585edddb439a998d (patch) | |
tree | ca57c753597858365a8eea2f29b1cf8d93cfe775 /main | |
parent | be56cab58c056c074d1e02cd0b38641204e39f41 (diff) | |
download | redot-engine-2dedf6253b328869b1401da7585edddb439a998d.tar.gz |
Fix -empty string- console log in web export
Diffstat (limited to 'main')
-rw-r--r-- | main/main.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/main/main.cpp b/main/main.cpp index 20ffdf5ae1..2bd421e5af 100644 --- a/main/main.cpp +++ b/main/main.cpp @@ -2841,8 +2841,10 @@ Error Main::setup2() { OS::get_singleton()->benchmark_end_measure("Startup", "Servers"); +#ifndef WEB_ENABLED // Add a blank line for readability. Engine::get_singleton()->print_header(""); +#endif // WEB_ENABLED register_core_singletons(); |