[DatFile] Make call to Keys automatically do .ToList()

This commit is contained in:
Matt Nadareski
2017-10-30 21:15:37 -07:00
parent 0fa2a1a7e2
commit b2538502e6
15 changed files with 52 additions and 49 deletions

View File

@@ -629,7 +629,7 @@ namespace RombaSharp
// Once we have both, check for any new files
List<string> dupehashes = new List<string>();
List<string> keys = depot.Keys.ToList();
List<string> keys = depot.Keys;
foreach (string key in keys)
{
List<DatItem> roms = depot[key];