Merge pull request #79710 from AThousandShips/video_play
Fix incorrect virtual function in `VideoStream.set_paused`
This commit is contained in:
commit
c9aa2131dc
@ -75,7 +75,7 @@ bool VideoStreamPlayback::is_playing() const {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void VideoStreamPlayback::set_paused(bool p_paused) {
|
void VideoStreamPlayback::set_paused(bool p_paused) {
|
||||||
GDVIRTUAL_CALL(_is_playing, p_paused);
|
GDVIRTUAL_CALL(_set_paused, p_paused);
|
||||||
}
|
}
|
||||||
|
|
||||||
bool VideoStreamPlayback::is_paused() const {
|
bool VideoStreamPlayback::is_paused() const {
|
||||||
|
Loading…
Reference in New Issue
Block a user