aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx/Ui/Program.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx/Ui/Program.cs')
-rw-r--r--Ryujinx/Ui/Program.cs8
1 files changed, 4 insertions, 4 deletions
diff --git a/Ryujinx/Ui/Program.cs b/Ryujinx/Ui/Program.cs
index 9c8af28d..f9d40eb5 100644
--- a/Ryujinx/Ui/Program.cs
+++ b/Ryujinx/Ui/Program.cs
@@ -37,27 +37,27 @@ namespace Ryujinx
if (RomFsFiles.Length > 0)
{
- Logging.Info("Loading as cart with RomFS.");
+ Logging.Info(LogClass.Loader, "Loading as cart with RomFS.");
Ns.LoadCart(args[0], RomFsFiles[0]);
}
else
{
- Logging.Info("Loading as cart WITHOUT RomFS.");
+ Logging.Info(LogClass.Loader, "Loading as cart WITHOUT RomFS.");
Ns.LoadCart(args[0]);
}
}
else if (File.Exists(args[0]))
{
- Logging.Info("Loading as homebrew.");
+ Logging.Info(LogClass.Loader, "Loading as homebrew.");
Ns.LoadProgram(args[0]);
}
}
else
{
- Logging.Error("Please specify the folder with the NSOs/IStorage or a NSO/NRO.");
+ Logging.Error(LogClass.Loader, "Please specify the folder with the NSOs/IStorage or a NSO/NRO.");
}
using (GLScreen Screen = new GLScreen(Ns, Renderer))