aboutsummaryrefslogtreecommitdiff
path: root/editor/script_editor_debugger.cpp
diff options
context:
space:
mode:
authorPoommetee Ketson2017-10-21 21:28:08 +0700
committerPoommetee Ketson2017-10-21 21:28:08 +0700
commit9b634180aa9eefe079ecbf0ae1a1227d9555ba02 (patch)
tree08b15cd1d783f5734ddb24fb30b01e9084eb3dd3 /editor/script_editor_debugger.cpp
parentb302084395a6d7f3cc8e4102751ced29779f2ea2 (diff)
downloadgodot-9b634180aa9eefe079ecbf0ae1a1227d9555ba02.tar.gz
godot-9b634180aa9eefe079ecbf0ae1a1227d9555ba02.tar.zst
godot-9b634180aa9eefe079ecbf0ae1a1227d9555ba02.zip
Diffstat (limited to 'editor/script_editor_debugger.cpp')
-rw-r--r--editor/script_editor_debugger.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/editor/script_editor_debugger.cpp b/editor/script_editor_debugger.cpp
index 5ad4674f7..ef61aad34 100644
--- a/editor/script_editor_debugger.cpp
+++ b/editor/script_editor_debugger.cpp
@@ -663,7 +663,7 @@ void ScriptEditorDebugger::_parse_message(const String &p_msg, const Array &p_da
EditorProfiler::Metric::Category::Item item;
item.calls = 1;
item.line = 0;
- item.name = "Fixed Time";
+ item.name = "Physics Time";
item.total = metric.physics_time;
item.self = item.total;
item.signature = "physics_time";
@@ -677,7 +677,7 @@ void ScriptEditorDebugger::_parse_message(const String &p_msg, const Array &p_da
frame_time.items.push_back(item);
- item.name = "Fixed Frame Time";
+ item.name = "Physics Frame Time";
item.total = metric.physics_frame_time;
item.self = item.total;
item.signature = "physics_frame_time";