Remove unneeded ".this"
This commit is contained in:
parent
77972140a6
commit
267f82bd82
125 changed files with 303 additions and 303 deletions
|
@ -246,7 +246,7 @@ namespace Ryujinx.HLE.HOS.Kernel
|
|||
return KernelResult.ReservedValue;
|
||||
}
|
||||
|
||||
this.ApplicationType = applicationType;
|
||||
ApplicationType = applicationType;
|
||||
|
||||
break;
|
||||
}
|
||||
|
@ -273,7 +273,7 @@ namespace Ryujinx.HLE.HOS.Kernel
|
|||
return KernelResult.ReservedValue;
|
||||
}
|
||||
|
||||
this.HandleTableSize = handleTableSize;
|
||||
HandleTableSize = handleTableSize;
|
||||
|
||||
break;
|
||||
}
|
||||
|
@ -287,8 +287,8 @@ namespace Ryujinx.HLE.HOS.Kernel
|
|||
return KernelResult.ReservedValue;
|
||||
}
|
||||
|
||||
this.DebuggingFlags &= ~3;
|
||||
this.DebuggingFlags |= debuggingFlags;
|
||||
DebuggingFlags &= ~3;
|
||||
DebuggingFlags |= debuggingFlags;
|
||||
|
||||
break;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue