Remove unneeded ".this"

This commit is contained in:
Alex Barney 2018-12-01 14:24:37 -06:00
parent 77972140a6
commit 267f82bd82
125 changed files with 303 additions and 303 deletions

View file

@ -21,8 +21,8 @@ namespace Ryujinx.HLE.Loaders.Executables
public NxRelocatableObject(Stream input, ulong sourceAddress = 0, ulong bssAddress = 0)
{
this.SourceAddress = sourceAddress;
this.BssAddress = bssAddress;
SourceAddress = sourceAddress;
BssAddress = bssAddress;
BinaryReader reader = new BinaryReader(input);
@ -43,11 +43,11 @@ namespace Ryujinx.HLE.Loaders.Executables
int dataSize = reader.ReadInt32();
int bssSize = reader.ReadInt32();
this.Mod0Offset = mod0Offset;
this.TextOffset = textOffset;
this.RoOffset = roOffset;
this.DataOffset = dataOffset;
this.BssSize = bssSize;
Mod0Offset = mod0Offset;
TextOffset = textOffset;
RoOffset = roOffset;
DataOffset = dataOffset;
BssSize = bssSize;
byte[] Read(long position, int size)
{