mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2025-06-28 15:10:47 -07:00
Remove unneeded ".this"
This commit is contained in:
@ -24,8 +24,8 @@ namespace Ryujinx.HLE.HOS.Kernel
|
||||
|
||||
public Image(long baseAddress, ElfSymbol[] symbols)
|
||||
{
|
||||
this.BaseAddress = baseAddress;
|
||||
this.Symbols = symbols;
|
||||
BaseAddress = baseAddress;
|
||||
Symbols = symbols;
|
||||
}
|
||||
}
|
||||
|
||||
@ -35,7 +35,7 @@ namespace Ryujinx.HLE.HOS.Kernel
|
||||
|
||||
public HleProcessDebugger(KProcess owner)
|
||||
{
|
||||
this._owner = owner;
|
||||
_owner = owner;
|
||||
|
||||
_images = new List<Image>();
|
||||
}
|
||||
|
Reference in New Issue
Block a user