Commit 7b00a509 authored by Alexandre Julliard's avatar Alexandre Julliard

wineandroid: Use full pathnames to invoke builtin apps.

parent 456e7618
......@@ -131,7 +131,7 @@ public class WineActivity extends Activity
if (cmdline == null)
{
if (new File( prefix, "drive_c/winestart.cmd" ).exists()) cmdline = "c:\\winestart.cmd";
else cmdline = "wineconsole.exe";
else cmdline = "c:\\windows\\system32\\wineconsole.exe";
}
String winedebug = readFileString( new File( prefix, "winedebug" ));
......@@ -164,7 +164,7 @@ public class WineActivity extends Activity
}
String[] cmd = { environ.get( "WINELOADER" ),
"explorer.exe",
"c:\\windows\\system32\\explorer.exe",
"/desktop=shell,,android",
cmdline };
......
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