-
Notifications
You must be signed in to change notification settings - Fork 4
Description
Identified two issues:
-
Blizzard now has duplicate entries in the Install manifest however I'm not sure if this is a bug their end or not. I assume that all identical files should be merged and have the correct tags set. This has been seen on
BlizzardError.exefor x64 and arm64. If this is not a bug then this need supporting which leads onto issue 2... -
Currently Install file entries are stored in a Dictionary with the filename as key, this was done for speed of searching by filename. However there may be a situation where multiple versions of the same named file exist (more likely with Win ARM support now), which at present, only the first entry is stored. This needs to be converted to either a multimap, a list or stored by CKey instead then methods updated accordingly.