mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-03-15 06:10:18 +00:00
Add back elses
This commit is contained in:
parent
ccba0c942c
commit
61d9e207ed
1 changed files with 2 additions and 4 deletions
|
@ -70,13 +70,11 @@ namespace Ryujinx.Ava.UI.Helpers
|
||||||
{
|
{
|
||||||
return CreateLinux(parent);
|
return CreateLinux(parent);
|
||||||
}
|
}
|
||||||
|
else if (OperatingSystem.IsWindows())
|
||||||
if (OperatingSystem.IsWindows())
|
|
||||||
{
|
{
|
||||||
return CreateWin32(parent);
|
return CreateWin32(parent);
|
||||||
}
|
}
|
||||||
|
else if (OperatingSystem.IsMacOS())
|
||||||
if (OperatingSystem.IsMacOS())
|
|
||||||
{
|
{
|
||||||
return CreateMacOs(parent);
|
return CreateMacOs(parent);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue