Skip to content

Commit

Permalink
Fix oversight with launching entries
Browse files Browse the repository at this point in the history
  • Loading branch information
WumboSpasm committed Dec 27, 2022
1 parent 323e73b commit cf3a120
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/Main.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down Expand Up @@ -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:")
{
Expand Down

0 comments on commit cf3a120

Please sign in to comment.