made tool compatible with dgvoodoo

This commit is contained in:
itsmattkc 2019-04-28 13:40:29 +10:00
parent 0e5e3823a4
commit d6f4fcd159

View file

@ -288,8 +288,11 @@ namespace Rebuilder
try
{
File.Copy(dir + "/ISLE.EXE", temp_path + "/ISLE.EXE", true);
File.Copy(dir + "/LEGO1.DLL", temp_path + "/LEGO1.DLL", true);
string[] dll_files = Directory.GetFiles(dir);
for (int i=0;i<dll_files.Length;i++)
{
File.Copy(dll_files[i], temp_path + "/" + Path.GetFileName(dll_files[i]), true);
}
}
catch
{