Search found 1 match

by vapre
Sun Sep 23, 2018 7:24 pm
Forum: General Discussion
Topic: Linux (Xubuntu) - Advanced Install can't find ISO Mounted CD Image
Replies: 16
Views: 15355

Re: Linux (Xubuntu) - Advanced Install can't find ISO Mounted CD Image

./OpenRA.Mods.Common/Widgets/Logic/Installation/InstallFromDiscLogic.cs seems to search each drive and after check if is of type cdrom.

similar:

drive_list.cs

using System;
using System.IO;

public class DriveList
{
static public void Main()
{
var dl = DriveInfo.GetDrives();
for (var i = 0 ...