winevdm: Tell dosbox to read the current user's config.

Signed-off-by: Luis Sahagun <shankao@gmail.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
oldstable
Luis Sahagun 2016-06-02 17:48:38 +08:00 committed by Alexandre Julliard
parent 221b23bf48
commit 6a05abed48
1 changed files with 5 additions and 4 deletions

View File

@ -192,12 +192,13 @@ static void start_dosbox( const char *appname, const char *args )
p += sprintf( p, "exit\n" );
if (WriteFile( file, buffer, strlen(buffer), &written, NULL ) && written == strlen(buffer))
{
const char *args[4];
const char *args[5];
char *config_file = wine_get_unix_file_name( config );
args[0] = dosbox;
args[1] = "-conf";
args[2] = config_file;
args[3] = NULL;
args[1] = "-userconf";
args[2] = "-conf";
args[3] = config_file;
args[4] = NULL;
ret = _spawnvp( _P_WAIT, args[0], args );
}
CloseHandle( file );