diff options
author | David Snopek <dsnopek@gmail.com> | 2024-06-18 10:07:35 -0500 |
---|---|---|
committer | David Snopek <dsnopek@gmail.com> | 2024-09-11 16:48:14 -0500 |
commit | c2af6bcb5983356244d699735cda00b0bc5f4f8d (patch) | |
tree | 378e12ff67ccca0ef8da1aef0e09978feef9ee97 /scene/resources/video_stream.cpp | |
parent | 2c136e6170a40f58f2dfb89d32eadfca7156ef37 (diff) | |
download | redot-engine-c2af6bcb5983356244d699735cda00b0bc5f4f8d.tar.gz |
GDExtension: Mark virtual function as `is_required` in `extension_api.json`
Co-authored-by: Jovan Gerodetti <jovan.gerodetti@titannano.de>
Diffstat (limited to 'scene/resources/video_stream.cpp')
-rw-r--r-- | scene/resources/video_stream.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/resources/video_stream.cpp b/scene/resources/video_stream.cpp index 3d31fe0491..1fcc1821dc 100644 --- a/scene/resources/video_stream.cpp +++ b/scene/resources/video_stream.cpp @@ -119,7 +119,7 @@ Ref<Texture2D> VideoStreamPlayback::get_texture() const { } void VideoStreamPlayback::update(double p_delta) { - GDVIRTUAL_REQUIRED_CALL(_update, p_delta); + GDVIRTUAL_CALL(_update, p_delta); } void VideoStreamPlayback::set_mix_callback(AudioMixCallback p_callback, void *p_userdata) { |