Skip to content

Commit

Permalink
Merge pull request #79710 from AThousandShips/video_play
Browse files Browse the repository at this point in the history
Fix incorrect virtual function in `VideoStream.set_paused`
  • Loading branch information
YuriSizov committed Aug 1, 2023
2 parents 8654ba1 + 2284689 commit c9aa213
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scene/resources/video_stream.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ bool VideoStreamPlayback::is_playing() const {
}

void VideoStreamPlayback::set_paused(bool p_paused) {
GDVIRTUAL_CALL(_is_playing, p_paused);
GDVIRTUAL_CALL(_set_paused, p_paused);
}

bool VideoStreamPlayback::is_paused() const {
Expand Down

0 comments on commit c9aa213

Please sign in to comment.