Increase the default profiler_frame_max_functions to 512

This should decrease the number of instances in which functions
don't appear in the profiler.

This partially addresses #40251.
This commit is contained in:
Hugo Locurcio 2020-11-19 19:37:22 +01:00
parent 09f3a21ccc
commit c4e200687e
No known key found for this signature in database
GPG key ID: 39E8F8BE30B0A49C

View file

@ -764,7 +764,7 @@ EditorProfiler::EditorProfiler() {
last_metric = -1;
hover_metric = -1;
EDITOR_DEF("debugger/profiler_frame_max_functions", 64);
EDITOR_DEF("debugger/profiler_frame_max_functions", 512);
frame_delay = memnew(Timer);
frame_delay->set_wait_time(0.1);