Commit 9d3dcae1 authored by Alexandre Julliard's avatar Alexandre Julliard

winmm: Load only one sound driver at a time.

parent 293ec584
...@@ -687,7 +687,7 @@ BOOL MMDRV_Init(void) ...@@ -687,7 +687,7 @@ BOOL MMDRV_Init(void)
char *next = strchr(p, ','); char *next = strchr(p, ',');
if (next) *next++ = 0; if (next) *next++ = 0;
sprintf( filename, "wine%s.drv", p ); sprintf( filename, "wine%s.drv", p );
ret |= MMDRV_Install( filename, filename, FALSE ); if ((ret = MMDRV_Install( filename, filename, FALSE ))) break;
p = next; p = next;
} }
......
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