Fix incorrect virtual function in `VideoStream.set_paused`
This commit is contained in:
parent
8a9af36b59
commit
2284689b0e
|
@ -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 {
|
||||
|
|
Loading…
Reference in New Issue