Skip to content
This repository was archived by the owner on Aug 23, 2025. It is now read-only.

Commit a5fb794

Browse files
committed
Fixed problem when starting VMs
1 parent 7fedfc5 commit a5fb794

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

86BoxManager/frmMain.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -610,7 +610,7 @@ private void VMStart()
610610
{
611611
Process p = new Process();
612612
p.StartInfo.FileName = exepath + "86Box.exe";
613-
p.StartInfo.Arguments = "-P \"" + lstVMs.SelectedItems[0].SubItems[2].Text + "\" -H " + ZEROID + "," + hWndHex;
613+
p.StartInfo.Arguments = "-P \"" + lstVMs.SelectedItems[0].SubItems[3].Text + "\" -H " + ZEROID + "," + hWndHex;
614614
if (logging)
615615
{
616616
p.StartInfo.Arguments += " -L \"" + logpath + "\"";
@@ -767,7 +767,7 @@ private void VMConfigure()
767767
{
768768
Process p = new Process();
769769
p.StartInfo.FileName = exepath + "86Box.exe";
770-
p.StartInfo.Arguments = "-S -P \"" + lstVMs.SelectedItems[0].SubItems[2].Text + "\"";
770+
p.StartInfo.Arguments = "-S -P \"" + lstVMs.SelectedItems[0].SubItems[3].Text + "\"";
771771
if (!showConsole)
772772
{
773773
p.StartInfo.RedirectStandardOutput = true;

0 commit comments

Comments
 (0)