Fix incorrect virtual function in VideoStream.set_paused
(cherry picked from commit 2284689b0e)
This commit is contained in:
committed by
Yuri Sizov
parent
c93d74aca0
commit
c148398735
@ -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 {
|
||||||
|
|||||||
Reference in New Issue
Block a user