summaryrefslogtreecommitdiffstats
path: root/core/object
diff options
context:
space:
mode:
authorJovan Gerodetti <jovan.gerodetti@titannano.de>2024-06-18 00:52:04 +0200
committerJovan Gerodetti <jovan.gerodetti@titannano.de>2024-06-18 00:53:25 +0200
commit21586da50ef5fe916c57e10b0aaa14e396f07dd2 (patch)
tree54cc9b7de6d3a77ac7e2d8a5176d3226e7404d10 /core/object
parent71699e08c9df78b7203fa4ef9cede28e995d6ace (diff)
downloadredot-engine-21586da50ef5fe916c57e10b0aaa14e396f07dd2.tar.gz
Make profiling_get_frame_data call the correct GDVIRTUAL method.
Diffstat (limited to 'core/object')
-rw-r--r--core/object/script_language_extension.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/object/script_language_extension.h b/core/object/script_language_extension.h
index 8fd26c3d2c..c9344f5799 100644
--- a/core/object/script_language_extension.h
+++ b/core/object/script_language_extension.h
@@ -646,7 +646,7 @@ public:
virtual int profiling_get_frame_data(ProfilingInfo *p_info_arr, int p_info_max) override {
int ret = 0;
- GDVIRTUAL_REQUIRED_CALL(_profiling_get_accumulated_data, p_info_arr, p_info_max, ret);
+ GDVIRTUAL_REQUIRED_CALL(_profiling_get_frame_data, p_info_arr, p_info_max, ret);
return ret;
}