diff options
Diffstat (limited to 'main/performance.cpp')
-rw-r--r-- | main/performance.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/main/performance.cpp b/main/performance.cpp index 0894d68d3c..7e6b9fca64 100644 --- a/main/performance.cpp +++ b/main/performance.cpp @@ -78,8 +78,9 @@ void Performance::_bind_methods() { float Performance::_get_node_count() const { MainLoop *ml = OS::get_singleton()->get_main_loop(); SceneTree *sml = Object::cast_to<SceneTree>(ml); - if (!sml) + if (!sml) { return 0; + } return sml->get_node_count(); } |