We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 14bd0e8 commit 6ba85fcCopy full SHA for 6ba85fc
ReClass.NET/MemoryScanner/Scanner.cs
@@ -82,9 +82,9 @@ public IEnumerable<ScanResult> GetResults()
82
return CurrentStore.GetResultBlocks().SelectMany(rb => rb.Results.Select(r =>
83
{
84
// Convert the block offset to a real address.
85
- var c = r.Clone();
86
- c.Address = c.Address.Add(rb.Start);
87
- return c;
+ var scanResult = r.Clone();
+ scanResult.Address = scanResult.Address.Add(rb.Start);
+ return scanResult;
88
}));
89
}
90
0 commit comments