From b8e44c423e8d408b4215d34d7bae10da90a74915 Mon Sep 17 00:00:00 2001 From: jss2a98aj Date: Fri, 29 Nov 2024 19:23:11 -0500 Subject: [PATCH] Fix command line copyright info and version --- main/main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main/main.cpp b/main/main.cpp index 0e20999fc346..3841eb6c1ee3 100644 --- a/main/main.cpp +++ b/main/main.cpp @@ -281,7 +281,7 @@ static String get_full_version_string() { if (!hash.is_empty()) { hash = "." + hash.left(9); } - return String(VERSION_FULL_BUILD) + hash; + return String(EXTERNAL_VERSION_FULL_BUILD) + hash; } #if defined(TOOLS_ENABLED) && defined(MODULE_GDSCRIPT_ENABLED) @@ -494,7 +494,7 @@ void Main::print_help_option(const char *p_option, const char *p_description, CL void Main::print_help(const char *p_binary) { print_header(true); print_help_copyright("Free and open source software under the terms of the MIT license."); - print_help_copyright("(c) 2014-present Godot Engine contributors. (c) 2007-present Juan Linietsky, Ariel Manzur."); + print_help_copyright("(c) 2024-present Blazium Engine contributors. (c) 2014-present Godot Engine contributors. (c) 2007-present Juan Linietsky, Ariel Manzur."); print_help_title("Usage"); OS::get_singleton()->print(" %s \u001b[96m[options] [path to scene or \"project.godot\" file]\u001b[0m\n", p_binary);