From cf3a120dec98ed38469d505eac963933c01d633e Mon Sep 17 00:00:00 2001 From: Wumbo <58399748+WumboSpasm@users.noreply.github.com> Date: Mon, 26 Dec 2022 22:04:30 -0500 Subject: [PATCH] Fix oversight with launching entries --- src/Main.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Main.cs b/src/Main.cs index 3a748f9..a665ae1 100644 --- a/src/Main.cs +++ b/src/Main.cs @@ -312,6 +312,7 @@ private void ArchiveList_itemAccess(object sender, EventArgs e) } LaunchEntry.StartInfo.Arguments = $"play -i {entryID}"; + LaunchEntry.StartInfo.FileName = Config.CLIFpPath; LaunchEntry.Start(); EnsurePlaysLoaded(); @@ -357,6 +358,7 @@ private void AlternateMenu_itemClicked(object sender, ToolStripItemClickedEventA var entry = (AddApp)e.ClickedItem.Tag; LaunchEntry.StartInfo.Arguments = $"play -i {entry.ID}"; + LaunchEntry.StartInfo.FileName = Config.CLIFpPath; if (entry.ApplicationPath != ":extras:" && entry.ApplicationPath != ":message:") {