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.
1 parent a7aa835 commit b6ad4b1Copy full SHA for b6ad4b1
editor/editor_node.cpp
@@ -4928,7 +4928,7 @@ String EditorNode::_get_system_info() const {
4928
const String &vad_version = video_adapter_driver_info[1]; // Version could be potentially empty on Linux/BSD.
4929
if (!vad_version.is_empty()) {
4930
graphics += vformat(" (%s; %s)", vad_name, vad_version);
4931
- } else {
+ } else if (!vad_name.is_empty()) {
4932
graphics += vformat(" (%s)", vad_name);
4933
}
4934
0 commit comments