diff options
| author | Ruslan Mustakov | 2017-08-06 16:04:35 +0700 |
|---|---|---|
| committer | Ruslan Mustakov | 2017-08-06 16:04:35 +0700 |
| commit | 789815466a9cec0071922cb13729419da29dade7 (patch) | |
| tree | 9c461eda428d13c3001aa53ffd4b4c8f3ed885fe /core/object.cpp | |
| parent | 97e942dd42ea5df241e1e81704eaa6c383f3c9b4 (diff) | |
| download | godot-789815466a9cec0071922cb13729419da29dade7.tar.gz godot-789815466a9cec0071922cb13729419da29dade7.tar.zst godot-789815466a9cec0071922cb13729419da29dade7.zip | |
Diffstat (limited to 'core/object.cpp')
| -rw-r--r-- | core/object.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/object.cpp b/core/object.cpp index 525eb2ff3..582408415 100644 --- a/core/object.cpp +++ b/core/object.cpp @@ -2015,7 +2015,7 @@ void ObjectDB::cleanup() { String node_name; if (instances[*K]->is_class("Node")) node_name = " - Node Name: " + String(instances[*K]->call("get_name")); - if (instances[*K]->is_class("Resoucre")) + if (instances[*K]->is_class("Resource")) node_name = " - Resource Name: " + String(instances[*K]->call("get_name")) + " Path: " + String(instances[*K]->call("get_path")); print_line("Leaked Instance: " + String(instances[*K]->get_class()) + ":" + itos(*K) + node_name); } |
