We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e2075d3 + e496cdb commit 17dc4ccCopy full SHA for 17dc4cc
editor/editor_node.cpp
@@ -5386,6 +5386,12 @@ String EditorNode::_get_system_info() const {
5386
5387
info.push_back(vformat("%s (%d threads)", processor_name, processor_count));
5388
5389
+ const int64_t system_ram = OS::get_singleton()->get_memory_info()["physical"];
5390
+ if (system_ram > 0) {
5391
+ // If the memory info is available, display it.
5392
+ info.push_back(vformat("%s memory", String::humanize_size(system_ram)));
5393
+ }
5394
+
5395
return String(" - ").join(info);
5396
}
5397
0 commit comments