From 763bc1a69eab96c908bc277cd6cddeb3f5edfe2d Mon Sep 17 00:00:00 2001 From: Thog Date: Fri, 22 Nov 2019 23:08:24 +0100 Subject: [PATCH] Print path of invalid files --- Ryujinx/Ui/ApplicationLibrary.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Ryujinx/Ui/ApplicationLibrary.cs b/Ryujinx/Ui/ApplicationLibrary.cs index 958e356b86..1ab2b4a066 100644 --- a/Ryujinx/Ui/ApplicationLibrary.cs +++ b/Ryujinx/Ui/ApplicationLibrary.cs @@ -110,7 +110,7 @@ namespace Ryujinx.UI } catch (InvalidDataException) { - Logger.PrintWarning(LogClass.Application, "The header key is incorrect or missing and therefore the NCA header content type check has failed."); + Logger.PrintWarning(LogClass.Application, $"{app}: The header key is incorrect or missing and therefore the NCA header content type check has failed."); } applications.Add(app); @@ -130,7 +130,7 @@ namespace Ryujinx.UI } catch (InvalidDataException) { - Logger.PrintWarning(LogClass.Application, "The header key is incorrect or missing and therefore the NCA header content type check has failed."); + Logger.PrintWarning(LogClass.Application, $"{app}: The header key is incorrect or missing and therefore the NCA header content type check has failed."); } applications.Add(app);