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

@ -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;
}