Commit 31498bce authored by Damien Fouilleul's avatar Damien Fouilleul

plugin.cpp: eclipse "one-instance" option in saved preferences, which prevents...

plugin.cpp: eclipse "one-instance" option in saved preferences, which prevents activex plugin from working properly if a player or another activex plugin is already running. 
parent ebd0b550
...@@ -484,8 +484,8 @@ HRESULT VLCPlugin::onInit(void) ...@@ -484,8 +484,8 @@ HRESULT VLCPlugin::onInit(void)
/* /*
** default initialization options ** default initialization options
*/ */
char *ppsz_argv[10] = { "vlc", "-vv" }; char *ppsz_argv[10] = { "vlc", "-vv", "--no-one-instance" };
int ppsz_argc = 2; int ppsz_argc = 3;
HKEY h_key; HKEY h_key;
DWORD i_type, i_data = MAX_PATH + 1; DWORD i_type, i_data = MAX_PATH + 1;
......
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