diff options
author | Hugo Locurcio <hugo.locurcio@hugo.pro> | 2022-05-05 20:23:47 +0200 |
---|---|---|
committer | Hugo Locurcio <hugo.locurcio@hugo.pro> | 2022-05-05 20:23:47 +0200 |
commit | 79be2c7b75aed74541172187ce0d5249d129768d (patch) | |
tree | 9c57b663ffbba1041df7dc1484223635dd84da0f /core/debugger/engine_profiler.h | |
parent | efd6e4da0c506d0f6755f242484aba1bdc762b6e (diff) | |
download | redot-engine-79be2c7b75aed74541172187ce0d5249d129768d.tar.gz |
Rename profiler "Idle Time" to "Process Time"
References to "idle time" are progressively being replaced by
"process time" throughout the engine to avoid confusion.
Diffstat (limited to 'core/debugger/engine_profiler.h')
-rw-r--r-- | core/debugger/engine_profiler.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/debugger/engine_profiler.h b/core/debugger/engine_profiler.h index ade280a7bb..e50924a1ed 100644 --- a/core/debugger/engine_profiler.h +++ b/core/debugger/engine_profiler.h @@ -48,7 +48,7 @@ protected: public: virtual void toggle(bool p_enable, const Array &p_opts); virtual void add(const Array &p_data); - virtual void tick(double p_frame_time, double p_idle_time, double p_physics_time, double p_physics_frame_time); + virtual void tick(double p_frame_time, double p_process_time, double p_physics_time, double p_physics_frame_time); Error bind(const String &p_name); Error unbind(); |