diff options
| author | Rémi Verschelde | 2017-01-14 18:03:38 +0100 |
|---|---|---|
| committer | Rémi Verschelde | 2017-03-18 21:14:33 +0100 |
| commit | dbf013757658ad48bb61242ed69ad4145a946863 (patch) | |
| tree | 578688f4bbdd6affa4239558c9251eea26a61611 /core/script_debugger_local.cpp | |
| parent | 75bf6a997875cab08866eb9e8ee6c75923fe8c96 (diff) | |
| download | godot-dbf013757658ad48bb61242ed69ad4145a946863.tar.gz godot-dbf013757658ad48bb61242ed69ad4145a946863.tar.zst godot-dbf013757658ad48bb61242ed69ad4145a946863.zip | |
Style: Fix statements ending with ';;'
(cherry picked from commit f44ee891beaad397481dd88da41cb80e6539774f)
Diffstat (limited to 'core/script_debugger_local.cpp')
| -rw-r--r-- | core/script_debugger_local.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/script_debugger_local.cpp b/core/script_debugger_local.cpp index a8d77668f..b832adb87 100644 --- a/core/script_debugger_local.cpp +++ b/core/script_debugger_local.cpp @@ -286,7 +286,7 @@ void ScriptDebuggerLocal::profiling_end() { for(int i=0;i<ofs;i++) { print_line(itos(i)+":"+pinfo[i].signature); - float tt=USEC_TO_SEC(pinfo[i].total_time);; + float tt=USEC_TO_SEC(pinfo[i].total_time); float st=USEC_TO_SEC(pinfo[i].self_time); print_line("\ttotal_ms: "+rtos(tt)+"\tself_ms: "+rtos(st)+"total%: "+itos(tt*100/total_time)+"\tself%: "+itos(st*100/total_time)+"\tcalls: "+itos(pinfo[i].call_count)); } |
