From 4a908f3b5f9250d11fa65820ade98c2945c1bd2c Mon Sep 17 00:00:00 2001 From: Thog Date: Fri, 14 Feb 2020 22:52:24 +0100 Subject: [PATCH] Fix a nit --- Ryujinx/Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Ryujinx/Program.cs b/Ryujinx/Program.cs index edde60963f..7ff2b64f71 100644 --- a/Ryujinx/Program.cs +++ b/Ryujinx/Program.cs @@ -80,7 +80,7 @@ namespace Ryujinx Application.Init(); string globalProdKeysPath = Path.Combine(globalBasePath, "system", "prod.keys"); - string userProfilePath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.UserProfile), ".switch", "prod.keys"); + string userProfilePath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.UserProfile), ".switch", "prod.keys"); if (!File.Exists(globalProdKeysPath) && !File.Exists(userProfilePath) && !Migration.IsMigrationNeeded()) { GtkDialog.CreateWarningDialog("Key file was not found", "Please refer to `KEYS.md` for more info");