Fix uninitialized variable warning.

This commit is contained in:
Relintai 2022-03-23 15:23:08 +01:00
parent b4973c944d
commit 66d40632fe

View File

@ -179,7 +179,7 @@ Vector<Variant> Interpolator::pop_epoch(uint32_t p_epoch, real_t p_fraction) {
} }
} }
ObjectID cache_object_id; ObjectID cache_object_id = 0;
Object *cache_object = nullptr; Object *cache_object = nullptr;
Vector<Variant> data; Vector<Variant> data;