mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-03-14 22:40:18 +00:00
Add back elses
This commit is contained in:
parent
df5b01bcb7
commit
2a3043b7ba
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