Skip to content

Commit

Permalink
MacOS Support (#1098)
Browse files Browse the repository at this point in the history
* - WIP

* - WIP

* - WIP

* - WIP

* - WIP

* - WIP

* - WIP

* - WIP

* - WIP

* - WIP

* - WIP

* - WIP

* - WIP

* - WIP

* - WIP

* - WIP
  • Loading branch information
tgiphil committed Jul 29, 2023
1 parent a68d331 commit 462955b
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion Source/Mosa.Utility.Launcher/Starter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,14 @@ private Process LaunchQemu()
}
else
{
arg.Append(" -display sdl");
if (RuntimeInformation.IsOSPlatform(OSPlatform.OSX))
{
arg.Append(" -display cocoa");
}
else
{
arg.Append(" -display sdl");
}
}

var serial = MosaSettings.EmulatorSerial;
Expand Down

0 comments on commit 462955b

Please sign in to comment.