summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPouleyKetchoupp <pouleyketchoup@gmail.com>2021-08-26 10:49:12 -0700
committerPouleyKetchoupp <pouleyketchoup@gmail.com>2021-08-26 10:49:12 -0700
commitcbce1550ff8f30750b31be767d8fb354d338ad85 (patch)
treeba0786850e1cbccfcf62f5eacffa93ce20fff8c4
parentf89adbf112f89356569705f3e574b8ced1f68738 (diff)
Fix delta passed in _physics_process
Regression due to typo in recent GDVIRTUAL_CALL change.
-rw-r--r--scene/main/node.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/main/node.cpp b/scene/main/node.cpp
index 9fce00be60..8e173a9e2d 100644
--- a/scene/main/node.cpp
+++ b/scene/main/node.cpp
@@ -58,7 +58,7 @@ void Node::_notification(int p_notification) {
} break;
case NOTIFICATION_PHYSICS_PROCESS: {
- GDVIRTUAL_CALL(_physics_process, get_process_delta_time());
+ GDVIRTUAL_CALL(_physics_process, get_physics_process_delta_time());
} break;
case NOTIFICATION_ENTER_TREE: {