mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-03-14 21:40: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);
|
||||
}
|
||||
|
||||
if (OperatingSystem.IsWindows())
|
||||
else if (OperatingSystem.IsWindows())
|
||||
{
|
||||
return CreateWin32(parent);
|
||||
}
|
||||
|
||||
if (OperatingSystem.IsMacOS())
|
||||
else if (OperatingSystem.IsMacOS())
|
||||
{
|
||||
return CreateMacOs(parent);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue