From 0e75a1b06594a9a0a9dcb9754afb9b53bdce5d31 Mon Sep 17 00:00:00 2001 From: Thog Date: Thu, 3 Oct 2019 01:05:50 +0200 Subject: [PATCH] Improve timezone system archive warning/error messages --- .../HOS/Services/Time/TimeZone/TimeZoneContentManager.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Ryujinx.HLE/HOS/Services/Time/TimeZone/TimeZoneContentManager.cs b/Ryujinx.HLE/HOS/Services/Time/TimeZone/TimeZoneContentManager.cs index f1dd110683..f02781b311 100644 --- a/Ryujinx.HLE/HOS/Services/Time/TimeZone/TimeZoneContentManager.cs +++ b/Ryujinx.HLE/HOS/Services/Time/TimeZone/TimeZoneContentManager.cs @@ -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);