Skip to content
Snippets Groups Projects
Commit a7f07552 authored by Hugo Beauzée-Luyssen's avatar Hugo Beauzée-Luyssen
Browse files

cppcx: Update addSlave prototype

parent a6c6573a
No related branches found
No related tags found
No related merge requests found
......@@ -403,9 +403,9 @@ namespace libVLCX
return m_mp.setSpu(i_spu);
}
bool MediaPlayer::addSlave(SlaveType type, Platform::String^ uri)
bool MediaPlayer::addSlave(SlaveType type, Platform::String^ uri, bool select)
{
return m_mp.addSlave(static_cast<VLC::MediaSlave::Type>(type), VLCString(uri));
return m_mp.addSlave(static_cast<VLC::MediaSlave::Type>(type), VLCString(uri), select);
}
int64_t MediaPlayer::spuDelay()
......
......@@ -855,7 +855,7 @@ namespace libVLCX
*/
int setSpu(int i_spu);
bool addSlave(SlaveType type, Platform::String^ uri);
bool addSlave(SlaveType type, Platform::String^ uri, bool select);
/**
* Get the current subtitle delay. Positive values means subtitles are
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment