summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2024-06-18 17:59:22 +0200
committerRémi Verschelde <rverschelde@gmail.com>2024-06-18 17:59:22 +0200
commita492b32ed088a661d3d20541de950323d0743b6b (patch)
treefb560da61242d754739f0b067ec05c5478798a4e
parent2c5f6db8c2c3d18b7316d2b2caa06cf1324b631c (diff)
parent21586da50ef5fe916c57e10b0aaa14e396f07dd2 (diff)
downloadredot-engine-a492b32ed088a661d3d20541de950323d0743b6b.tar.gz
Merge pull request #93281 from TitanNano/jovan/fix_get_frame_data
Make `profiling_get_frame_data` call the correct GDVIRTUAL method
-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;
}