diff options
| author | Rémi Verschelde | 2016-07-03 23:19:22 +0200 |
|---|---|---|
| committer | Rémi Verschelde | 2016-07-07 23:15:03 +0200 |
| commit | b6ac91c0e6416eda0dec226c5dbe5716f293e4f6 (patch) | |
| tree | 885a240c6cc6dfbe7a4daf0a0b002e5ea06ffbb0 /modules/ik/ik.cpp | |
| parent | 1b9433594ecc6c935c81e9030a6b52c7b56cb3a4 (diff) | |
| download | godot-b6ac91c0e6416eda0dec226c5dbe5716f293e4f6.tar.gz godot-b6ac91c0e6416eda0dec226c5dbe5716f293e4f6.tar.zst godot-b6ac91c0e6416eda0dec226c5dbe5716f293e4f6.zip | |
Removed unused variables (first pass)
Fixes various gcc 5.4.0 warnings for -Wunused-variable and -Wunused-but-set-variable
Diffstat (limited to 'modules/ik/ik.cpp')
| -rw-r--r-- | modules/ik/ik.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/ik/ik.cpp b/modules/ik/ik.cpp index 172e16459..35b3ba7e8 100644 --- a/modules/ik/ik.cpp +++ b/modules/ik/ik.cpp @@ -241,7 +241,7 @@ void InverseKinematics::_notification(int p_what) } } break; case NOTIFICATION_PROCESS: { - float delta = get_process_delta_time(); + Spatial *sksp = skel->cast_to<Spatial>(); if (!bound) break; |
