Skip to content

Commit

Permalink
Fix command line copyright info and version
Browse files Browse the repository at this point in the history
  • Loading branch information
jss2a98aj committed Nov 30, 2024
1 parent 7a0b15e commit b8e44c4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -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);
Expand Down

0 comments on commit b8e44c4

Please sign in to comment.