mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2025-08-02 03:12:25 -07:00
Remove unneeded ".this"
This commit is contained in:
@@ -28,13 +28,13 @@ namespace Ryujinx.HLE.Loaders.Elf
|
||||
long value,
|
||||
long size)
|
||||
{
|
||||
this.Name = name;
|
||||
this.Type = (ElfSymbolType)(info & 0xf);
|
||||
this.Binding = (ElfSymbolBinding)(info >> 4);
|
||||
this.Visibility = (ElfSymbolVisibility)other;
|
||||
this.ShIdx = shIdx;
|
||||
this.Value = value;
|
||||
this.Size = size;
|
||||
Name = name;
|
||||
Type = (ElfSymbolType)(info & 0xf);
|
||||
Binding = (ElfSymbolBinding)(info >> 4);
|
||||
Visibility = (ElfSymbolVisibility)other;
|
||||
ShIdx = shIdx;
|
||||
Value = value;
|
||||
Size = size;
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user