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