mirror of
https://github.com/godotengine/godot.git
synced 2025-10-19 07:53:26 +00:00
Merge pull request #111601 from AThousandShips/fix_build_objprof
Fix use of outdated macros in ObjectDBProfiler
This commit is contained in:
commit
094eb99a43
1 changed files with 2 additions and 2 deletions
|
@ -168,9 +168,9 @@ Error SnapshotCollector::parse_message(void *p_user, const String &p_msg, const
|
|||
}
|
||||
|
||||
String SnapshotCollector::get_godot_version_string() {
|
||||
String hash = String(VERSION_HASH);
|
||||
String hash = String(GODOT_VERSION_HASH);
|
||||
if (hash.length() != 0) {
|
||||
hash = " " + vformat("[%s]", hash.left(9));
|
||||
}
|
||||
return "v" VERSION_FULL_BUILD + hash;
|
||||
return "v" GODOT_VERSION_FULL_BUILD + hash;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue