Update IGeneralService.cs

Fixed little mistake on the debug string.
This commit is contained in:
Ac_K 2018-07-19 03:10:51 +02:00 committed by GitHub
parent 2795af038d
commit 6a69001aa2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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;
}