Commit efd65b0b authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Trivial OSX compile fix

parent 95c50996
...@@ -199,21 +199,21 @@ int16 NPP_HandleEvent( NPP instance, void * event ) ...@@ -199,21 +199,21 @@ int16 NPP_HandleEvent( NPP instance, void * event )
if( p_plugin->playlist_isplaying() ) if( p_plugin->playlist_isplaying() )
{ {
hasVout = p_plugin->player_has_vout(NULL); hasVout = p_plugin->player_has_vout();
#if 0
if( hasVout ) if( hasVout )
{ {
#ifdef NOT_WORKING
libvlc_rectangle_t area; libvlc_rectangle_t area;
area.left = 0; area.left = 0;
area.top = 0; area.top = 0;
area.right = npwindow.width; area.right = npwindow.width;
area.bottom = npwindow.height; area.bottom = npwindow.height;
libvlc_video_redraw_rectangle(p_plugin->getMD(), &area, NULL); libvlc_video_redraw_rectangle(p_plugin->getMD(), &area, NULL);
}
#else #else
#warning disabled code #warning disabled code
#endif #endif
} }
}
if( ! hasVout ) if( ! hasVout )
{ {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment