Fixed NDS injections

This commit is contained in:
ZestyTS 2022-08-28 10:02:32 -07:00
parent 0f2b1acb8e
commit 254bee4d3a

View file

@ -2165,7 +2165,7 @@ namespace UWUVCI_AIO_WPF
using (var stream = new FileStream(zipLocation, FileMode.Create))
using (var archive = new ZipArchive(stream, ZipArchiveMode.Create))
archive.CreateEntryFromFile(romPath, Path.GetFileNameWithoutExtension(romPath));
archive.CreateEntryFromFile(romPath, Path.GetFileName(romPath));
mvvm.Progress = 80;
File.Delete(RomName);