فهرست منبع

Update IGeneralService.cs

Fixed little mistake on the debug string.
Ac_K 7 سال پیش
والد
کامیت
6a69001aa2
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  1. 1 1
      Ryujinx.HLE/OsHle/Services/Nifm/IGeneralService.cs

+ 1 - 1
Ryujinx.HLE/OsHle/Services/Nifm/IGeneralService.cs

@@ -50,7 +50,7 @@ namespace Ryujinx.HLE.OsHle.Services.Nifm
 
             Context.ResponseData.Write(BitConverter.ToUInt32(Address.GetAddressBytes()));
 
-            Context.Ns.Log.PrintInfo(LogClass.ServiceNifm, "Console's local IP is " + Address.ToString());
+            Context.Ns.Log.PrintInfo(LogClass.ServiceNifm, $"Console's local IP is {Address.ToString()}");
 
             return 0;
         }