mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-03-14 20:00:17 +00:00
Fix redundancies
This commit is contained in:
parent
fc4b7cba2c
commit
df5b01bcb7
1 changed files with 4 additions and 2 deletions
|
@ -70,11 +70,13 @@ 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