]> git.sesse.net Git - vlc/commitdiff
mozilla: fix regression introduced in: da3d8cdb8bb6a11bf727cf333da2ffa9816f117b
authorJean-Paul Saman <jean-paul.saman@m2x.nl>
Fri, 6 Mar 2009 15:04:26 +0000 (16:04 +0100)
committerJean-Paul Saman <jean-paul.saman@m2x.nl>
Sat, 7 Mar 2009 16:01:16 +0000 (17:01 +0100)
Fixes play/pause and fullscreen toggle.

projects/mozilla/vlcplugin.cpp

index 40ca4a2ccf0218b0c225e225a3b5c21890317769..6293f64671bd1baa12c9f45d431de816103bb937 100644 (file)
@@ -442,7 +442,7 @@ int VlcPlugin::playlist_isplaying( libvlc_exception_t *ex )
 {
     int is_playing = 0;
     if( libvlc_media_player )
-        libvlc_media_player_is_playing( libvlc_media_player, ex );
+        is_playing = libvlc_media_player_is_playing( libvlc_media_player, ex );
     return is_playing;
 }