diff options
| author | Rémi Verschelde | 2016-05-04 15:28:37 +0200 |
|---|---|---|
| committer | Rémi Verschelde | 2016-05-04 15:28:37 +0200 |
| commit | fb277dbde6a337a3294867f54cebc54c7cd91653 (patch) | |
| tree | ea3dcb0f1ba9dd7d64fa35790994700af4becff9 /tools/editor/plugins/baked_light_editor_plugin.cpp | |
| parent | dd419e8efa347a8c1d6be464a89ec056cb4e4712 (diff) | |
| download | godot-fb277dbde6a337a3294867f54cebc54c7cd91653.tar.gz godot-fb277dbde6a337a3294867f54cebc54c7cd91653.tar.zst godot-fb277dbde6a337a3294867f54cebc54c7cd91653.zip | |
i18n: Don't make print_line calls translatable
Diffstat (limited to 'tools/editor/plugins/baked_light_editor_plugin.cpp')
| -rw-r--r-- | tools/editor/plugins/baked_light_editor_plugin.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/editor/plugins/baked_light_editor_plugin.cpp b/tools/editor/plugins/baked_light_editor_plugin.cpp index 690b2cd55..3e7d7b63a 100644 --- a/tools/editor/plugins/baked_light_editor_plugin.cpp +++ b/tools/editor/plugins/baked_light_editor_plugin.cpp @@ -97,7 +97,7 @@ void BakedLightEditor::_notification(int p_option) { } } - print_line(TTR("MSCOL: ")+itos(OS::get_singleton()->get_ticks_msec()-t)); + print_line("MSCOL: "+itos(OS::get_singleton()->get_ticks_msec()-t)); t = OS::get_singleton()->get_ticks_msec(); Array a; @@ -132,14 +132,14 @@ void BakedLightEditor::_notification(int p_option) { bake_info->set_text("rays/s: "+itos(rays_sec)); update_timeout=1; - print_line(TTR("MSUPDATE: ")+itos(OS::get_singleton()->get_ticks_msec()-t)); + print_line("MSUPDATE: "+itos(OS::get_singleton()->get_ticks_msec()-t)); t=OS::get_singleton()->get_ticks_msec(); node->get_baked_light()->set_octree(octree_texture); node->get_baked_light()->set_light(light_texture); node->get_baked_light()->set_sampler_octree(octree_sampler); node->get_baked_light()->set_edited(true); - print_line(TTR("MSSET: ")+itos(OS::get_singleton()->get_ticks_msec()-t)); + print_line("MSSET: "+itos(OS::get_singleton()->get_ticks_msec()-t)); |
