Improve timezone system archive warning/error messages

This commit is contained in:
Thog 2019-10-03 01:05:50 +02:00
parent 6c7c0f958f
commit 0e75a1b065
No known key found for this signature in database
GPG key ID: 0CD291558FAFDBC6

View file

@ -75,7 +75,7 @@ namespace Ryujinx.HLE.HOS.Services.Time.TimeZone
{
_locationNameCache = new string[0];
Logger.PrintWarning(LogClass.ServiceTime, "TimeZoneBinary system archive not found! TimeZone conversions will not work, provide the system archive to fix.");
Logger.PrintWarning(LogClass.ServiceTime, "TimeZoneBinary system title not found! TimeZone conversions will not work, provide the system archive to fix this warning. (See https://github.com/Ryujinx/Ryujinx#requirements for more informations)");
}
}
@ -175,7 +175,7 @@ namespace Ryujinx.HLE.HOS.Services.Time.TimeZone
if (!HasTimeZoneBinaryTitle())
{
throw new InvalidSystemResourceException($"TimeZoneBinary system archive not found! Please provide it.");
throw new InvalidSystemResourceException($"TimeZoneBinary system title not found! Please provide it. (See https://github.com/Ryujinx/Ryujinx#requirements for more informations)");
}
ResultCode result = GetTimeZoneBinary(locationName, out Stream timeZoneBinaryStream);