Naming fixes.

This commit is contained in:
2020-07-20 21:11:32 +01:00
parent c58c0fd1f8
commit 6220425ac6
525 changed files with 15675 additions and 15524 deletions

View File

@@ -42,11 +42,11 @@ namespace Aaru.DiscImages
if(Header.flags.HasFlag(ScpFlags.Writable))
return null;
byte[] wholeFile = new byte[scpStream.Length];
byte[] wholeFile = new byte[_scpStream.Length];
uint sum = 0;
scpStream.Position = 0;
scpStream.Read(wholeFile, 0, wholeFile.Length);
_scpStream.Position = 0;
_scpStream.Read(wholeFile, 0, wholeFile.Length);
for(int i = 0x10; i < wholeFile.Length; i++)
sum += wholeFile[i];