From 4fcbb143dde8f5d2465b8ed1b3efab7a96636ab5 Mon Sep 17 00:00:00 2001 From: Ac_K Date: Wed, 10 Jul 2019 07:01:16 +0200 Subject: [PATCH] fix syntax --- Ryujinx.HLE/HOS/Services/Sm/IUserInterface.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Ryujinx.HLE/HOS/Services/Sm/IUserInterface.cs b/Ryujinx.HLE/HOS/Services/Sm/IUserInterface.cs index dcf6f70db9..e439b2bb14 100644 --- a/Ryujinx.HLE/HOS/Services/Sm/IUserInterface.cs +++ b/Ryujinx.HLE/HOS/Services/Sm/IUserInterface.cs @@ -37,10 +37,10 @@ namespace Ryujinx.HLE.HOS.Services.Sm _registeredServices = new ConcurrentDictionary(); _services = AppDomain.CurrentDomain.GetAssemblies() - .SelectMany(type => type.GetTypes()) - .SelectMany(type => type.GetCustomAttributes(typeof(ServiceAttribute), true) - .Select(service => (((ServiceAttribute)service).Name, type))) - .ToDictionary(service => service.Name, service => service.type); + .SelectMany(type => type.GetTypes()) + .SelectMany(type => type.GetCustomAttributes(typeof(ServiceAttribute), true) + .Select(service => (((ServiceAttribute)service).Name, type))) + .ToDictionary(service => service.Name, service => service.type); } public static void InitializePort(Horizon system)