From 17ac118946dd607d466dd17ea75aaa8a66560c94 Mon Sep 17 00:00:00 2001 From: AlexLavoie42 Date: Sun, 17 Feb 2019 01:52:16 -0800 Subject: [PATCH] Added "ROM not found." message if specified file is invalid. (#592) * Added "ROM not found." message if specified file is invalid. * Fixed styling * Made message more specific and changed both cases to warnings. --- Ryujinx/Program.cs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Ryujinx/Program.cs b/Ryujinx/Program.cs index c73ff9b9c..52c85d568 100644 --- a/Ryujinx/Program.cs +++ b/Ryujinx/Program.cs @@ -75,10 +75,14 @@ namespace Ryujinx break; } } + else + { + Logger.PrintWarning(LogClass.Application, "Please specify a valid XCI/NCA/NSP/PFS0/NRO file"); + } } else { - Logger.PrintInfo(LogClass.Application, "Please specify the folder with the NSOs/IStorage or a NSO/NRO."); + Logger.PrintWarning(LogClass.Application, "Please specify the folder with the NSOs/IStorage or a NSO/NRO."); } using (GlScreen screen = new GlScreen(device, renderer))