Fix incorrect virtual function in `VideoStream.set_paused`

This commit is contained in:
Ninni Pipping 2023-07-20 15:55:18 +02:00
parent 8a9af36b59
commit 2284689b0e
1 changed files with 1 additions and 1 deletions

View File

@ -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 {