Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,17 @@ public void PlayRom(GeneratedRom? rom)
return;
}

romLauncherService.LaunchRom(rom);
try
{
romLauncherService.LaunchRom(rom);
}
catch (Exception e)
{
logger.LogError(e, "Could not launch rom");
DisplayError(
"There was an issue launching the rom. Make sure the rom file still exists and that you have a valid application set to launch roms in either the randomizer options or your operating system.");
}

}

public void OpenFolder(GeneratedRom? rom)
Expand Down