aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTSR Berry <20988865+TSRBerry@users.noreply.github.com>2023-04-08 01:22:00 +0200
committerMary <thog@protonmail.com>2023-04-27 23:51:14 +0200
commitcee712105850ac3385cd0091a923438167433f9f (patch)
tree4a5274b21d8b7f938c0d0ce18736d3f2993b11b1
parentcd124bda587ef09668a971fa1cac1c3f0cfc9f21 (diff)
Move solution and projects to src
-rw-r--r--Ryujinx.sln80
-rw-r--r--src/ARMeilleure/ARMeilleure.csproj (renamed from ARMeilleure/ARMeilleure.csproj)0
-rw-r--r--src/ARMeilleure/Allocators.cs (renamed from ARMeilleure/Allocators.cs)0
-rw-r--r--src/ARMeilleure/CodeGen/Arm64/Arm64Optimizer.cs (renamed from ARMeilleure/CodeGen/Arm64/Arm64Optimizer.cs)0
-rw-r--r--src/ARMeilleure/CodeGen/Arm64/ArmCondition.cs (renamed from ARMeilleure/CodeGen/Arm64/ArmCondition.cs)0
-rw-r--r--src/ARMeilleure/CodeGen/Arm64/ArmExtensionType.cs (renamed from ARMeilleure/CodeGen/Arm64/ArmExtensionType.cs)0
-rw-r--r--src/ARMeilleure/CodeGen/Arm64/ArmShiftType.cs (renamed from ARMeilleure/CodeGen/Arm64/ArmShiftType.cs)0
-rw-r--r--src/ARMeilleure/CodeGen/Arm64/Assembler.cs (renamed from ARMeilleure/CodeGen/Arm64/Assembler.cs)0
-rw-r--r--src/ARMeilleure/CodeGen/Arm64/CallingConvention.cs (renamed from ARMeilleure/CodeGen/Arm64/CallingConvention.cs)0
-rw-r--r--src/ARMeilleure/CodeGen/Arm64/CodeGenCommon.cs (renamed from ARMeilleure/CodeGen/Arm64/CodeGenCommon.cs)0
-rw-r--r--src/ARMeilleure/CodeGen/Arm64/CodeGenContext.cs (renamed from ARMeilleure/CodeGen/Arm64/CodeGenContext.cs)0
-rw-r--r--src/ARMeilleure/CodeGen/Arm64/CodeGenerator.cs (renamed from ARMeilleure/CodeGen/Arm64/CodeGenerator.cs)0
-rw-r--r--src/ARMeilleure/CodeGen/Arm64/CodeGeneratorIntrinsic.cs (renamed from ARMeilleure/CodeGen/Arm64/CodeGeneratorIntrinsic.cs)0
-rw-r--r--src/ARMeilleure/CodeGen/Arm64/HardwareCapabilities.cs (renamed from ARMeilleure/CodeGen/Arm64/HardwareCapabilities.cs)0
-rw-r--r--src/ARMeilleure/CodeGen/Arm64/IntrinsicInfo.cs (renamed from ARMeilleure/CodeGen/Arm64/IntrinsicInfo.cs)0
-rw-r--r--src/ARMeilleure/CodeGen/Arm64/IntrinsicTable.cs (renamed from ARMeilleure/CodeGen/Arm64/IntrinsicTable.cs)0
-rw-r--r--src/ARMeilleure/CodeGen/Arm64/IntrinsicType.cs (renamed from ARMeilleure/CodeGen/Arm64/IntrinsicType.cs)0
-rw-r--r--src/ARMeilleure/CodeGen/Arm64/PreAllocator.cs (renamed from ARMeilleure/CodeGen/Arm64/PreAllocator.cs)0
-rw-r--r--src/ARMeilleure/CodeGen/CompiledFunction.cs (renamed from ARMeilleure/CodeGen/CompiledFunction.cs)0
-rw-r--r--src/ARMeilleure/CodeGen/Linking/RelocEntry.cs (renamed from ARMeilleure/CodeGen/Linking/RelocEntry.cs)0
-rw-r--r--src/ARMeilleure/CodeGen/Linking/RelocInfo.cs (renamed from ARMeilleure/CodeGen/Linking/RelocInfo.cs)0
-rw-r--r--src/ARMeilleure/CodeGen/Linking/Symbol.cs (renamed from ARMeilleure/CodeGen/Linking/Symbol.cs)0
-rw-r--r--src/ARMeilleure/CodeGen/Linking/SymbolType.cs (renamed from ARMeilleure/CodeGen/Linking/SymbolType.cs)0
-rw-r--r--src/ARMeilleure/CodeGen/Optimizations/BlockPlacement.cs (renamed from ARMeilleure/CodeGen/Optimizations/BlockPlacement.cs)0
-rw-r--r--src/ARMeilleure/CodeGen/Optimizations/ConstantFolding.cs (renamed from ARMeilleure/CodeGen/Optimizations/ConstantFolding.cs)0
-rw-r--r--src/ARMeilleure/CodeGen/Optimizations/Optimizer.cs (renamed from ARMeilleure/CodeGen/Optimizations/Optimizer.cs)0
-rw-r--r--src/ARMeilleure/CodeGen/Optimizations/Simplification.cs (renamed from ARMeilleure/CodeGen/Optimizations/Simplification.cs)0
-rw-r--r--src/ARMeilleure/CodeGen/Optimizations/TailMerge.cs (renamed from ARMeilleure/CodeGen/Optimizations/TailMerge.cs)0
-rw-r--r--src/ARMeilleure/CodeGen/PreAllocatorCommon.cs (renamed from ARMeilleure/CodeGen/PreAllocatorCommon.cs)0
-rw-r--r--src/ARMeilleure/CodeGen/RegisterAllocators/AllocationResult.cs (renamed from ARMeilleure/CodeGen/RegisterAllocators/AllocationResult.cs)0
-rw-r--r--src/ARMeilleure/CodeGen/RegisterAllocators/CopyResolver.cs (renamed from ARMeilleure/CodeGen/RegisterAllocators/CopyResolver.cs)0
-rw-r--r--src/ARMeilleure/CodeGen/RegisterAllocators/HybridAllocator.cs (renamed from ARMeilleure/CodeGen/RegisterAllocators/HybridAllocator.cs)0
-rw-r--r--src/ARMeilleure/CodeGen/RegisterAllocators/IRegisterAllocator.cs (renamed from ARMeilleure/CodeGen/RegisterAllocators/IRegisterAllocator.cs)0
-rw-r--r--src/ARMeilleure/CodeGen/RegisterAllocators/LinearScanAllocator.cs (renamed from ARMeilleure/CodeGen/RegisterAllocators/LinearScanAllocator.cs)0
-rw-r--r--src/ARMeilleure/CodeGen/RegisterAllocators/LiveInterval.cs (renamed from ARMeilleure/CodeGen/RegisterAllocators/LiveInterval.cs)0
-rw-r--r--src/ARMeilleure/CodeGen/RegisterAllocators/LiveIntervalList.cs (renamed from ARMeilleure/CodeGen/RegisterAllocators/LiveIntervalList.cs)0
-rw-r--r--src/ARMeilleure/CodeGen/RegisterAllocators/LiveRange.cs (renamed from ARMeilleure/CodeGen/RegisterAllocators/LiveRange.cs)0
-rw-r--r--src/ARMeilleure/CodeGen/RegisterAllocators/RegisterMasks.cs (renamed from ARMeilleure/CodeGen/RegisterAllocators/RegisterMasks.cs)0
-rw-r--r--src/ARMeilleure/CodeGen/RegisterAllocators/StackAllocator.cs (renamed from ARMeilleure/CodeGen/RegisterAllocators/StackAllocator.cs)0
-rw-r--r--src/ARMeilleure/CodeGen/RegisterAllocators/UseList.cs (renamed from ARMeilleure/CodeGen/RegisterAllocators/UseList.cs)0
-rw-r--r--src/ARMeilleure/CodeGen/Unwinding/UnwindInfo.cs (renamed from ARMeilleure/CodeGen/Unwinding/UnwindInfo.cs)0
-rw-r--r--src/ARMeilleure/CodeGen/Unwinding/UnwindPseudoOp.cs (renamed from ARMeilleure/CodeGen/Unwinding/UnwindPseudoOp.cs)0
-rw-r--r--src/ARMeilleure/CodeGen/Unwinding/UnwindPushEntry.cs (renamed from ARMeilleure/CodeGen/Unwinding/UnwindPushEntry.cs)0
-rw-r--r--src/ARMeilleure/CodeGen/X86/Assembler.cs (renamed from ARMeilleure/CodeGen/X86/Assembler.cs)0
-rw-r--r--src/ARMeilleure/CodeGen/X86/AssemblerTable.cs (renamed from ARMeilleure/CodeGen/X86/AssemblerTable.cs)0
-rw-r--r--src/ARMeilleure/CodeGen/X86/CallConvName.cs (renamed from ARMeilleure/CodeGen/X86/CallConvName.cs)0
-rw-r--r--src/ARMeilleure/CodeGen/X86/CallingConvention.cs (renamed from ARMeilleure/CodeGen/X86/CallingConvention.cs)0
-rw-r--r--src/ARMeilleure/CodeGen/X86/CodeGenCommon.cs (renamed from ARMeilleure/CodeGen/X86/CodeGenCommon.cs)0
-rw-r--r--src/ARMeilleure/CodeGen/X86/CodeGenContext.cs (renamed from ARMeilleure/CodeGen/X86/CodeGenContext.cs)0
-rw-r--r--src/ARMeilleure/CodeGen/X86/CodeGenerator.cs (renamed from ARMeilleure/CodeGen/X86/CodeGenerator.cs)0
-rw-r--r--src/ARMeilleure/CodeGen/X86/HardwareCapabilities.cs (renamed from ARMeilleure/CodeGen/X86/HardwareCapabilities.cs)0
-rw-r--r--src/ARMeilleure/CodeGen/X86/IntrinsicInfo.cs (renamed from ARMeilleure/CodeGen/X86/IntrinsicInfo.cs)0
-rw-r--r--src/ARMeilleure/CodeGen/X86/IntrinsicTable.cs (renamed from ARMeilleure/CodeGen/X86/IntrinsicTable.cs)0
-rw-r--r--src/ARMeilleure/CodeGen/X86/IntrinsicType.cs (renamed from ARMeilleure/CodeGen/X86/IntrinsicType.cs)0
-rw-r--r--src/ARMeilleure/CodeGen/X86/Mxcsr.cs (renamed from ARMeilleure/CodeGen/X86/Mxcsr.cs)0
-rw-r--r--src/ARMeilleure/CodeGen/X86/PreAllocator.cs (renamed from ARMeilleure/CodeGen/X86/PreAllocator.cs)0
-rw-r--r--src/ARMeilleure/CodeGen/X86/PreAllocatorSystemV.cs (renamed from ARMeilleure/CodeGen/X86/PreAllocatorSystemV.cs)0
-rw-r--r--src/ARMeilleure/CodeGen/X86/PreAllocatorWindows.cs (renamed from ARMeilleure/CodeGen/X86/PreAllocatorWindows.cs)0
-rw-r--r--src/ARMeilleure/CodeGen/X86/X86Condition.cs (renamed from ARMeilleure/CodeGen/X86/X86Condition.cs)0
-rw-r--r--src/ARMeilleure/CodeGen/X86/X86Instruction.cs (renamed from ARMeilleure/CodeGen/X86/X86Instruction.cs)0
-rw-r--r--src/ARMeilleure/CodeGen/X86/X86Optimizer.cs (renamed from ARMeilleure/CodeGen/X86/X86Optimizer.cs)0
-rw-r--r--src/ARMeilleure/CodeGen/X86/X86Register.cs (renamed from ARMeilleure/CodeGen/X86/X86Register.cs)0
-rw-r--r--src/ARMeilleure/Common/AddressTable.cs (renamed from ARMeilleure/Common/AddressTable.cs)0
-rw-r--r--src/ARMeilleure/Common/Allocator.cs (renamed from ARMeilleure/Common/Allocator.cs)0
-rw-r--r--src/ARMeilleure/Common/ArenaAllocator.cs (renamed from ARMeilleure/Common/ArenaAllocator.cs)0
-rw-r--r--src/ARMeilleure/Common/BitMap.cs (renamed from ARMeilleure/Common/BitMap.cs)0
-rw-r--r--src/ARMeilleure/Common/BitUtils.cs (renamed from ARMeilleure/Common/BitUtils.cs)0
-rw-r--r--src/ARMeilleure/Common/Counter.cs (renamed from ARMeilleure/Common/Counter.cs)0
-rw-r--r--src/ARMeilleure/Common/EntryTable.cs (renamed from ARMeilleure/Common/EntryTable.cs)0
-rw-r--r--src/ARMeilleure/Common/EnumUtils.cs (renamed from ARMeilleure/Common/EnumUtils.cs)0
-rw-r--r--src/ARMeilleure/Common/NativeAllocator.cs (renamed from ARMeilleure/Common/NativeAllocator.cs)0
-rw-r--r--src/ARMeilleure/Decoders/Block.cs (renamed from ARMeilleure/Decoders/Block.cs)0
-rw-r--r--src/ARMeilleure/Decoders/Condition.cs (renamed from ARMeilleure/Decoders/Condition.cs)0
-rw-r--r--src/ARMeilleure/Decoders/DataOp.cs (renamed from ARMeilleure/Decoders/DataOp.cs)0
-rw-r--r--src/ARMeilleure/Decoders/Decoder.cs (renamed from ARMeilleure/Decoders/Decoder.cs)0
-rw-r--r--src/ARMeilleure/Decoders/DecoderHelper.cs (renamed from ARMeilleure/Decoders/DecoderHelper.cs)0
-rw-r--r--src/ARMeilleure/Decoders/DecoderMode.cs (renamed from ARMeilleure/Decoders/DecoderMode.cs)0
-rw-r--r--src/ARMeilleure/Decoders/IOpCode.cs (renamed from ARMeilleure/Decoders/IOpCode.cs)0
-rw-r--r--src/ARMeilleure/Decoders/IOpCode32.cs (renamed from ARMeilleure/Decoders/IOpCode32.cs)0
-rw-r--r--src/ARMeilleure/Decoders/IOpCode32Adr.cs (renamed from ARMeilleure/Decoders/IOpCode32Adr.cs)0
-rw-r--r--src/ARMeilleure/Decoders/IOpCode32Alu.cs (renamed from ARMeilleure/Decoders/IOpCode32Alu.cs)0
-rw-r--r--src/ARMeilleure/Decoders/IOpCode32AluBf.cs (renamed from ARMeilleure/Decoders/IOpCode32AluBf.cs)0
-rw-r--r--src/ARMeilleure/Decoders/IOpCode32AluImm.cs (renamed from ARMeilleure/Decoders/IOpCode32AluImm.cs)0
-rw-r--r--src/ARMeilleure/Decoders/IOpCode32AluImm16.cs (renamed from ARMeilleure/Decoders/IOpCode32AluImm16.cs)0
-rw-r--r--src/ARMeilleure/Decoders/IOpCode32AluMla.cs (renamed from ARMeilleure/Decoders/IOpCode32AluMla.cs)0
-rw-r--r--src/ARMeilleure/Decoders/IOpCode32AluReg.cs (renamed from ARMeilleure/Decoders/IOpCode32AluReg.cs)0
-rw-r--r--src/ARMeilleure/Decoders/IOpCode32AluRsImm.cs (renamed from ARMeilleure/Decoders/IOpCode32AluRsImm.cs)0
-rw-r--r--src/ARMeilleure/Decoders/IOpCode32AluRsReg.cs (renamed from ARMeilleure/Decoders/IOpCode32AluRsReg.cs)0
-rw-r--r--src/ARMeilleure/Decoders/IOpCode32AluUmull.cs (renamed from ARMeilleure/Decoders/IOpCode32AluUmull.cs)0
-rw-r--r--src/ARMeilleure/Decoders/IOpCode32AluUx.cs (renamed from ARMeilleure/Decoders/IOpCode32AluUx.cs)0
-rw-r--r--src/ARMeilleure/Decoders/IOpCode32BImm.cs (renamed from ARMeilleure/Decoders/IOpCode32BImm.cs)0
-rw-r--r--src/ARMeilleure/Decoders/IOpCode32BReg.cs (renamed from ARMeilleure/Decoders/IOpCode32BReg.cs)0
-rw-r--r--src/ARMeilleure/Decoders/IOpCode32Exception.cs (renamed from ARMeilleure/Decoders/IOpCode32Exception.cs)0
-rw-r--r--src/ARMeilleure/Decoders/IOpCode32HasSetFlags.cs (renamed from ARMeilleure/Decoders/IOpCode32HasSetFlags.cs)0
-rw-r--r--src/ARMeilleure/Decoders/IOpCode32Mem.cs (renamed from ARMeilleure/Decoders/IOpCode32Mem.cs)0
-rw-r--r--src/ARMeilleure/Decoders/IOpCode32MemEx.cs (renamed from ARMeilleure/Decoders/IOpCode32MemEx.cs)0
-rw-r--r--src/ARMeilleure/Decoders/IOpCode32MemMult.cs (renamed from ARMeilleure/Decoders/IOpCode32MemMult.cs)0
-rw-r--r--src/ARMeilleure/Decoders/IOpCode32MemReg.cs (renamed from ARMeilleure/Decoders/IOpCode32MemReg.cs)0
-rw-r--r--src/ARMeilleure/Decoders/IOpCode32MemRsImm.cs (renamed from ARMeilleure/Decoders/IOpCode32MemRsImm.cs)0
-rw-r--r--src/ARMeilleure/Decoders/IOpCode32Simd.cs (renamed from ARMeilleure/Decoders/IOpCode32Simd.cs)0
-rw-r--r--src/ARMeilleure/Decoders/IOpCode32SimdImm.cs (renamed from ARMeilleure/Decoders/IOpCode32SimdImm.cs)0
-rw-r--r--src/ARMeilleure/Decoders/IOpCodeAlu.cs (renamed from ARMeilleure/Decoders/IOpCodeAlu.cs)0
-rw-r--r--src/ARMeilleure/Decoders/IOpCodeAluImm.cs (renamed from ARMeilleure/Decoders/IOpCodeAluImm.cs)0
-rw-r--r--src/ARMeilleure/Decoders/IOpCodeAluRs.cs (renamed from ARMeilleure/Decoders/IOpCodeAluRs.cs)0
-rw-r--r--src/ARMeilleure/Decoders/IOpCodeAluRx.cs (renamed from ARMeilleure/Decoders/IOpCodeAluRx.cs)0
-rw-r--r--src/ARMeilleure/Decoders/IOpCodeBImm.cs (renamed from ARMeilleure/Decoders/IOpCodeBImm.cs)0
-rw-r--r--src/ARMeilleure/Decoders/IOpCodeCond.cs (renamed from ARMeilleure/Decoders/IOpCodeCond.cs)0
-rw-r--r--src/ARMeilleure/Decoders/IOpCodeLit.cs (renamed from ARMeilleure/Decoders/IOpCodeLit.cs)0
-rw-r--r--src/ARMeilleure/Decoders/IOpCodeSimd.cs (renamed from ARMeilleure/Decoders/IOpCodeSimd.cs)0
-rw-r--r--src/ARMeilleure/Decoders/InstDescriptor.cs (renamed from ARMeilleure/Decoders/InstDescriptor.cs)0
-rw-r--r--src/ARMeilleure/Decoders/InstEmitter.cs (renamed from ARMeilleure/Decoders/InstEmitter.cs)0
-rw-r--r--src/ARMeilleure/Decoders/IntType.cs (renamed from ARMeilleure/Decoders/IntType.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCode.cs (renamed from ARMeilleure/Decoders/OpCode.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCode32.cs (renamed from ARMeilleure/Decoders/OpCode32.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCode32Alu.cs (renamed from ARMeilleure/Decoders/OpCode32Alu.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCode32AluBf.cs (renamed from ARMeilleure/Decoders/OpCode32AluBf.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCode32AluImm.cs (renamed from ARMeilleure/Decoders/OpCode32AluImm.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCode32AluImm16.cs (renamed from ARMeilleure/Decoders/OpCode32AluImm16.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCode32AluMla.cs (renamed from ARMeilleure/Decoders/OpCode32AluMla.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCode32AluReg.cs (renamed from ARMeilleure/Decoders/OpCode32AluReg.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCode32AluRsImm.cs (renamed from ARMeilleure/Decoders/OpCode32AluRsImm.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCode32AluRsReg.cs (renamed from ARMeilleure/Decoders/OpCode32AluRsReg.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCode32AluUmull.cs (renamed from ARMeilleure/Decoders/OpCode32AluUmull.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCode32AluUx.cs (renamed from ARMeilleure/Decoders/OpCode32AluUx.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCode32BImm.cs (renamed from ARMeilleure/Decoders/OpCode32BImm.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCode32BReg.cs (renamed from ARMeilleure/Decoders/OpCode32BReg.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCode32Exception.cs (renamed from ARMeilleure/Decoders/OpCode32Exception.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCode32Mem.cs (renamed from ARMeilleure/Decoders/OpCode32Mem.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCode32MemImm.cs (renamed from ARMeilleure/Decoders/OpCode32MemImm.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCode32MemImm8.cs (renamed from ARMeilleure/Decoders/OpCode32MemImm8.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCode32MemLdEx.cs (renamed from ARMeilleure/Decoders/OpCode32MemLdEx.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCode32MemMult.cs (renamed from ARMeilleure/Decoders/OpCode32MemMult.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCode32MemReg.cs (renamed from ARMeilleure/Decoders/OpCode32MemReg.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCode32MemRsImm.cs (renamed from ARMeilleure/Decoders/OpCode32MemRsImm.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCode32MemStEx.cs (renamed from ARMeilleure/Decoders/OpCode32MemStEx.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCode32Mrs.cs (renamed from ARMeilleure/Decoders/OpCode32Mrs.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCode32MsrReg.cs (renamed from ARMeilleure/Decoders/OpCode32MsrReg.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCode32Sat.cs (renamed from ARMeilleure/Decoders/OpCode32Sat.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCode32Sat16.cs (renamed from ARMeilleure/Decoders/OpCode32Sat16.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCode32Simd.cs (renamed from ARMeilleure/Decoders/OpCode32Simd.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCode32SimdBase.cs (renamed from ARMeilleure/Decoders/OpCode32SimdBase.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCode32SimdBinary.cs (renamed from ARMeilleure/Decoders/OpCode32SimdBinary.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCode32SimdCmpZ.cs (renamed from ARMeilleure/Decoders/OpCode32SimdCmpZ.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCode32SimdCvtFI.cs (renamed from ARMeilleure/Decoders/OpCode32SimdCvtFI.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCode32SimdCvtTB.cs (renamed from ARMeilleure/Decoders/OpCode32SimdCvtTB.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCode32SimdDupElem.cs (renamed from ARMeilleure/Decoders/OpCode32SimdDupElem.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCode32SimdDupGP.cs (renamed from ARMeilleure/Decoders/OpCode32SimdDupGP.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCode32SimdExt.cs (renamed from ARMeilleure/Decoders/OpCode32SimdExt.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCode32SimdImm.cs (renamed from ARMeilleure/Decoders/OpCode32SimdImm.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCode32SimdImm44.cs (renamed from ARMeilleure/Decoders/OpCode32SimdImm44.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCode32SimdLong.cs (renamed from ARMeilleure/Decoders/OpCode32SimdLong.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCode32SimdMemImm.cs (renamed from ARMeilleure/Decoders/OpCode32SimdMemImm.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCode32SimdMemMult.cs (renamed from ARMeilleure/Decoders/OpCode32SimdMemMult.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCode32SimdMemPair.cs (renamed from ARMeilleure/Decoders/OpCode32SimdMemPair.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCode32SimdMemSingle.cs (renamed from ARMeilleure/Decoders/OpCode32SimdMemSingle.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCode32SimdMovGp.cs (renamed from ARMeilleure/Decoders/OpCode32SimdMovGp.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCode32SimdMovGpDouble.cs (renamed from ARMeilleure/Decoders/OpCode32SimdMovGpDouble.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCode32SimdMovGpElem.cs (renamed from ARMeilleure/Decoders/OpCode32SimdMovGpElem.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCode32SimdMovn.cs (renamed from ARMeilleure/Decoders/OpCode32SimdMovn.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCode32SimdReg.cs (renamed from ARMeilleure/Decoders/OpCode32SimdReg.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCode32SimdRegElem.cs (renamed from ARMeilleure/Decoders/OpCode32SimdRegElem.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCode32SimdRegElemLong.cs (renamed from ARMeilleure/Decoders/OpCode32SimdRegElemLong.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCode32SimdRegLong.cs (renamed from ARMeilleure/Decoders/OpCode32SimdRegLong.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCode32SimdRegS.cs (renamed from ARMeilleure/Decoders/OpCode32SimdRegS.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCode32SimdRegWide.cs (renamed from ARMeilleure/Decoders/OpCode32SimdRegWide.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCode32SimdRev.cs (renamed from ARMeilleure/Decoders/OpCode32SimdRev.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCode32SimdS.cs (renamed from ARMeilleure/Decoders/OpCode32SimdS.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCode32SimdSel.cs (renamed from ARMeilleure/Decoders/OpCode32SimdSel.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCode32SimdShImm.cs (renamed from ARMeilleure/Decoders/OpCode32SimdShImm.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCode32SimdShImmLong.cs (renamed from ARMeilleure/Decoders/OpCode32SimdShImmLong.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCode32SimdShImmNarrow.cs (renamed from ARMeilleure/Decoders/OpCode32SimdShImmNarrow.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCode32SimdSpecial.cs (renamed from ARMeilleure/Decoders/OpCode32SimdSpecial.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCode32SimdSqrte.cs (renamed from ARMeilleure/Decoders/OpCode32SimdSqrte.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCode32SimdTbl.cs (renamed from ARMeilleure/Decoders/OpCode32SimdTbl.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCode32System.cs (renamed from ARMeilleure/Decoders/OpCode32System.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCodeAdr.cs (renamed from ARMeilleure/Decoders/OpCodeAdr.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCodeAlu.cs (renamed from ARMeilleure/Decoders/OpCodeAlu.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCodeAluBinary.cs (renamed from ARMeilleure/Decoders/OpCodeAluBinary.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCodeAluImm.cs (renamed from ARMeilleure/Decoders/OpCodeAluImm.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCodeAluRs.cs (renamed from ARMeilleure/Decoders/OpCodeAluRs.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCodeAluRx.cs (renamed from ARMeilleure/Decoders/OpCodeAluRx.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCodeBImm.cs (renamed from ARMeilleure/Decoders/OpCodeBImm.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCodeBImmAl.cs (renamed from ARMeilleure/Decoders/OpCodeBImmAl.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCodeBImmCmp.cs (renamed from ARMeilleure/Decoders/OpCodeBImmCmp.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCodeBImmCond.cs (renamed from ARMeilleure/Decoders/OpCodeBImmCond.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCodeBImmTest.cs (renamed from ARMeilleure/Decoders/OpCodeBImmTest.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCodeBReg.cs (renamed from ARMeilleure/Decoders/OpCodeBReg.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCodeBfm.cs (renamed from ARMeilleure/Decoders/OpCodeBfm.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCodeCcmp.cs (renamed from ARMeilleure/Decoders/OpCodeCcmp.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCodeCcmpImm.cs (renamed from ARMeilleure/Decoders/OpCodeCcmpImm.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCodeCcmpReg.cs (renamed from ARMeilleure/Decoders/OpCodeCcmpReg.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCodeCsel.cs (renamed from ARMeilleure/Decoders/OpCodeCsel.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCodeException.cs (renamed from ARMeilleure/Decoders/OpCodeException.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCodeMem.cs (renamed from ARMeilleure/Decoders/OpCodeMem.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCodeMemEx.cs (renamed from ARMeilleure/Decoders/OpCodeMemEx.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCodeMemImm.cs (renamed from ARMeilleure/Decoders/OpCodeMemImm.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCodeMemLit.cs (renamed from ARMeilleure/Decoders/OpCodeMemLit.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCodeMemPair.cs (renamed from ARMeilleure/Decoders/OpCodeMemPair.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCodeMemReg.cs (renamed from ARMeilleure/Decoders/OpCodeMemReg.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCodeMov.cs (renamed from ARMeilleure/Decoders/OpCodeMov.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCodeMul.cs (renamed from ARMeilleure/Decoders/OpCodeMul.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCodeSimd.cs (renamed from ARMeilleure/Decoders/OpCodeSimd.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCodeSimdCvt.cs (renamed from ARMeilleure/Decoders/OpCodeSimdCvt.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCodeSimdExt.cs (renamed from ARMeilleure/Decoders/OpCodeSimdExt.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCodeSimdFcond.cs (renamed from ARMeilleure/Decoders/OpCodeSimdFcond.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCodeSimdFmov.cs (renamed from ARMeilleure/Decoders/OpCodeSimdFmov.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCodeSimdHelper.cs (renamed from ARMeilleure/Decoders/OpCodeSimdHelper.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCodeSimdImm.cs (renamed from ARMeilleure/Decoders/OpCodeSimdImm.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCodeSimdIns.cs (renamed from ARMeilleure/Decoders/OpCodeSimdIns.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCodeSimdMemImm.cs (renamed from ARMeilleure/Decoders/OpCodeSimdMemImm.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCodeSimdMemLit.cs (renamed from ARMeilleure/Decoders/OpCodeSimdMemLit.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCodeSimdMemMs.cs (renamed from ARMeilleure/Decoders/OpCodeSimdMemMs.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCodeSimdMemPair.cs (renamed from ARMeilleure/Decoders/OpCodeSimdMemPair.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCodeSimdMemReg.cs (renamed from ARMeilleure/Decoders/OpCodeSimdMemReg.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCodeSimdMemSs.cs (renamed from ARMeilleure/Decoders/OpCodeSimdMemSs.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCodeSimdReg.cs (renamed from ARMeilleure/Decoders/OpCodeSimdReg.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCodeSimdRegElem.cs (renamed from ARMeilleure/Decoders/OpCodeSimdRegElem.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCodeSimdRegElemF.cs (renamed from ARMeilleure/Decoders/OpCodeSimdRegElemF.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCodeSimdShImm.cs (renamed from ARMeilleure/Decoders/OpCodeSimdShImm.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCodeSimdTbl.cs (renamed from ARMeilleure/Decoders/OpCodeSimdTbl.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCodeSystem.cs (renamed from ARMeilleure/Decoders/OpCodeSystem.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCodeT16.cs (renamed from ARMeilleure/Decoders/OpCodeT16.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCodeT16AddSubImm3.cs (renamed from ARMeilleure/Decoders/OpCodeT16AddSubImm3.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCodeT16AddSubReg.cs (renamed from ARMeilleure/Decoders/OpCodeT16AddSubReg.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCodeT16AddSubSp.cs (renamed from ARMeilleure/Decoders/OpCodeT16AddSubSp.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCodeT16Adr.cs (renamed from ARMeilleure/Decoders/OpCodeT16Adr.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCodeT16AluImm8.cs (renamed from ARMeilleure/Decoders/OpCodeT16AluImm8.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCodeT16AluImmZero.cs (renamed from ARMeilleure/Decoders/OpCodeT16AluImmZero.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCodeT16AluRegHigh.cs (renamed from ARMeilleure/Decoders/OpCodeT16AluRegHigh.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCodeT16AluRegLow.cs (renamed from ARMeilleure/Decoders/OpCodeT16AluRegLow.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCodeT16AluUx.cs (renamed from ARMeilleure/Decoders/OpCodeT16AluUx.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCodeT16BImm11.cs (renamed from ARMeilleure/Decoders/OpCodeT16BImm11.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCodeT16BImm8.cs (renamed from ARMeilleure/Decoders/OpCodeT16BImm8.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCodeT16BImmCmp.cs (renamed from ARMeilleure/Decoders/OpCodeT16BImmCmp.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCodeT16BReg.cs (renamed from ARMeilleure/Decoders/OpCodeT16BReg.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCodeT16Exception.cs (renamed from ARMeilleure/Decoders/OpCodeT16Exception.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCodeT16IfThen.cs (renamed from ARMeilleure/Decoders/OpCodeT16IfThen.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCodeT16MemImm5.cs (renamed from ARMeilleure/Decoders/OpCodeT16MemImm5.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCodeT16MemLit.cs (renamed from ARMeilleure/Decoders/OpCodeT16MemLit.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCodeT16MemMult.cs (renamed from ARMeilleure/Decoders/OpCodeT16MemMult.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCodeT16MemReg.cs (renamed from ARMeilleure/Decoders/OpCodeT16MemReg.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCodeT16MemSp.cs (renamed from ARMeilleure/Decoders/OpCodeT16MemSp.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCodeT16MemStack.cs (renamed from ARMeilleure/Decoders/OpCodeT16MemStack.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCodeT16ShiftImm.cs (renamed from ARMeilleure/Decoders/OpCodeT16ShiftImm.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCodeT16ShiftReg.cs (renamed from ARMeilleure/Decoders/OpCodeT16ShiftReg.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCodeT16SpRel.cs (renamed from ARMeilleure/Decoders/OpCodeT16SpRel.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCodeT32.cs (renamed from ARMeilleure/Decoders/OpCodeT32.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCodeT32Alu.cs (renamed from ARMeilleure/Decoders/OpCodeT32Alu.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCodeT32AluBf.cs (renamed from ARMeilleure/Decoders/OpCodeT32AluBf.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCodeT32AluImm.cs (renamed from ARMeilleure/Decoders/OpCodeT32AluImm.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCodeT32AluImm12.cs (renamed from ARMeilleure/Decoders/OpCodeT32AluImm12.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCodeT32AluMla.cs (renamed from ARMeilleure/Decoders/OpCodeT32AluMla.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCodeT32AluReg.cs (renamed from ARMeilleure/Decoders/OpCodeT32AluReg.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCodeT32AluRsImm.cs (renamed from ARMeilleure/Decoders/OpCodeT32AluRsImm.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCodeT32AluUmull.cs (renamed from ARMeilleure/Decoders/OpCodeT32AluUmull.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCodeT32AluUx.cs (renamed from ARMeilleure/Decoders/OpCodeT32AluUx.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCodeT32BImm20.cs (renamed from ARMeilleure/Decoders/OpCodeT32BImm20.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCodeT32BImm24.cs (renamed from ARMeilleure/Decoders/OpCodeT32BImm24.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCodeT32MemImm12.cs (renamed from ARMeilleure/Decoders/OpCodeT32MemImm12.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCodeT32MemImm8.cs (renamed from ARMeilleure/Decoders/OpCodeT32MemImm8.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCodeT32MemImm8D.cs (renamed from ARMeilleure/Decoders/OpCodeT32MemImm8D.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCodeT32MemLdEx.cs (renamed from ARMeilleure/Decoders/OpCodeT32MemLdEx.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCodeT32MemMult.cs (renamed from ARMeilleure/Decoders/OpCodeT32MemMult.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCodeT32MemRsImm.cs (renamed from ARMeilleure/Decoders/OpCodeT32MemRsImm.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCodeT32MemStEx.cs (renamed from ARMeilleure/Decoders/OpCodeT32MemStEx.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCodeT32MovImm16.cs (renamed from ARMeilleure/Decoders/OpCodeT32MovImm16.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCodeT32ShiftReg.cs (renamed from ARMeilleure/Decoders/OpCodeT32ShiftReg.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCodeT32Tb.cs (renamed from ARMeilleure/Decoders/OpCodeT32Tb.cs)0
-rw-r--r--src/ARMeilleure/Decoders/OpCodeTable.cs (renamed from ARMeilleure/Decoders/OpCodeTable.cs)0
-rw-r--r--src/ARMeilleure/Decoders/Optimizations/TailCallRemover.cs (renamed from ARMeilleure/Decoders/Optimizations/TailCallRemover.cs)0
-rw-r--r--src/ARMeilleure/Decoders/RegisterSize.cs (renamed from ARMeilleure/Decoders/RegisterSize.cs)0
-rw-r--r--src/ARMeilleure/Decoders/ShiftType.cs (renamed from ARMeilleure/Decoders/ShiftType.cs)0
-rw-r--r--src/ARMeilleure/Diagnostics/IRDumper.cs (renamed from ARMeilleure/Diagnostics/IRDumper.cs)0
-rw-r--r--src/ARMeilleure/Diagnostics/Logger.cs (renamed from ARMeilleure/Diagnostics/Logger.cs)0
-rw-r--r--src/ARMeilleure/Diagnostics/PassName.cs (renamed from ARMeilleure/Diagnostics/PassName.cs)0
-rw-r--r--src/ARMeilleure/Diagnostics/Symbols.cs (renamed from ARMeilleure/Diagnostics/Symbols.cs)0
-rw-r--r--src/ARMeilleure/Diagnostics/TranslatorEventSource.cs (renamed from ARMeilleure/Diagnostics/TranslatorEventSource.cs)0
-rw-r--r--src/ARMeilleure/Instructions/CryptoHelper.cs (renamed from ARMeilleure/Instructions/CryptoHelper.cs)0
-rw-r--r--src/ARMeilleure/Instructions/InstEmitAlu.cs (renamed from ARMeilleure/Instructions/InstEmitAlu.cs)0
-rw-r--r--src/ARMeilleure/Instructions/InstEmitAlu32.cs (renamed from ARMeilleure/Instructions/InstEmitAlu32.cs)0
-rw-r--r--src/ARMeilleure/Instructions/InstEmitAluHelper.cs (renamed from ARMeilleure/Instructions/InstEmitAluHelper.cs)0
-rw-r--r--src/ARMeilleure/Instructions/InstEmitBfm.cs (renamed from ARMeilleure/Instructions/InstEmitBfm.cs)0
-rw-r--r--src/ARMeilleure/Instructions/InstEmitCcmp.cs (renamed from ARMeilleure/Instructions/InstEmitCcmp.cs)0
-rw-r--r--src/ARMeilleure/Instructions/InstEmitCsel.cs (renamed from ARMeilleure/Instructions/InstEmitCsel.cs)0
-rw-r--r--src/ARMeilleure/Instructions/InstEmitDiv.cs (renamed from ARMeilleure/Instructions/InstEmitDiv.cs)0
-rw-r--r--src/ARMeilleure/Instructions/InstEmitException.cs (renamed from ARMeilleure/Instructions/InstEmitException.cs)0
-rw-r--r--src/ARMeilleure/Instructions/InstEmitException32.cs (renamed from ARMeilleure/Instructions/InstEmitException32.cs)0
-rw-r--r--src/ARMeilleure/Instructions/InstEmitFlow.cs (renamed from ARMeilleure/Instructions/InstEmitFlow.cs)0
-rw-r--r--src/ARMeilleure/Instructions/InstEmitFlow32.cs (renamed from ARMeilleure/Instructions/InstEmitFlow32.cs)0
-rw-r--r--src/ARMeilleure/Instructions/InstEmitFlowHelper.cs (renamed from ARMeilleure/Instructions/InstEmitFlowHelper.cs)0
-rw-r--r--src/ARMeilleure/Instructions/InstEmitHash.cs (renamed from ARMeilleure/Instructions/InstEmitHash.cs)0
-rw-r--r--src/ARMeilleure/Instructions/InstEmitHash32.cs (renamed from ARMeilleure/Instructions/InstEmitHash32.cs)0
-rw-r--r--src/ARMeilleure/Instructions/InstEmitHashHelper.cs (renamed from ARMeilleure/Instructions/InstEmitHashHelper.cs)0
-rw-r--r--src/ARMeilleure/Instructions/InstEmitHelper.cs (renamed from ARMeilleure/Instructions/InstEmitHelper.cs)0
-rw-r--r--src/ARMeilleure/Instructions/InstEmitMemory.cs (renamed from ARMeilleure/Instructions/InstEmitMemory.cs)0
-rw-r--r--src/ARMeilleure/Instructions/InstEmitMemory32.cs (renamed from ARMeilleure/Instructions/InstEmitMemory32.cs)0
-rw-r--r--src/ARMeilleure/Instructions/InstEmitMemoryEx.cs (renamed from ARMeilleure/Instructions/InstEmitMemoryEx.cs)0
-rw-r--r--src/ARMeilleure/Instructions/InstEmitMemoryEx32.cs (renamed from ARMeilleure/Instructions/InstEmitMemoryEx32.cs)0
-rw-r--r--src/ARMeilleure/Instructions/InstEmitMemoryExHelper.cs (renamed from ARMeilleure/Instructions/InstEmitMemoryExHelper.cs)0
-rw-r--r--src/ARMeilleure/Instructions/InstEmitMemoryHelper.cs (renamed from ARMeilleure/Instructions/InstEmitMemoryHelper.cs)0
-rw-r--r--src/ARMeilleure/Instructions/InstEmitMove.cs (renamed from ARMeilleure/Instructions/InstEmitMove.cs)0
-rw-r--r--src/ARMeilleure/Instructions/InstEmitMul.cs (renamed from ARMeilleure/Instructions/InstEmitMul.cs)0
-rw-r--r--src/ARMeilleure/Instructions/InstEmitMul32.cs (renamed from ARMeilleure/Instructions/InstEmitMul32.cs)0
-rw-r--r--src/ARMeilleure/Instructions/InstEmitSimdArithmetic.cs (renamed from ARMeilleure/Instructions/InstEmitSimdArithmetic.cs)0
-rw-r--r--src/ARMeilleure/Instructions/InstEmitSimdArithmetic32.cs (renamed from ARMeilleure/Instructions/InstEmitSimdArithmetic32.cs)0
-rw-r--r--src/ARMeilleure/Instructions/InstEmitSimdCmp.cs (renamed from ARMeilleure/Instructions/InstEmitSimdCmp.cs)0
-rw-r--r--src/ARMeilleure/Instructions/InstEmitSimdCmp32.cs (renamed from ARMeilleure/Instructions/InstEmitSimdCmp32.cs)0
-rw-r--r--src/ARMeilleure/Instructions/InstEmitSimdCrypto.cs (renamed from ARMeilleure/Instructions/InstEmitSimdCrypto.cs)0
-rw-r--r--src/ARMeilleure/Instructions/InstEmitSimdCrypto32.cs (renamed from ARMeilleure/Instructions/InstEmitSimdCrypto32.cs)0
-rw-r--r--src/ARMeilleure/Instructions/InstEmitSimdCvt.cs (renamed from ARMeilleure/Instructions/InstEmitSimdCvt.cs)0
-rw-r--r--src/ARMeilleure/Instructions/InstEmitSimdCvt32.cs (renamed from ARMeilleure/Instructions/InstEmitSimdCvt32.cs)0
-rw-r--r--src/ARMeilleure/Instructions/InstEmitSimdHash.cs (renamed from ARMeilleure/Instructions/InstEmitSimdHash.cs)0
-rw-r--r--src/ARMeilleure/Instructions/InstEmitSimdHash32.cs (renamed from ARMeilleure/Instructions/InstEmitSimdHash32.cs)0
-rw-r--r--src/ARMeilleure/Instructions/InstEmitSimdHashHelper.cs (renamed from ARMeilleure/Instructions/InstEmitSimdHashHelper.cs)0
-rw-r--r--src/ARMeilleure/Instructions/InstEmitSimdHelper.cs (renamed from ARMeilleure/Instructions/InstEmitSimdHelper.cs)0
-rw-r--r--src/ARMeilleure/Instructions/InstEmitSimdHelper32.cs (renamed from ARMeilleure/Instructions/InstEmitSimdHelper32.cs)0
-rw-r--r--src/ARMeilleure/Instructions/InstEmitSimdHelper32Arm64.cs (renamed from ARMeilleure/Instructions/InstEmitSimdHelper32Arm64.cs)0
-rw-r--r--src/ARMeilleure/Instructions/InstEmitSimdHelperArm64.cs (renamed from ARMeilleure/Instructions/InstEmitSimdHelperArm64.cs)0
-rw-r--r--src/ARMeilleure/Instructions/InstEmitSimdLogical.cs (renamed from ARMeilleure/Instructions/InstEmitSimdLogical.cs)0
-rw-r--r--src/ARMeilleure/Instructions/InstEmitSimdLogical32.cs (renamed from ARMeilleure/Instructions/InstEmitSimdLogical32.cs)0
-rw-r--r--src/ARMeilleure/Instructions/InstEmitSimdMemory.cs (renamed from ARMeilleure/Instructions/InstEmitSimdMemory.cs)0
-rw-r--r--src/ARMeilleure/Instructions/InstEmitSimdMemory32.cs (renamed from ARMeilleure/Instructions/InstEmitSimdMemory32.cs)0
-rw-r--r--src/ARMeilleure/Instructions/InstEmitSimdMove.cs (renamed from ARMeilleure/Instructions/InstEmitSimdMove.cs)0
-rw-r--r--src/ARMeilleure/Instructions/InstEmitSimdMove32.cs (renamed from ARMeilleure/Instructions/InstEmitSimdMove32.cs)0
-rw-r--r--src/ARMeilleure/Instructions/InstEmitSimdShift.cs (renamed from ARMeilleure/Instructions/InstEmitSimdShift.cs)0
-rw-r--r--src/ARMeilleure/Instructions/InstEmitSimdShift32.cs (renamed from ARMeilleure/Instructions/InstEmitSimdShift32.cs)0
-rw-r--r--src/ARMeilleure/Instructions/InstEmitSystem.cs (renamed from ARMeilleure/Instructions/InstEmitSystem.cs)0
-rw-r--r--src/ARMeilleure/Instructions/InstEmitSystem32.cs (renamed from ARMeilleure/Instructions/InstEmitSystem32.cs)0
-rw-r--r--src/ARMeilleure/Instructions/InstName.cs (renamed from ARMeilleure/Instructions/InstName.cs)0
-rw-r--r--src/ARMeilleure/Instructions/NativeInterface.cs (renamed from ARMeilleure/Instructions/NativeInterface.cs)0
-rw-r--r--src/ARMeilleure/Instructions/SoftFallback.cs (renamed from ARMeilleure/Instructions/SoftFallback.cs)0
-rw-r--r--src/ARMeilleure/Instructions/SoftFloat.cs (renamed from ARMeilleure/Instructions/SoftFloat.cs)0
-rw-r--r--src/ARMeilleure/IntermediateRepresentation/BasicBlock.cs (renamed from ARMeilleure/IntermediateRepresentation/BasicBlock.cs)0
-rw-r--r--src/ARMeilleure/IntermediateRepresentation/BasicBlockFrequency.cs (renamed from ARMeilleure/IntermediateRepresentation/BasicBlockFrequency.cs)0
-rw-r--r--src/ARMeilleure/IntermediateRepresentation/Comparison.cs (renamed from ARMeilleure/IntermediateRepresentation/Comparison.cs)0
-rw-r--r--src/ARMeilleure/IntermediateRepresentation/IIntrusiveListNode.cs (renamed from ARMeilleure/IntermediateRepresentation/IIntrusiveListNode.cs)0
-rw-r--r--src/ARMeilleure/IntermediateRepresentation/Instruction.cs (renamed from ARMeilleure/IntermediateRepresentation/Instruction.cs)0
-rw-r--r--src/ARMeilleure/IntermediateRepresentation/Intrinsic.cs (renamed from ARMeilleure/IntermediateRepresentation/Intrinsic.cs)0
-rw-r--r--src/ARMeilleure/IntermediateRepresentation/IntrusiveList.cs (renamed from ARMeilleure/IntermediateRepresentation/IntrusiveList.cs)0
-rw-r--r--src/ARMeilleure/IntermediateRepresentation/MemoryOperand.cs (renamed from ARMeilleure/IntermediateRepresentation/MemoryOperand.cs)0
-rw-r--r--src/ARMeilleure/IntermediateRepresentation/Multiplier.cs (renamed from ARMeilleure/IntermediateRepresentation/Multiplier.cs)0
-rw-r--r--src/ARMeilleure/IntermediateRepresentation/Operand.cs (renamed from ARMeilleure/IntermediateRepresentation/Operand.cs)0
-rw-r--r--src/ARMeilleure/IntermediateRepresentation/OperandKind.cs (renamed from ARMeilleure/IntermediateRepresentation/OperandKind.cs)0
-rw-r--r--src/ARMeilleure/IntermediateRepresentation/OperandType.cs (renamed from ARMeilleure/IntermediateRepresentation/OperandType.cs)0
-rw-r--r--src/ARMeilleure/IntermediateRepresentation/Operation.cs (renamed from ARMeilleure/IntermediateRepresentation/Operation.cs)0
-rw-r--r--src/ARMeilleure/IntermediateRepresentation/PhiOperation.cs (renamed from ARMeilleure/IntermediateRepresentation/PhiOperation.cs)0
-rw-r--r--src/ARMeilleure/IntermediateRepresentation/Register.cs (renamed from ARMeilleure/IntermediateRepresentation/Register.cs)0
-rw-r--r--src/ARMeilleure/IntermediateRepresentation/RegisterType.cs (renamed from ARMeilleure/IntermediateRepresentation/RegisterType.cs)0
-rw-r--r--src/ARMeilleure/Memory/IJitMemoryAllocator.cs (renamed from ARMeilleure/Memory/IJitMemoryAllocator.cs)0
-rw-r--r--src/ARMeilleure/Memory/IJitMemoryBlock.cs (renamed from ARMeilleure/Memory/IJitMemoryBlock.cs)0
-rw-r--r--src/ARMeilleure/Memory/IMemoryManager.cs (renamed from ARMeilleure/Memory/IMemoryManager.cs)0
-rw-r--r--src/ARMeilleure/Memory/InvalidAccessException.cs (renamed from ARMeilleure/Memory/InvalidAccessException.cs)0
-rw-r--r--src/ARMeilleure/Memory/MemoryManagerType.cs (renamed from ARMeilleure/Memory/MemoryManagerType.cs)0
-rw-r--r--src/ARMeilleure/Memory/ReservedRegion.cs (renamed from ARMeilleure/Memory/ReservedRegion.cs)0
-rw-r--r--src/ARMeilleure/Native/JitSupportDarwin.cs (renamed from ARMeilleure/Native/JitSupportDarwin.cs)0
-rw-r--r--src/ARMeilleure/Native/libs/libarmeilleure-jitsupport.dylib (renamed from ARMeilleure/Native/libs/libarmeilleure-jitsupport.dylib)bin33564 -> 33564 bytes
-rw-r--r--src/ARMeilleure/Native/macos_jit_support/Makefile (renamed from ARMeilleure/Native/macos_jit_support/Makefile)0
-rw-r--r--src/ARMeilleure/Native/macos_jit_support/support.c (renamed from ARMeilleure/Native/macos_jit_support/support.c)0
-rw-r--r--src/ARMeilleure/Optimizations.cs (renamed from ARMeilleure/Optimizations.cs)0
-rw-r--r--src/ARMeilleure/Signal/NativeSignalHandler.cs (renamed from ARMeilleure/Signal/NativeSignalHandler.cs)0
-rw-r--r--src/ARMeilleure/Signal/TestMethods.cs (renamed from ARMeilleure/Signal/TestMethods.cs)0
-rw-r--r--src/ARMeilleure/Signal/UnixSignalHandlerRegistration.cs (renamed from ARMeilleure/Signal/UnixSignalHandlerRegistration.cs)0
-rw-r--r--src/ARMeilleure/Signal/WindowsPartialUnmapHandler.cs (renamed from ARMeilleure/Signal/WindowsPartialUnmapHandler.cs)0
-rw-r--r--src/ARMeilleure/Signal/WindowsSignalHandlerRegistration.cs (renamed from ARMeilleure/Signal/WindowsSignalHandlerRegistration.cs)0
-rw-r--r--src/ARMeilleure/State/Aarch32Mode.cs (renamed from ARMeilleure/State/Aarch32Mode.cs)0
-rw-r--r--src/ARMeilleure/State/ExceptionCallback.cs (renamed from ARMeilleure/State/ExceptionCallback.cs)0
-rw-r--r--src/ARMeilleure/State/ExecutionContext.cs (renamed from ARMeilleure/State/ExecutionContext.cs)0
-rw-r--r--src/ARMeilleure/State/ExecutionMode.cs (renamed from ARMeilleure/State/ExecutionMode.cs)0
-rw-r--r--src/ARMeilleure/State/FPCR.cs (renamed from ARMeilleure/State/FPCR.cs)0
-rw-r--r--src/ARMeilleure/State/FPException.cs (renamed from ARMeilleure/State/FPException.cs)0
-rw-r--r--src/ARMeilleure/State/FPRoundingMode.cs (renamed from ARMeilleure/State/FPRoundingMode.cs)0
-rw-r--r--src/ARMeilleure/State/FPSCR.cs (renamed from ARMeilleure/State/FPSCR.cs)0
-rw-r--r--src/ARMeilleure/State/FPSR.cs (renamed from ARMeilleure/State/FPSR.cs)0
-rw-r--r--src/ARMeilleure/State/FPState.cs (renamed from ARMeilleure/State/FPState.cs)0
-rw-r--r--src/ARMeilleure/State/FPType.cs (renamed from ARMeilleure/State/FPType.cs)0
-rw-r--r--src/ARMeilleure/State/ICounter.cs (renamed from ARMeilleure/State/ICounter.cs)0
-rw-r--r--src/ARMeilleure/State/NativeContext.cs (renamed from ARMeilleure/State/NativeContext.cs)0
-rw-r--r--src/ARMeilleure/State/PState.cs (renamed from ARMeilleure/State/PState.cs)0
-rw-r--r--src/ARMeilleure/State/RegisterAlias.cs (renamed from ARMeilleure/State/RegisterAlias.cs)0
-rw-r--r--src/ARMeilleure/State/RegisterConsts.cs (renamed from ARMeilleure/State/RegisterConsts.cs)0
-rw-r--r--src/ARMeilleure/State/V128.cs (renamed from ARMeilleure/State/V128.cs)0
-rw-r--r--src/ARMeilleure/Statistics.cs (renamed from ARMeilleure/Statistics.cs)0
-rw-r--r--src/ARMeilleure/Translation/ArmEmitterContext.cs (renamed from ARMeilleure/Translation/ArmEmitterContext.cs)0
-rw-r--r--src/ARMeilleure/Translation/Cache/CacheEntry.cs (renamed from ARMeilleure/Translation/Cache/CacheEntry.cs)0
-rw-r--r--src/ARMeilleure/Translation/Cache/CacheMemoryAllocator.cs (renamed from ARMeilleure/Translation/Cache/CacheMemoryAllocator.cs)0
-rw-r--r--src/ARMeilleure/Translation/Cache/JitCache.cs (renamed from ARMeilleure/Translation/Cache/JitCache.cs)0
-rw-r--r--src/ARMeilleure/Translation/Cache/JitCacheInvalidation.cs (renamed from ARMeilleure/Translation/Cache/JitCacheInvalidation.cs)0
-rw-r--r--src/ARMeilleure/Translation/Cache/JitUnwindWindows.cs (renamed from ARMeilleure/Translation/Cache/JitUnwindWindows.cs)0
-rw-r--r--src/ARMeilleure/Translation/Compiler.cs (renamed from ARMeilleure/Translation/Compiler.cs)0
-rw-r--r--src/ARMeilleure/Translation/CompilerContext.cs (renamed from ARMeilleure/Translation/CompilerContext.cs)0
-rw-r--r--src/ARMeilleure/Translation/CompilerOptions.cs (renamed from ARMeilleure/Translation/CompilerOptions.cs)0
-rw-r--r--src/ARMeilleure/Translation/ControlFlowGraph.cs (renamed from ARMeilleure/Translation/ControlFlowGraph.cs)0
-rw-r--r--src/ARMeilleure/Translation/DelegateHelper.cs (renamed from ARMeilleure/Translation/DelegateHelper.cs)0
-rw-r--r--src/ARMeilleure/Translation/DelegateInfo.cs (renamed from ARMeilleure/Translation/DelegateInfo.cs)0
-rw-r--r--src/ARMeilleure/Translation/Delegates.cs (renamed from ARMeilleure/Translation/Delegates.cs)0
-rw-r--r--src/ARMeilleure/Translation/DispatcherFunction.cs (renamed from ARMeilleure/Translation/DispatcherFunction.cs)0
-rw-r--r--src/ARMeilleure/Translation/Dominance.cs (renamed from ARMeilleure/Translation/Dominance.cs)0
-rw-r--r--src/ARMeilleure/Translation/EmitterContext.cs (renamed from ARMeilleure/Translation/EmitterContext.cs)0
-rw-r--r--src/ARMeilleure/Translation/GuestFunction.cs (renamed from ARMeilleure/Translation/GuestFunction.cs)0
-rw-r--r--src/ARMeilleure/Translation/IntervalTree.cs (renamed from ARMeilleure/Translation/IntervalTree.cs)0
-rw-r--r--src/ARMeilleure/Translation/PTC/EncodingCache.cs (renamed from ARMeilleure/Translation/PTC/EncodingCache.cs)0
-rw-r--r--src/ARMeilleure/Translation/PTC/IPtcLoadState.cs (renamed from ARMeilleure/Translation/PTC/IPtcLoadState.cs)0
-rw-r--r--src/ARMeilleure/Translation/PTC/Ptc.cs (renamed from ARMeilleure/Translation/PTC/Ptc.cs)0
-rw-r--r--src/ARMeilleure/Translation/PTC/PtcFormatter.cs (renamed from ARMeilleure/Translation/PTC/PtcFormatter.cs)0
-rw-r--r--src/ARMeilleure/Translation/PTC/PtcLoadingState.cs (renamed from ARMeilleure/Translation/PTC/PtcLoadingState.cs)0
-rw-r--r--src/ARMeilleure/Translation/PTC/PtcProfiler.cs (renamed from ARMeilleure/Translation/PTC/PtcProfiler.cs)0
-rw-r--r--src/ARMeilleure/Translation/PTC/PtcState.cs (renamed from ARMeilleure/Translation/PTC/PtcState.cs)0
-rw-r--r--src/ARMeilleure/Translation/RegisterToLocal.cs (renamed from ARMeilleure/Translation/RegisterToLocal.cs)0
-rw-r--r--src/ARMeilleure/Translation/RegisterUsage.cs (renamed from ARMeilleure/Translation/RegisterUsage.cs)0
-rw-r--r--src/ARMeilleure/Translation/RejitRequest.cs (renamed from ARMeilleure/Translation/RejitRequest.cs)0
-rw-r--r--src/ARMeilleure/Translation/SsaConstruction.cs (renamed from ARMeilleure/Translation/SsaConstruction.cs)0
-rw-r--r--src/ARMeilleure/Translation/SsaDeconstruction.cs (renamed from ARMeilleure/Translation/SsaDeconstruction.cs)0
-rw-r--r--src/ARMeilleure/Translation/TranslatedFunction.cs (renamed from ARMeilleure/Translation/TranslatedFunction.cs)0
-rw-r--r--src/ARMeilleure/Translation/Translator.cs (renamed from ARMeilleure/Translation/Translator.cs)0
-rw-r--r--src/ARMeilleure/Translation/TranslatorCache.cs (renamed from ARMeilleure/Translation/TranslatorCache.cs)0
-rw-r--r--src/ARMeilleure/Translation/TranslatorQueue.cs (renamed from ARMeilleure/Translation/TranslatorQueue.cs)0
-rw-r--r--src/ARMeilleure/Translation/TranslatorStubs.cs (renamed from ARMeilleure/Translation/TranslatorStubs.cs)0
-rw-r--r--src/ARMeilleure/Translation/TranslatorTestMethods.cs (renamed from ARMeilleure/Translation/TranslatorTestMethods.cs)0
-rw-r--r--src/Ryujinx.Audio.Backends.OpenAL/OpenALAudioBuffer.cs (renamed from Ryujinx.Audio.Backends.OpenAL/OpenALAudioBuffer.cs)0
-rw-r--r--src/Ryujinx.Audio.Backends.OpenAL/OpenALHardwareDeviceDriver.cs (renamed from Ryujinx.Audio.Backends.OpenAL/OpenALHardwareDeviceDriver.cs)0
-rw-r--r--src/Ryujinx.Audio.Backends.OpenAL/OpenALHardwareDeviceSession.cs (renamed from Ryujinx.Audio.Backends.OpenAL/OpenALHardwareDeviceSession.cs)0
-rw-r--r--src/Ryujinx.Audio.Backends.OpenAL/Ryujinx.Audio.Backends.OpenAL.csproj (renamed from Ryujinx.Audio.Backends.OpenAL/Ryujinx.Audio.Backends.OpenAL.csproj)0
-rw-r--r--src/Ryujinx.Audio.Backends.SDL2/Ryujinx.Audio.Backends.SDL2.csproj (renamed from Ryujinx.Audio.Backends.SDL2/Ryujinx.Audio.Backends.SDL2.csproj)0
-rw-r--r--src/Ryujinx.Audio.Backends.SDL2/SDL2AudioBuffer.cs (renamed from Ryujinx.Audio.Backends.SDL2/SDL2AudioBuffer.cs)0
-rw-r--r--src/Ryujinx.Audio.Backends.SDL2/SDL2HardwareDeviceDriver.cs (renamed from Ryujinx.Audio.Backends.SDL2/SDL2HardwareDeviceDriver.cs)0
-rw-r--r--src/Ryujinx.Audio.Backends.SDL2/SDL2HardwareDeviceSession.cs (renamed from Ryujinx.Audio.Backends.SDL2/SDL2HardwareDeviceSession.cs)0
-rw-r--r--src/Ryujinx.Audio.Backends.SoundIo/Native/SoundIo.cs (renamed from Ryujinx.Audio.Backends.SoundIo/Native/SoundIo.cs)0
-rw-r--r--src/Ryujinx.Audio.Backends.SoundIo/Native/SoundIoBackend.cs (renamed from Ryujinx.Audio.Backends.SoundIo/Native/SoundIoBackend.cs)0
-rw-r--r--src/Ryujinx.Audio.Backends.SoundIo/Native/SoundIoChannelId.cs (renamed from Ryujinx.Audio.Backends.SoundIo/Native/SoundIoChannelId.cs)0
-rw-r--r--src/Ryujinx.Audio.Backends.SoundIo/Native/SoundIoContext.cs (renamed from Ryujinx.Audio.Backends.SoundIo/Native/SoundIoContext.cs)0
-rw-r--r--src/Ryujinx.Audio.Backends.SoundIo/Native/SoundIoDeviceAim.cs (renamed from Ryujinx.Audio.Backends.SoundIo/Native/SoundIoDeviceAim.cs)0
-rw-r--r--src/Ryujinx.Audio.Backends.SoundIo/Native/SoundIoDeviceContext.cs (renamed from Ryujinx.Audio.Backends.SoundIo/Native/SoundIoDeviceContext.cs)0
-rw-r--r--src/Ryujinx.Audio.Backends.SoundIo/Native/SoundIoError.cs (renamed from Ryujinx.Audio.Backends.SoundIo/Native/SoundIoError.cs)0
-rw-r--r--src/Ryujinx.Audio.Backends.SoundIo/Native/SoundIoException.cs (renamed from Ryujinx.Audio.Backends.SoundIo/Native/SoundIoException.cs)0
-rw-r--r--src/Ryujinx.Audio.Backends.SoundIo/Native/SoundIoFormat.cs (renamed from Ryujinx.Audio.Backends.SoundIo/Native/SoundIoFormat.cs)0
-rw-r--r--src/Ryujinx.Audio.Backends.SoundIo/Native/SoundIoOutStreamContext.cs (renamed from Ryujinx.Audio.Backends.SoundIo/Native/SoundIoOutStreamContext.cs)0
-rw-r--r--src/Ryujinx.Audio.Backends.SoundIo/Native/libsoundio/libs/libsoundio.dll (renamed from Ryujinx.Audio.Backends.SoundIo/Native/libsoundio/libs/libsoundio.dll)bin85504 -> 85504 bytes
-rw-r--r--src/Ryujinx.Audio.Backends.SoundIo/Native/libsoundio/libs/libsoundio.dylib (renamed from Ryujinx.Audio.Backends.SoundIo/Native/libsoundio/libs/libsoundio.dylib)bin54976 -> 54976 bytes
-rw-r--r--src/Ryujinx.Audio.Backends.SoundIo/Native/libsoundio/libs/libsoundio.so (renamed from Ryujinx.Audio.Backends.SoundIo/Native/libsoundio/libs/libsoundio.so)bin88584 -> 88584 bytes
-rw-r--r--src/Ryujinx.Audio.Backends.SoundIo/Ryujinx.Audio.Backends.SoundIo.csproj (renamed from Ryujinx.Audio.Backends.SoundIo/Ryujinx.Audio.Backends.SoundIo.csproj)0
-rw-r--r--src/Ryujinx.Audio.Backends.SoundIo/SoundIoAudioBuffer.cs (renamed from Ryujinx.Audio.Backends.SoundIo/SoundIoAudioBuffer.cs)0
-rw-r--r--src/Ryujinx.Audio.Backends.SoundIo/SoundIoHardwareDeviceDriver.cs (renamed from Ryujinx.Audio.Backends.SoundIo/SoundIoHardwareDeviceDriver.cs)0
-rw-r--r--src/Ryujinx.Audio.Backends.SoundIo/SoundIoHardwareDeviceSession.cs (renamed from Ryujinx.Audio.Backends.SoundIo/SoundIoHardwareDeviceSession.cs)0
-rw-r--r--src/Ryujinx.Audio/AudioManager.cs (renamed from Ryujinx.Audio/AudioManager.cs)0
-rw-r--r--src/Ryujinx.Audio/Backends/Common/BackendHelper.cs (renamed from Ryujinx.Audio/Backends/Common/BackendHelper.cs)0
-rw-r--r--src/Ryujinx.Audio/Backends/Common/DynamicRingBuffer.cs (renamed from Ryujinx.Audio/Backends/Common/DynamicRingBuffer.cs)0
-rw-r--r--src/Ryujinx.Audio/Backends/Common/HardwareDeviceSessionOutputBase.cs (renamed from Ryujinx.Audio/Backends/Common/HardwareDeviceSessionOutputBase.cs)0
-rw-r--r--src/Ryujinx.Audio/Backends/CompatLayer/CompatLayerHardwareDeviceDriver.cs (renamed from Ryujinx.Audio/Backends/CompatLayer/CompatLayerHardwareDeviceDriver.cs)0
-rw-r--r--src/Ryujinx.Audio/Backends/CompatLayer/CompatLayerHardwareDeviceSession.cs (renamed from Ryujinx.Audio/Backends/CompatLayer/CompatLayerHardwareDeviceSession.cs)0
-rw-r--r--src/Ryujinx.Audio/Backends/CompatLayer/Downmixing.cs (renamed from Ryujinx.Audio/Backends/CompatLayer/Downmixing.cs)0
-rw-r--r--src/Ryujinx.Audio/Backends/Dummy/DummyHardwareDeviceDriver.cs (renamed from Ryujinx.Audio/Backends/Dummy/DummyHardwareDeviceDriver.cs)0
-rw-r--r--src/Ryujinx.Audio/Backends/Dummy/DummyHardwareDeviceSessionInput.cs (renamed from Ryujinx.Audio/Backends/Dummy/DummyHardwareDeviceSessionInput.cs)0
-rw-r--r--src/Ryujinx.Audio/Backends/Dummy/DummyHardwareDeviceSessionOutput.cs (renamed from Ryujinx.Audio/Backends/Dummy/DummyHardwareDeviceSessionOutput.cs)0
-rw-r--r--src/Ryujinx.Audio/Common/AudioBuffer.cs (renamed from Ryujinx.Audio/Common/AudioBuffer.cs)0
-rw-r--r--src/Ryujinx.Audio/Common/AudioDeviceSession.cs (renamed from Ryujinx.Audio/Common/AudioDeviceSession.cs)0
-rw-r--r--src/Ryujinx.Audio/Common/AudioDeviceState.cs (renamed from Ryujinx.Audio/Common/AudioDeviceState.cs)0
-rw-r--r--src/Ryujinx.Audio/Common/AudioInputConfiguration.cs (renamed from Ryujinx.Audio/Common/AudioInputConfiguration.cs)0
-rw-r--r--src/Ryujinx.Audio/Common/AudioOutputConfiguration.cs (renamed from Ryujinx.Audio/Common/AudioOutputConfiguration.cs)0
-rw-r--r--src/Ryujinx.Audio/Common/AudioUserBuffer.cs (renamed from Ryujinx.Audio/Common/AudioUserBuffer.cs)0
-rw-r--r--src/Ryujinx.Audio/Common/SampleFormat.cs (renamed from Ryujinx.Audio/Common/SampleFormat.cs)0
-rw-r--r--src/Ryujinx.Audio/Constants.cs (renamed from Ryujinx.Audio/Constants.cs)0
-rw-r--r--src/Ryujinx.Audio/Input/AudioInputManager.cs (renamed from Ryujinx.Audio/Input/AudioInputManager.cs)0
-rw-r--r--src/Ryujinx.Audio/Input/AudioInputSystem.cs (renamed from Ryujinx.Audio/Input/AudioInputSystem.cs)0
-rw-r--r--src/Ryujinx.Audio/Integration/HardwareDeviceImpl.cs (renamed from Ryujinx.Audio/Integration/HardwareDeviceImpl.cs)0
-rw-r--r--src/Ryujinx.Audio/Integration/IHardwareDevice.cs (renamed from Ryujinx.Audio/Integration/IHardwareDevice.cs)0
-rw-r--r--src/Ryujinx.Audio/Integration/IHardwareDeviceDriver.cs (renamed from Ryujinx.Audio/Integration/IHardwareDeviceDriver.cs)0
-rw-r--r--src/Ryujinx.Audio/Integration/IHardwareDeviceSession.cs (renamed from Ryujinx.Audio/Integration/IHardwareDeviceSession.cs)0
-rw-r--r--src/Ryujinx.Audio/Integration/IWritableEvent.cs (renamed from Ryujinx.Audio/Integration/IWritableEvent.cs)0
-rw-r--r--src/Ryujinx.Audio/Output/AudioOutputManager.cs (renamed from Ryujinx.Audio/Output/AudioOutputManager.cs)0
-rw-r--r--src/Ryujinx.Audio/Output/AudioOutputSystem.cs (renamed from Ryujinx.Audio/Output/AudioOutputSystem.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Common/AuxiliaryBufferAddresses.cs (renamed from Ryujinx.Audio/Renderer/Common/AuxiliaryBufferAddresses.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Common/BehaviourParameter.cs (renamed from Ryujinx.Audio/Renderer/Common/BehaviourParameter.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Common/EdgeMatrix.cs (renamed from Ryujinx.Audio/Renderer/Common/EdgeMatrix.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Common/EffectType.cs (renamed from Ryujinx.Audio/Renderer/Common/EffectType.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Common/MemoryPoolUserState.cs (renamed from Ryujinx.Audio/Renderer/Common/MemoryPoolUserState.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Common/NodeIdHelper.cs (renamed from Ryujinx.Audio/Renderer/Common/NodeIdHelper.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Common/NodeIdType.cs (renamed from Ryujinx.Audio/Renderer/Common/NodeIdType.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Common/NodeStates.cs (renamed from Ryujinx.Audio/Renderer/Common/NodeStates.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Common/PerformanceDetailType.cs (renamed from Ryujinx.Audio/Renderer/Common/PerformanceDetailType.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Common/PerformanceEntryType.cs (renamed from Ryujinx.Audio/Renderer/Common/PerformanceEntryType.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Common/PlayState.cs (renamed from Ryujinx.Audio/Renderer/Common/PlayState.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Common/ReverbEarlyMode.cs (renamed from Ryujinx.Audio/Renderer/Common/ReverbEarlyMode.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Common/ReverbLateMode.cs (renamed from Ryujinx.Audio/Renderer/Common/ReverbLateMode.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Common/SinkType.cs (renamed from Ryujinx.Audio/Renderer/Common/SinkType.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Common/UpdateDataHeader.cs (renamed from Ryujinx.Audio/Renderer/Common/UpdateDataHeader.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Common/VoiceUpdateState.cs (renamed from Ryujinx.Audio/Renderer/Common/VoiceUpdateState.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Common/WaveBuffer.cs (renamed from Ryujinx.Audio/Renderer/Common/WaveBuffer.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Common/WorkBufferAllocator.cs (renamed from Ryujinx.Audio/Renderer/Common/WorkBufferAllocator.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Device/VirtualDevice.cs (renamed from Ryujinx.Audio/Renderer/Device/VirtualDevice.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Device/VirtualDeviceSession.cs (renamed from Ryujinx.Audio/Renderer/Device/VirtualDeviceSession.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Device/VirtualDeviceSessionRegistry.cs (renamed from Ryujinx.Audio/Renderer/Device/VirtualDeviceSessionRegistry.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Dsp/AdpcmHelper.cs (renamed from Ryujinx.Audio/Renderer/Dsp/AdpcmHelper.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Dsp/AudioProcessor.cs (renamed from Ryujinx.Audio/Renderer/Dsp/AudioProcessor.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Dsp/BiquadFilterHelper.cs (renamed from Ryujinx.Audio/Renderer/Dsp/BiquadFilterHelper.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Dsp/Command/AdpcmDataSourceCommandVersion1.cs (renamed from Ryujinx.Audio/Renderer/Dsp/Command/AdpcmDataSourceCommandVersion1.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Dsp/Command/AuxiliaryBufferCommand.cs (renamed from Ryujinx.Audio/Renderer/Dsp/Command/AuxiliaryBufferCommand.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Dsp/Command/BiquadFilterCommand.cs (renamed from Ryujinx.Audio/Renderer/Dsp/Command/BiquadFilterCommand.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Dsp/Command/CaptureBufferCommand.cs (renamed from Ryujinx.Audio/Renderer/Dsp/Command/CaptureBufferCommand.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Dsp/Command/CircularBufferSinkCommand.cs (renamed from Ryujinx.Audio/Renderer/Dsp/Command/CircularBufferSinkCommand.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Dsp/Command/ClearMixBufferCommand.cs (renamed from Ryujinx.Audio/Renderer/Dsp/Command/ClearMixBufferCommand.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Dsp/Command/CommandList.cs (renamed from Ryujinx.Audio/Renderer/Dsp/Command/CommandList.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Dsp/Command/CommandType.cs (renamed from Ryujinx.Audio/Renderer/Dsp/Command/CommandType.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Dsp/Command/CompressorCommand.cs (renamed from Ryujinx.Audio/Renderer/Dsp/Command/CompressorCommand.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Dsp/Command/CopyMixBufferCommand.cs (renamed from Ryujinx.Audio/Renderer/Dsp/Command/CopyMixBufferCommand.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Dsp/Command/DataSourceVersion2Command.cs (renamed from Ryujinx.Audio/Renderer/Dsp/Command/DataSourceVersion2Command.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Dsp/Command/DelayCommand.cs (renamed from Ryujinx.Audio/Renderer/Dsp/Command/DelayCommand.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Dsp/Command/DepopForMixBuffersCommand.cs (renamed from Ryujinx.Audio/Renderer/Dsp/Command/DepopForMixBuffersCommand.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Dsp/Command/DepopPrepareCommand.cs (renamed from Ryujinx.Audio/Renderer/Dsp/Command/DepopPrepareCommand.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Dsp/Command/DeviceSinkCommand.cs (renamed from Ryujinx.Audio/Renderer/Dsp/Command/DeviceSinkCommand.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Dsp/Command/DownMixSurroundToStereoCommand.cs (renamed from Ryujinx.Audio/Renderer/Dsp/Command/DownMixSurroundToStereoCommand.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Dsp/Command/GroupedBiquadFilterCommand.cs (renamed from Ryujinx.Audio/Renderer/Dsp/Command/GroupedBiquadFilterCommand.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Dsp/Command/ICommand.cs (renamed from Ryujinx.Audio/Renderer/Dsp/Command/ICommand.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Dsp/Command/LimiterCommandVersion1.cs (renamed from Ryujinx.Audio/Renderer/Dsp/Command/LimiterCommandVersion1.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Dsp/Command/LimiterCommandVersion2.cs (renamed from Ryujinx.Audio/Renderer/Dsp/Command/LimiterCommandVersion2.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Dsp/Command/MixCommand.cs (renamed from Ryujinx.Audio/Renderer/Dsp/Command/MixCommand.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Dsp/Command/MixRampCommand.cs (renamed from Ryujinx.Audio/Renderer/Dsp/Command/MixRampCommand.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Dsp/Command/MixRampGroupedCommand.cs (renamed from Ryujinx.Audio/Renderer/Dsp/Command/MixRampGroupedCommand.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Dsp/Command/PcmFloatDataSourceCommandVersion1.cs (renamed from Ryujinx.Audio/Renderer/Dsp/Command/PcmFloatDataSourceCommandVersion1.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Dsp/Command/PcmInt16DataSourceCommandVersion1.cs (renamed from Ryujinx.Audio/Renderer/Dsp/Command/PcmInt16DataSourceCommandVersion1.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Dsp/Command/PerformanceCommand.cs (renamed from Ryujinx.Audio/Renderer/Dsp/Command/PerformanceCommand.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Dsp/Command/Reverb3dCommand.cs (renamed from Ryujinx.Audio/Renderer/Dsp/Command/Reverb3dCommand.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Dsp/Command/ReverbCommand.cs (renamed from Ryujinx.Audio/Renderer/Dsp/Command/ReverbCommand.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Dsp/Command/UpsampleCommand.cs (renamed from Ryujinx.Audio/Renderer/Dsp/Command/UpsampleCommand.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Dsp/Command/VolumeCommand.cs (renamed from Ryujinx.Audio/Renderer/Dsp/Command/VolumeCommand.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Dsp/Command/VolumeRampCommand.cs (renamed from Ryujinx.Audio/Renderer/Dsp/Command/VolumeRampCommand.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Dsp/DataSourceHelper.cs (renamed from Ryujinx.Audio/Renderer/Dsp/DataSourceHelper.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Dsp/Effect/DecayDelay.cs (renamed from Ryujinx.Audio/Renderer/Dsp/Effect/DecayDelay.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Dsp/Effect/DelayLine.cs (renamed from Ryujinx.Audio/Renderer/Dsp/Effect/DelayLine.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Dsp/Effect/DelayLineReverb3d.cs (renamed from Ryujinx.Audio/Renderer/Dsp/Effect/DelayLineReverb3d.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Dsp/Effect/ExponentialMovingAverage.cs (renamed from Ryujinx.Audio/Renderer/Dsp/Effect/ExponentialMovingAverage.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Dsp/Effect/IDelayLine.cs (renamed from Ryujinx.Audio/Renderer/Dsp/Effect/IDelayLine.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Dsp/FixedPointHelper.cs (renamed from Ryujinx.Audio/Renderer/Dsp/FixedPointHelper.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Dsp/FloatingPointHelper.cs (renamed from Ryujinx.Audio/Renderer/Dsp/FloatingPointHelper.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Dsp/PcmHelper.cs (renamed from Ryujinx.Audio/Renderer/Dsp/PcmHelper.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Dsp/ResamplerHelper.cs (renamed from Ryujinx.Audio/Renderer/Dsp/ResamplerHelper.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Dsp/State/AdpcmLoopContext.cs (renamed from Ryujinx.Audio/Renderer/Dsp/State/AdpcmLoopContext.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Dsp/State/AuxiliaryBufferHeader.cs (renamed from Ryujinx.Audio/Renderer/Dsp/State/AuxiliaryBufferHeader.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Dsp/State/BiquadFilterState.cs (renamed from Ryujinx.Audio/Renderer/Dsp/State/BiquadFilterState.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Dsp/State/CompressorState.cs (renamed from Ryujinx.Audio/Renderer/Dsp/State/CompressorState.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Dsp/State/DelayState.cs (renamed from Ryujinx.Audio/Renderer/Dsp/State/DelayState.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Dsp/State/LimiterState.cs (renamed from Ryujinx.Audio/Renderer/Dsp/State/LimiterState.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Dsp/State/Reverb3dState.cs (renamed from Ryujinx.Audio/Renderer/Dsp/State/Reverb3dState.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Dsp/State/ReverbState.cs (renamed from Ryujinx.Audio/Renderer/Dsp/State/ReverbState.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Dsp/UpsamplerHelper.cs (renamed from Ryujinx.Audio/Renderer/Dsp/UpsamplerHelper.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Parameter/AudioRendererConfiguration.cs (renamed from Ryujinx.Audio/Renderer/Parameter/AudioRendererConfiguration.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Parameter/BehaviourErrorInfoOutStatus.cs (renamed from Ryujinx.Audio/Renderer/Parameter/BehaviourErrorInfoOutStatus.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Parameter/BiquadFilterParameter.cs (renamed from Ryujinx.Audio/Renderer/Parameter/BiquadFilterParameter.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Parameter/Effect/AuxiliaryBufferParameter.cs (renamed from Ryujinx.Audio/Renderer/Parameter/Effect/AuxiliaryBufferParameter.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Parameter/Effect/BiquadFilterEffectParameter.cs (renamed from Ryujinx.Audio/Renderer/Parameter/Effect/BiquadFilterEffectParameter.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Parameter/Effect/BufferMixerParameter.cs (renamed from Ryujinx.Audio/Renderer/Parameter/Effect/BufferMixerParameter.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Parameter/Effect/CompressorParameter.cs (renamed from Ryujinx.Audio/Renderer/Parameter/Effect/CompressorParameter.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Parameter/Effect/DelayParameter.cs (renamed from Ryujinx.Audio/Renderer/Parameter/Effect/DelayParameter.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Parameter/Effect/LimiterParameter.cs (renamed from Ryujinx.Audio/Renderer/Parameter/Effect/LimiterParameter.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Parameter/Effect/LimiterStatistics.cs (renamed from Ryujinx.Audio/Renderer/Parameter/Effect/LimiterStatistics.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Parameter/Effect/Reverb3dParameter.cs (renamed from Ryujinx.Audio/Renderer/Parameter/Effect/Reverb3dParameter.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Parameter/Effect/ReverbParameter.cs (renamed from Ryujinx.Audio/Renderer/Parameter/Effect/ReverbParameter.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Parameter/EffectInParameterVersion1.cs (renamed from Ryujinx.Audio/Renderer/Parameter/EffectInParameterVersion1.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Parameter/EffectInParameterVersion2.cs (renamed from Ryujinx.Audio/Renderer/Parameter/EffectInParameterVersion2.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Parameter/EffectOutStatusVersion1.cs (renamed from Ryujinx.Audio/Renderer/Parameter/EffectOutStatusVersion1.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Parameter/EffectOutStatusVersion2.cs (renamed from Ryujinx.Audio/Renderer/Parameter/EffectOutStatusVersion2.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Parameter/EffectResultState.cs (renamed from Ryujinx.Audio/Renderer/Parameter/EffectResultState.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Parameter/EffectState.cs (renamed from Ryujinx.Audio/Renderer/Parameter/EffectState.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Parameter/IEffectInParameter.cs (renamed from Ryujinx.Audio/Renderer/Parameter/IEffectInParameter.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Parameter/IEffectOutStatus.cs (renamed from Ryujinx.Audio/Renderer/Parameter/IEffectOutStatus.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Parameter/MemoryPoolInParameter.cs (renamed from Ryujinx.Audio/Renderer/Parameter/MemoryPoolInParameter.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Parameter/MemoryPoolOutStatus.cs (renamed from Ryujinx.Audio/Renderer/Parameter/MemoryPoolOutStatus.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Parameter/MixInParameterDirtyOnlyUpdate.cs (renamed from Ryujinx.Audio/Renderer/Parameter/MixInParameterDirtyOnlyUpdate.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Parameter/MixParameter.cs (renamed from Ryujinx.Audio/Renderer/Parameter/MixParameter.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Parameter/Performance/PerformanceInParameter.cs (renamed from Ryujinx.Audio/Renderer/Parameter/Performance/PerformanceInParameter.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Parameter/Performance/PerformanceOutStatus.cs (renamed from Ryujinx.Audio/Renderer/Parameter/Performance/PerformanceOutStatus.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Parameter/RendererInfoOutStatus.cs (renamed from Ryujinx.Audio/Renderer/Parameter/RendererInfoOutStatus.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Parameter/Sink/CircularBufferParameter.cs (renamed from Ryujinx.Audio/Renderer/Parameter/Sink/CircularBufferParameter.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Parameter/Sink/DeviceParameter.cs (renamed from Ryujinx.Audio/Renderer/Parameter/Sink/DeviceParameter.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Parameter/SinkInParameter.cs (renamed from Ryujinx.Audio/Renderer/Parameter/SinkInParameter.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Parameter/SinkOutStatus.cs (renamed from Ryujinx.Audio/Renderer/Parameter/SinkOutStatus.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Parameter/SplitterDestinationInParameter.cs (renamed from Ryujinx.Audio/Renderer/Parameter/SplitterDestinationInParameter.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Parameter/SplitterInParameter.cs (renamed from Ryujinx.Audio/Renderer/Parameter/SplitterInParameter.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Parameter/SplitterInParameterHeader.cs (renamed from Ryujinx.Audio/Renderer/Parameter/SplitterInParameterHeader.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Parameter/VoiceChannelResourceInParameter.cs (renamed from Ryujinx.Audio/Renderer/Parameter/VoiceChannelResourceInParameter.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Parameter/VoiceInParameter.cs (renamed from Ryujinx.Audio/Renderer/Parameter/VoiceInParameter.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Parameter/VoiceOutStatus.cs (renamed from Ryujinx.Audio/Renderer/Parameter/VoiceOutStatus.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Server/AudioRenderSystem.cs (renamed from Ryujinx.Audio/Renderer/Server/AudioRenderSystem.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Server/AudioRendererManager.cs (renamed from Ryujinx.Audio/Renderer/Server/AudioRendererManager.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Server/BehaviourContext.cs (renamed from Ryujinx.Audio/Renderer/Server/BehaviourContext.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Server/CommandBuffer.cs (renamed from Ryujinx.Audio/Renderer/Server/CommandBuffer.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Server/CommandGenerator.cs (renamed from Ryujinx.Audio/Renderer/Server/CommandGenerator.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Server/CommandProcessingTimeEstimatorVersion1.cs (renamed from Ryujinx.Audio/Renderer/Server/CommandProcessingTimeEstimatorVersion1.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Server/CommandProcessingTimeEstimatorVersion2.cs (renamed from Ryujinx.Audio/Renderer/Server/CommandProcessingTimeEstimatorVersion2.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Server/CommandProcessingTimeEstimatorVersion3.cs (renamed from Ryujinx.Audio/Renderer/Server/CommandProcessingTimeEstimatorVersion3.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Server/CommandProcessingTimeEstimatorVersion4.cs (renamed from Ryujinx.Audio/Renderer/Server/CommandProcessingTimeEstimatorVersion4.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Server/CommandProcessingTimeEstimatorVersion5.cs (renamed from Ryujinx.Audio/Renderer/Server/CommandProcessingTimeEstimatorVersion5.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Server/Effect/AuxiliaryBufferEffect.cs (renamed from Ryujinx.Audio/Renderer/Server/Effect/AuxiliaryBufferEffect.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Server/Effect/BaseEffect.cs (renamed from Ryujinx.Audio/Renderer/Server/Effect/BaseEffect.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Server/Effect/BiquadFilterEffect.cs (renamed from Ryujinx.Audio/Renderer/Server/Effect/BiquadFilterEffect.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Server/Effect/BufferMixEffect.cs (renamed from Ryujinx.Audio/Renderer/Server/Effect/BufferMixEffect.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Server/Effect/CaptureBufferEffect.cs (renamed from Ryujinx.Audio/Renderer/Server/Effect/CaptureBufferEffect.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Server/Effect/CompressorEffect.cs (renamed from Ryujinx.Audio/Renderer/Server/Effect/CompressorEffect.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Server/Effect/DelayEffect.cs (renamed from Ryujinx.Audio/Renderer/Server/Effect/DelayEffect.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Server/Effect/EffectContext.cs (renamed from Ryujinx.Audio/Renderer/Server/Effect/EffectContext.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Server/Effect/LimiterEffect.cs (renamed from Ryujinx.Audio/Renderer/Server/Effect/LimiterEffect.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Server/Effect/Reverb3dEffect.cs (renamed from Ryujinx.Audio/Renderer/Server/Effect/Reverb3dEffect.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Server/Effect/ReverbEffect.cs (renamed from Ryujinx.Audio/Renderer/Server/Effect/ReverbEffect.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Server/Effect/UsageState.cs (renamed from Ryujinx.Audio/Renderer/Server/Effect/UsageState.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Server/ICommandProcessingTimeEstimator.cs (renamed from Ryujinx.Audio/Renderer/Server/ICommandProcessingTimeEstimator.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Server/MemoryPool/AddressInfo.cs (renamed from Ryujinx.Audio/Renderer/Server/MemoryPool/AddressInfo.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Server/MemoryPool/MemoryPoolState.cs (renamed from Ryujinx.Audio/Renderer/Server/MemoryPool/MemoryPoolState.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Server/MemoryPool/PoolMapper.cs (renamed from Ryujinx.Audio/Renderer/Server/MemoryPool/PoolMapper.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Server/Mix/MixContext.cs (renamed from Ryujinx.Audio/Renderer/Server/Mix/MixContext.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Server/Mix/MixState.cs (renamed from Ryujinx.Audio/Renderer/Server/Mix/MixState.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Server/Performance/IPerformanceDetailEntry.cs (renamed from Ryujinx.Audio/Renderer/Server/Performance/IPerformanceDetailEntry.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Server/Performance/IPerformanceEntry.cs (renamed from Ryujinx.Audio/Renderer/Server/Performance/IPerformanceEntry.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Server/Performance/IPerformanceHeader.cs (renamed from Ryujinx.Audio/Renderer/Server/Performance/IPerformanceHeader.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Server/Performance/PerformanceDetailVersion1.cs (renamed from Ryujinx.Audio/Renderer/Server/Performance/PerformanceDetailVersion1.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Server/Performance/PerformanceDetailVersion2.cs (renamed from Ryujinx.Audio/Renderer/Server/Performance/PerformanceDetailVersion2.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Server/Performance/PerformanceEntryAddresses.cs (renamed from Ryujinx.Audio/Renderer/Server/Performance/PerformanceEntryAddresses.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Server/Performance/PerformanceEntryVersion1.cs (renamed from Ryujinx.Audio/Renderer/Server/Performance/PerformanceEntryVersion1.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Server/Performance/PerformanceEntryVersion2.cs (renamed from Ryujinx.Audio/Renderer/Server/Performance/PerformanceEntryVersion2.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Server/Performance/PerformanceFrameHeaderVersion1.cs (renamed from Ryujinx.Audio/Renderer/Server/Performance/PerformanceFrameHeaderVersion1.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Server/Performance/PerformanceFrameHeaderVersion2.cs (renamed from Ryujinx.Audio/Renderer/Server/Performance/PerformanceFrameHeaderVersion2.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Server/Performance/PerformanceManager.cs (renamed from Ryujinx.Audio/Renderer/Server/Performance/PerformanceManager.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Server/Performance/PerformanceManagerGeneric.cs (renamed from Ryujinx.Audio/Renderer/Server/Performance/PerformanceManagerGeneric.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Server/RendererSystemContext.cs (renamed from Ryujinx.Audio/Renderer/Server/RendererSystemContext.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Server/Sink/BaseSink.cs (renamed from Ryujinx.Audio/Renderer/Server/Sink/BaseSink.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Server/Sink/CircularBufferSink.cs (renamed from Ryujinx.Audio/Renderer/Server/Sink/CircularBufferSink.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Server/Sink/DeviceSink.cs (renamed from Ryujinx.Audio/Renderer/Server/Sink/DeviceSink.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Server/Sink/SinkContext.cs (renamed from Ryujinx.Audio/Renderer/Server/Sink/SinkContext.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Server/Splitter/SplitterContext.cs (renamed from Ryujinx.Audio/Renderer/Server/Splitter/SplitterContext.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Server/Splitter/SplitterDestination.cs (renamed from Ryujinx.Audio/Renderer/Server/Splitter/SplitterDestination.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Server/Splitter/SplitterState.cs (renamed from Ryujinx.Audio/Renderer/Server/Splitter/SplitterState.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Server/StateUpdater.cs (renamed from Ryujinx.Audio/Renderer/Server/StateUpdater.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Server/Types/AudioRendererExecutionMode.cs (renamed from Ryujinx.Audio/Renderer/Server/Types/AudioRendererExecutionMode.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Server/Types/AudioRendererRenderingDevice.cs (renamed from Ryujinx.Audio/Renderer/Server/Types/AudioRendererRenderingDevice.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Server/Types/PlayState.cs (renamed from Ryujinx.Audio/Renderer/Server/Types/PlayState.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Server/Upsampler/UpsamplerBufferState.cs (renamed from Ryujinx.Audio/Renderer/Server/Upsampler/UpsamplerBufferState.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Server/Upsampler/UpsamplerManager.cs (renamed from Ryujinx.Audio/Renderer/Server/Upsampler/UpsamplerManager.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Server/Upsampler/UpsamplerState.cs (renamed from Ryujinx.Audio/Renderer/Server/Upsampler/UpsamplerState.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Server/Voice/VoiceChannelResource.cs (renamed from Ryujinx.Audio/Renderer/Server/Voice/VoiceChannelResource.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Server/Voice/VoiceContext.cs (renamed from Ryujinx.Audio/Renderer/Server/Voice/VoiceContext.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Server/Voice/VoiceState.cs (renamed from Ryujinx.Audio/Renderer/Server/Voice/VoiceState.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Server/Voice/WaveBuffer.cs (renamed from Ryujinx.Audio/Renderer/Server/Voice/WaveBuffer.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Utils/AudioProcessorMemoryManager.cs (renamed from Ryujinx.Audio/Renderer/Utils/AudioProcessorMemoryManager.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Utils/BitArray.cs (renamed from Ryujinx.Audio/Renderer/Utils/BitArray.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Utils/FileHardwareDevice.cs (renamed from Ryujinx.Audio/Renderer/Utils/FileHardwareDevice.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Utils/Mailbox.cs (renamed from Ryujinx.Audio/Renderer/Utils/Mailbox.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Utils/Math/Matrix2x2.cs (renamed from Ryujinx.Audio/Renderer/Utils/Math/Matrix2x2.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Utils/Math/Matrix6x6.cs (renamed from Ryujinx.Audio/Renderer/Utils/Math/Matrix6x6.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Utils/Math/MatrixHelper.cs (renamed from Ryujinx.Audio/Renderer/Utils/Math/MatrixHelper.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Utils/Math/Vector6.cs (renamed from Ryujinx.Audio/Renderer/Utils/Math/Vector6.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Utils/SpanIOHelper.cs (renamed from Ryujinx.Audio/Renderer/Utils/SpanIOHelper.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Utils/SpanMemoryManager.cs (renamed from Ryujinx.Audio/Renderer/Utils/SpanMemoryManager.cs)0
-rw-r--r--src/Ryujinx.Audio/Renderer/Utils/SplitterHardwareDevice.cs (renamed from Ryujinx.Audio/Renderer/Utils/SplitterHardwareDevice.cs)0
-rw-r--r--src/Ryujinx.Audio/ResultCode.cs (renamed from Ryujinx.Audio/ResultCode.cs)0
-rw-r--r--src/Ryujinx.Audio/Ryujinx.Audio.csproj (renamed from Ryujinx.Audio/Ryujinx.Audio.csproj)0
-rw-r--r--src/Ryujinx.Ava/App.axaml (renamed from Ryujinx.Ava/App.axaml)0
-rw-r--r--src/Ryujinx.Ava/App.axaml.cs (renamed from Ryujinx.Ava/App.axaml.cs)0
-rw-r--r--src/Ryujinx.Ava/AppHost.cs (renamed from Ryujinx.Ava/AppHost.cs)0
-rw-r--r--src/Ryujinx.Ava/Assets/Fonts/SegoeFluentIcons.ttf (renamed from Ryujinx.Ava/Assets/Fonts/SegoeFluentIcons.ttf)bin408752 -> 408752 bytes
-rw-r--r--src/Ryujinx.Ava/Assets/Locales/de_DE.json (renamed from Ryujinx.Ava/Assets/Locales/de_DE.json)0
-rw-r--r--src/Ryujinx.Ava/Assets/Locales/el_GR.json (renamed from Ryujinx.Ava/Assets/Locales/el_GR.json)0
-rw-r--r--src/Ryujinx.Ava/Assets/Locales/en_US.json (renamed from Ryujinx.Ava/Assets/Locales/en_US.json)0
-rw-r--r--src/Ryujinx.Ava/Assets/Locales/es_ES.json (renamed from Ryujinx.Ava/Assets/Locales/es_ES.json)0
-rw-r--r--src/Ryujinx.Ava/Assets/Locales/fr_FR.json (renamed from Ryujinx.Ava/Assets/Locales/fr_FR.json)0
-rw-r--r--src/Ryujinx.Ava/Assets/Locales/it_IT.json (renamed from Ryujinx.Ava/Assets/Locales/it_IT.json)0
-rw-r--r--src/Ryujinx.Ava/Assets/Locales/ja_JP.json (renamed from Ryujinx.Ava/Assets/Locales/ja_JP.json)0
-rw-r--r--src/Ryujinx.Ava/Assets/Locales/ko_KR.json (renamed from Ryujinx.Ava/Assets/Locales/ko_KR.json)0
-rw-r--r--src/Ryujinx.Ava/Assets/Locales/pl_PL.json (renamed from Ryujinx.Ava/Assets/Locales/pl_PL.json)0
-rw-r--r--src/Ryujinx.Ava/Assets/Locales/pt_BR.json (renamed from Ryujinx.Ava/Assets/Locales/pt_BR.json)0
-rw-r--r--src/Ryujinx.Ava/Assets/Locales/ru_RU.json (renamed from Ryujinx.Ava/Assets/Locales/ru_RU.json)0
-rw-r--r--src/Ryujinx.Ava/Assets/Locales/tr_TR.json (renamed from Ryujinx.Ava/Assets/Locales/tr_TR.json)0
-rw-r--r--src/Ryujinx.Ava/Assets/Locales/uk_UA.json (renamed from Ryujinx.Ava/Assets/Locales/uk_UA.json)0
-rw-r--r--src/Ryujinx.Ava/Assets/Locales/zh_CN.json (renamed from Ryujinx.Ava/Assets/Locales/zh_CN.json)0
-rw-r--r--src/Ryujinx.Ava/Assets/Locales/zh_TW.json (renamed from Ryujinx.Ava/Assets/Locales/zh_TW.json)0
-rw-r--r--src/Ryujinx.Ava/Assets/Styles/BaseDark.xaml (renamed from Ryujinx.Ava/Assets/Styles/BaseDark.xaml)0
-rw-r--r--src/Ryujinx.Ava/Assets/Styles/BaseLight.xaml (renamed from Ryujinx.Ava/Assets/Styles/BaseLight.xaml)0
-rw-r--r--src/Ryujinx.Ava/Assets/Styles/Styles.xaml (renamed from Ryujinx.Ava/Assets/Styles/Styles.xaml)0
-rw-r--r--src/Ryujinx.Ava/Common/ApplicationHelper.cs (renamed from Ryujinx.Ava/Common/ApplicationHelper.cs)0
-rw-r--r--src/Ryujinx.Ava/Common/ApplicationSort.cs (renamed from Ryujinx.Ava/Common/ApplicationSort.cs)0
-rw-r--r--src/Ryujinx.Ava/Common/KeyboardHotkeyState.cs (renamed from Ryujinx.Ava/Common/KeyboardHotkeyState.cs)0
-rw-r--r--src/Ryujinx.Ava/Common/Locale/LocaleExtension.cs (renamed from Ryujinx.Ava/Common/Locale/LocaleExtension.cs)0
-rw-r--r--src/Ryujinx.Ava/Common/Locale/LocaleManager.cs (renamed from Ryujinx.Ava/Common/Locale/LocaleManager.cs)0
-rw-r--r--src/Ryujinx.Ava/Input/AvaloniaKeyboard.cs (renamed from Ryujinx.Ava/Input/AvaloniaKeyboard.cs)0
-rw-r--r--src/Ryujinx.Ava/Input/AvaloniaKeyboardDriver.cs (renamed from Ryujinx.Ava/Input/AvaloniaKeyboardDriver.cs)0
-rw-r--r--src/Ryujinx.Ava/Input/AvaloniaKeyboardMappingHelper.cs (renamed from Ryujinx.Ava/Input/AvaloniaKeyboardMappingHelper.cs)0
-rw-r--r--src/Ryujinx.Ava/Input/AvaloniaMouse.cs (renamed from Ryujinx.Ava/Input/AvaloniaMouse.cs)0
-rw-r--r--src/Ryujinx.Ava/Input/AvaloniaMouseDriver.cs (renamed from Ryujinx.Ava/Input/AvaloniaMouseDriver.cs)0
-rw-r--r--src/Ryujinx.Ava/Modules/Updater/Updater.cs (renamed from Ryujinx.Ava/Modules/Updater/Updater.cs)0
-rw-r--r--src/Ryujinx.Ava/Program.cs (renamed from Ryujinx.Ava/Program.cs)0
-rw-r--r--src/Ryujinx.Ava/Ryujinx.Ava.csproj (renamed from Ryujinx.Ava/Ryujinx.Ava.csproj)14
-rw-r--r--src/Ryujinx.Ava/Ryujinx.ico (renamed from Ryujinx.Ava/Ryujinx.ico)bin108122 -> 108122 bytes
-rw-r--r--src/Ryujinx.Ava/UI/Applet/AvaHostUiHandler.cs (renamed from Ryujinx.Ava/UI/Applet/AvaHostUiHandler.cs)0
-rw-r--r--src/Ryujinx.Ava/UI/Applet/AvaloniaDynamicTextInputHandler.cs (renamed from Ryujinx.Ava/UI/Applet/AvaloniaDynamicTextInputHandler.cs)0
-rw-r--r--src/Ryujinx.Ava/UI/Applet/AvaloniaHostUiTheme.cs (renamed from Ryujinx.Ava/UI/Applet/AvaloniaHostUiTheme.cs)0
-rw-r--r--src/Ryujinx.Ava/UI/Applet/ErrorAppletWindow.axaml (renamed from Ryujinx.Ava/UI/Applet/ErrorAppletWindow.axaml)0
-rw-r--r--src/Ryujinx.Ava/UI/Applet/ErrorAppletWindow.axaml.cs (renamed from Ryujinx.Ava/UI/Applet/ErrorAppletWindow.axaml.cs)0
-rw-r--r--src/Ryujinx.Ava/UI/Applet/SwkbdAppletDialog.axaml (renamed from Ryujinx.Ava/UI/Applet/SwkbdAppletDialog.axaml)0
-rw-r--r--src/Ryujinx.Ava/UI/Applet/SwkbdAppletDialog.axaml.cs (renamed from Ryujinx.Ava/UI/Applet/SwkbdAppletDialog.axaml.cs)0
-rw-r--r--src/Ryujinx.Ava/UI/Controls/GameGridView.axaml (renamed from Ryujinx.Ava/UI/Controls/GameGridView.axaml)0
-rw-r--r--src/Ryujinx.Ava/UI/Controls/GameGridView.axaml.cs (renamed from Ryujinx.Ava/UI/Controls/GameGridView.axaml.cs)0
-rw-r--r--src/Ryujinx.Ava/UI/Controls/GameListView.axaml (renamed from Ryujinx.Ava/UI/Controls/GameListView.axaml)0
-rw-r--r--src/Ryujinx.Ava/UI/Controls/GameListView.axaml.cs (renamed from Ryujinx.Ava/UI/Controls/GameListView.axaml.cs)0
-rw-r--r--src/Ryujinx.Ava/UI/Controls/NavigationDialogHost.axaml (renamed from Ryujinx.Ava/UI/Controls/NavigationDialogHost.axaml)0
-rw-r--r--src/Ryujinx.Ava/UI/Controls/NavigationDialogHost.axaml.cs (renamed from Ryujinx.Ava/UI/Controls/NavigationDialogHost.axaml.cs)0
-rw-r--r--src/Ryujinx.Ava/UI/Controls/UpdateWaitWindow.axaml (renamed from Ryujinx.Ava/UI/Controls/UpdateWaitWindow.axaml)0
-rw-r--r--src/Ryujinx.Ava/UI/Controls/UpdateWaitWindow.axaml.cs (renamed from Ryujinx.Ava/UI/Controls/UpdateWaitWindow.axaml.cs)0
-rw-r--r--src/Ryujinx.Ava/UI/Helpers/ApplicationOpenedEventArgs.cs (renamed from Ryujinx.Ava/UI/Helpers/ApplicationOpenedEventArgs.cs)0
-rw-r--r--src/Ryujinx.Ava/UI/Helpers/BitmapArrayValueConverter.cs (renamed from Ryujinx.Ava/UI/Helpers/BitmapArrayValueConverter.cs)0
-rw-r--r--src/Ryujinx.Ava/UI/Helpers/ButtonKeyAssigner.cs (renamed from Ryujinx.Ava/UI/Helpers/ButtonKeyAssigner.cs)0
-rw-r--r--src/Ryujinx.Ava/UI/Helpers/ContentDialogHelper.cs (renamed from Ryujinx.Ava/UI/Helpers/ContentDialogHelper.cs)0
-rw-r--r--src/Ryujinx.Ava/UI/Helpers/Glyph.cs (renamed from Ryujinx.Ava/UI/Helpers/Glyph.cs)0
-rw-r--r--src/Ryujinx.Ava/UI/Helpers/GlyphValueConverter.cs (renamed from Ryujinx.Ava/UI/Helpers/GlyphValueConverter.cs)0
-rw-r--r--src/Ryujinx.Ava/UI/Helpers/HotKeyControl.cs (renamed from Ryujinx.Ava/UI/Helpers/HotKeyControl.cs)0
-rw-r--r--src/Ryujinx.Ava/UI/Helpers/KeyValueConverter.cs (renamed from Ryujinx.Ava/UI/Helpers/KeyValueConverter.cs)0
-rw-r--r--src/Ryujinx.Ava/UI/Helpers/LoggerAdapter.cs (renamed from Ryujinx.Ava/UI/Helpers/LoggerAdapter.cs)0
-rw-r--r--src/Ryujinx.Ava/UI/Helpers/MiniCommand.cs (renamed from Ryujinx.Ava/UI/Helpers/MiniCommand.cs)0
-rw-r--r--src/Ryujinx.Ava/UI/Helpers/NotificationHelper.cs (renamed from Ryujinx.Ava/UI/Helpers/NotificationHelper.cs)0
-rw-r--r--src/Ryujinx.Ava/UI/Helpers/OffscreenTextBox.cs (renamed from Ryujinx.Ava/UI/Helpers/OffscreenTextBox.cs)0
-rw-r--r--src/Ryujinx.Ava/UI/Helpers/UserErrorDialog.cs (renamed from Ryujinx.Ava/UI/Helpers/UserErrorDialog.cs)0
-rw-r--r--src/Ryujinx.Ava/UI/Helpers/UserResult.cs (renamed from Ryujinx.Ava/UI/Helpers/UserResult.cs)0
-rw-r--r--src/Ryujinx.Ava/UI/Helpers/Win32NativeInterop.cs (renamed from Ryujinx.Ava/UI/Helpers/Win32NativeInterop.cs)0
-rw-r--r--src/Ryujinx.Ava/UI/Models/CheatModel.cs (renamed from Ryujinx.Ava/UI/Models/CheatModel.cs)0
-rw-r--r--src/Ryujinx.Ava/UI/Models/CheatsList.cs (renamed from Ryujinx.Ava/UI/Models/CheatsList.cs)0
-rw-r--r--src/Ryujinx.Ava/UI/Models/ControllerModel.cs (renamed from Ryujinx.Ava/UI/Models/ControllerModel.cs)0
-rw-r--r--src/Ryujinx.Ava/UI/Models/DeviceType.cs (renamed from Ryujinx.Ava/UI/Models/DeviceType.cs)0
-rw-r--r--src/Ryujinx.Ava/UI/Models/DownloadableContentModel.cs (renamed from Ryujinx.Ava/UI/Models/DownloadableContentModel.cs)0
-rw-r--r--src/Ryujinx.Ava/UI/Models/Generic/LastPlayedSortComparer.cs (renamed from Ryujinx.Ava/UI/Models/Generic/LastPlayedSortComparer.cs)0
-rw-r--r--src/Ryujinx.Ava/UI/Models/InputConfiguration.cs (renamed from Ryujinx.Ava/UI/Models/InputConfiguration.cs)0
-rw-r--r--src/Ryujinx.Ava/UI/Models/PlayerModel.cs (renamed from Ryujinx.Ava/UI/Models/PlayerModel.cs)0
-rw-r--r--src/Ryujinx.Ava/UI/Models/ProfileImageModel.cs (renamed from Ryujinx.Ava/UI/Models/ProfileImageModel.cs)0
-rw-r--r--src/Ryujinx.Ava/UI/Models/SaveModel.cs (renamed from Ryujinx.Ava/UI/Models/SaveModel.cs)0
-rw-r--r--src/Ryujinx.Ava/UI/Models/StatusUpdatedEventArgs.cs (renamed from Ryujinx.Ava/UI/Models/StatusUpdatedEventArgs.cs)0
-rw-r--r--src/Ryujinx.Ava/UI/Models/TempProfile.cs (renamed from Ryujinx.Ava/UI/Models/TempProfile.cs)0
-rw-r--r--src/Ryujinx.Ava/UI/Models/TimeZone.cs (renamed from Ryujinx.Ava/UI/Models/TimeZone.cs)0
-rw-r--r--src/Ryujinx.Ava/UI/Models/TitleUpdateModel.cs (renamed from Ryujinx.Ava/UI/Models/TitleUpdateModel.cs)0
-rw-r--r--src/Ryujinx.Ava/UI/Models/UserProfile.cs (renamed from Ryujinx.Ava/UI/Models/UserProfile.cs)0
-rw-r--r--src/Ryujinx.Ava/UI/Renderer/EmbeddedWindow.cs (renamed from Ryujinx.Ava/UI/Renderer/EmbeddedWindow.cs)0
-rw-r--r--src/Ryujinx.Ava/UI/Renderer/EmbeddedWindowOpenGL.cs (renamed from Ryujinx.Ava/UI/Renderer/EmbeddedWindowOpenGL.cs)0
-rw-r--r--src/Ryujinx.Ava/UI/Renderer/EmbeddedWindowVulkan.cs (renamed from Ryujinx.Ava/UI/Renderer/EmbeddedWindowVulkan.cs)0
-rw-r--r--src/Ryujinx.Ava/UI/Renderer/OpenTKBindingsContext.cs (renamed from Ryujinx.Ava/UI/Renderer/OpenTKBindingsContext.cs)0
-rw-r--r--src/Ryujinx.Ava/UI/Renderer/RendererHost.axaml (renamed from Ryujinx.Ava/UI/Renderer/RendererHost.axaml)0
-rw-r--r--src/Ryujinx.Ava/UI/Renderer/RendererHost.axaml.cs (renamed from Ryujinx.Ava/UI/Renderer/RendererHost.axaml.cs)0
-rw-r--r--src/Ryujinx.Ava/UI/Renderer/SPBOpenGLContext.cs (renamed from Ryujinx.Ava/UI/Renderer/SPBOpenGLContext.cs)0
-rw-r--r--src/Ryujinx.Ava/UI/ViewModels/AboutWindowViewModel.cs (renamed from Ryujinx.Ava/UI/ViewModels/AboutWindowViewModel.cs)0
-rw-r--r--src/Ryujinx.Ava/UI/ViewModels/AmiiboWindowViewModel.cs (renamed from Ryujinx.Ava/UI/ViewModels/AmiiboWindowViewModel.cs)0
-rw-r--r--src/Ryujinx.Ava/UI/ViewModels/AvatarProfileViewModel.cs (renamed from Ryujinx.Ava/UI/ViewModels/AvatarProfileViewModel.cs)0
-rw-r--r--src/Ryujinx.Ava/UI/ViewModels/BaseModel.cs (renamed from Ryujinx.Ava/UI/ViewModels/BaseModel.cs)0
-rw-r--r--src/Ryujinx.Ava/UI/ViewModels/ControllerSettingsViewModel.cs (renamed from Ryujinx.Ava/UI/ViewModels/ControllerSettingsViewModel.cs)0
-rw-r--r--src/Ryujinx.Ava/UI/ViewModels/DownloadableContentManagerViewModel.cs (renamed from Ryujinx.Ava/UI/ViewModels/DownloadableContentManagerViewModel.cs)0
-rw-r--r--src/Ryujinx.Ava/UI/ViewModels/MainWindowViewModel.cs (renamed from Ryujinx.Ava/UI/ViewModels/MainWindowViewModel.cs)0
-rw-r--r--src/Ryujinx.Ava/UI/ViewModels/SettingsViewModel.cs (renamed from Ryujinx.Ava/UI/ViewModels/SettingsViewModel.cs)0
-rw-r--r--src/Ryujinx.Ava/UI/ViewModels/TitleUpdateViewModel.cs (renamed from Ryujinx.Ava/UI/ViewModels/TitleUpdateViewModel.cs)0
-rw-r--r--src/Ryujinx.Ava/UI/ViewModels/UserFirmwareAvatarSelectorViewModel.cs (renamed from Ryujinx.Ava/UI/ViewModels/UserFirmwareAvatarSelectorViewModel.cs)0
-rw-r--r--src/Ryujinx.Ava/UI/ViewModels/UserProfileImageSelectorViewModel.cs (renamed from Ryujinx.Ava/UI/ViewModels/UserProfileImageSelectorViewModel.cs)0
-rw-r--r--src/Ryujinx.Ava/UI/ViewModels/UserProfileViewModel.cs (renamed from Ryujinx.Ava/UI/ViewModels/UserProfileViewModel.cs)0
-rw-r--r--src/Ryujinx.Ava/UI/ViewModels/UserSaveManagerViewModel.cs (renamed from Ryujinx.Ava/UI/ViewModels/UserSaveManagerViewModel.cs)0
-rw-r--r--src/Ryujinx.Ava/UI/Views/Main/MainMenuBarView.axaml (renamed from Ryujinx.Ava/UI/Views/Main/MainMenuBarView.axaml)0
-rw-r--r--src/Ryujinx.Ava/UI/Views/Main/MainMenuBarView.axaml.cs (renamed from Ryujinx.Ava/UI/Views/Main/MainMenuBarView.axaml.cs)0
-rw-r--r--src/Ryujinx.Ava/UI/Views/Main/MainStatusBarView.axaml (renamed from Ryujinx.Ava/UI/Views/Main/MainStatusBarView.axaml)0
-rw-r--r--src/Ryujinx.Ava/UI/Views/Main/MainStatusBarView.axaml.cs (renamed from Ryujinx.Ava/UI/Views/Main/MainStatusBarView.axaml.cs)0
-rw-r--r--src/Ryujinx.Ava/UI/Views/Main/MainViewControls.axaml (renamed from Ryujinx.Ava/UI/Views/Main/MainViewControls.axaml)0
-rw-r--r--src/Ryujinx.Ava/UI/Views/Main/MainViewControls.axaml.cs (renamed from Ryujinx.Ava/UI/Views/Main/MainViewControls.axaml.cs)0
-rw-r--r--src/Ryujinx.Ava/UI/Views/Settings/SettingsAudioView.axaml (renamed from Ryujinx.Ava/UI/Views/Settings/SettingsAudioView.axaml)0
-rw-r--r--src/Ryujinx.Ava/UI/Views/Settings/SettingsAudioView.axaml.cs (renamed from Ryujinx.Ava/UI/Views/Settings/SettingsAudioView.axaml.cs)0
-rw-r--r--src/Ryujinx.Ava/UI/Views/Settings/SettingsCPUView.axaml (renamed from Ryujinx.Ava/UI/Views/Settings/SettingsCPUView.axaml)0
-rw-r--r--src/Ryujinx.Ava/UI/Views/Settings/SettingsCPUView.axaml.cs (renamed from Ryujinx.Ava/UI/Views/Settings/SettingsCPUView.axaml.cs)0
-rw-r--r--src/Ryujinx.Ava/UI/Views/Settings/SettingsGraphicsView.axaml (renamed from Ryujinx.Ava/UI/Views/Settings/SettingsGraphicsView.axaml)0
-rw-r--r--src/Ryujinx.Ava/UI/Views/Settings/SettingsGraphicsView.axaml.cs (renamed from Ryujinx.Ava/UI/Views/Settings/SettingsGraphicsView.axaml.cs)0
-rw-r--r--src/Ryujinx.Ava/UI/Views/Settings/SettingsHotkeysView.axaml (renamed from Ryujinx.Ava/UI/Views/Settings/SettingsHotkeysView.axaml)0
-rw-r--r--src/Ryujinx.Ava/UI/Views/Settings/SettingsHotkeysView.axaml.cs (renamed from Ryujinx.Ava/UI/Views/Settings/SettingsHotkeysView.axaml.cs)0
-rw-r--r--src/Ryujinx.Ava/UI/Views/Settings/SettingsInputView.axaml (renamed from Ryujinx.Ava/UI/Views/Settings/SettingsInputView.axaml)0
-rw-r--r--src/Ryujinx.Ava/UI/Views/Settings/SettingsInputView.axaml.cs (renamed from Ryujinx.Ava/UI/Views/Settings/SettingsInputView.axaml.cs)0
-rw-r--r--src/Ryujinx.Ava/UI/Views/Settings/SettingsLoggingView.axaml (renamed from Ryujinx.Ava/UI/Views/Settings/SettingsLoggingView.axaml)0
-rw-r--r--src/Ryujinx.Ava/UI/Views/Settings/SettingsLoggingView.axaml.cs (renamed from Ryujinx.Ava/UI/Views/Settings/SettingsLoggingView.axaml.cs)0
-rw-r--r--src/Ryujinx.Ava/UI/Views/Settings/SettingsNetworkView.axaml (renamed from Ryujinx.Ava/UI/Views/Settings/SettingsNetworkView.axaml)0
-rw-r--r--src/Ryujinx.Ava/UI/Views/Settings/SettingsNetworkView.axaml.cs (renamed from Ryujinx.Ava/UI/Views/Settings/SettingsNetworkView.axaml.cs)0
-rw-r--r--src/Ryujinx.Ava/UI/Views/Settings/SettingsSystemView.axaml (renamed from Ryujinx.Ava/UI/Views/Settings/SettingsSystemView.axaml)0
-rw-r--r--src/Ryujinx.Ava/UI/Views/Settings/SettingsSystemView.axaml.cs (renamed from Ryujinx.Ava/UI/Views/Settings/SettingsSystemView.axaml.cs)0
-rw-r--r--src/Ryujinx.Ava/UI/Views/Settings/SettingsUIView.axaml (renamed from Ryujinx.Ava/UI/Views/Settings/SettingsUIView.axaml)0
-rw-r--r--src/Ryujinx.Ava/UI/Views/Settings/SettingsUIView.axaml.cs (renamed from Ryujinx.Ava/UI/Views/Settings/SettingsUIView.axaml.cs)0
-rw-r--r--src/Ryujinx.Ava/UI/Views/User/UserEditorView.axaml (renamed from Ryujinx.Ava/UI/Views/User/UserEditorView.axaml)0
-rw-r--r--src/Ryujinx.Ava/UI/Views/User/UserEditorView.axaml.cs (renamed from Ryujinx.Ava/UI/Views/User/UserEditorView.axaml.cs)0
-rw-r--r--src/Ryujinx.Ava/UI/Views/User/UserFirmwareAvatarSelectorView.axaml (renamed from Ryujinx.Ava/UI/Views/User/UserFirmwareAvatarSelectorView.axaml)0
-rw-r--r--src/Ryujinx.Ava/UI/Views/User/UserFirmwareAvatarSelectorView.axaml.cs (renamed from Ryujinx.Ava/UI/Views/User/UserFirmwareAvatarSelectorView.axaml.cs)0
-rw-r--r--src/Ryujinx.Ava/UI/Views/User/UserProfileImageSelectorView.axaml (renamed from Ryujinx.Ava/UI/Views/User/UserProfileImageSelectorView.axaml)0
-rw-r--r--src/Ryujinx.Ava/UI/Views/User/UserProfileImageSelectorView.axaml.cs (renamed from Ryujinx.Ava/UI/Views/User/UserProfileImageSelectorView.axaml.cs)0
-rw-r--r--src/Ryujinx.Ava/UI/Views/User/UserRecovererView.axaml (renamed from Ryujinx.Ava/UI/Views/User/UserRecovererView.axaml)0
-rw-r--r--src/Ryujinx.Ava/UI/Views/User/UserRecovererView.axaml.cs (renamed from Ryujinx.Ava/UI/Views/User/UserRecovererView.axaml.cs)0
-rw-r--r--src/Ryujinx.Ava/UI/Views/User/UserSaveManagerView.axaml (renamed from Ryujinx.Ava/UI/Views/User/UserSaveManagerView.axaml)0
-rw-r--r--src/Ryujinx.Ava/UI/Views/User/UserSaveManagerView.axaml.cs (renamed from Ryujinx.Ava/UI/Views/User/UserSaveManagerView.axaml.cs)0
-rw-r--r--src/Ryujinx.Ava/UI/Views/User/UserSelectorView.axaml (renamed from Ryujinx.Ava/UI/Views/User/UserSelectorView.axaml)0
-rw-r--r--src/Ryujinx.Ava/UI/Views/User/UserSelectorView.axaml.cs (renamed from Ryujinx.Ava/UI/Views/User/UserSelectorView.axaml.cs)0
-rw-r--r--src/Ryujinx.Ava/UI/Windows/AboutWindow.axaml (renamed from Ryujinx.Ava/UI/Windows/AboutWindow.axaml)0
-rw-r--r--src/Ryujinx.Ava/UI/Windows/AboutWindow.axaml.cs (renamed from Ryujinx.Ava/UI/Windows/AboutWindow.axaml.cs)0
-rw-r--r--src/Ryujinx.Ava/UI/Windows/AmiiboWindow.axaml (renamed from Ryujinx.Ava/UI/Windows/AmiiboWindow.axaml)0
-rw-r--r--src/Ryujinx.Ava/UI/Windows/AmiiboWindow.axaml.cs (renamed from Ryujinx.Ava/UI/Windows/AmiiboWindow.axaml.cs)0
-rw-r--r--src/Ryujinx.Ava/UI/Windows/CheatWindow.axaml (renamed from Ryujinx.Ava/UI/Windows/CheatWindow.axaml)0
-rw-r--r--src/Ryujinx.Ava/UI/Windows/CheatWindow.axaml.cs (renamed from Ryujinx.Ava/UI/Windows/CheatWindow.axaml.cs)0
-rw-r--r--src/Ryujinx.Ava/UI/Windows/ContentDialogOverlayWindow.axaml (renamed from Ryujinx.Ava/UI/Windows/ContentDialogOverlayWindow.axaml)0
-rw-r--r--src/Ryujinx.Ava/UI/Windows/ContentDialogOverlayWindow.axaml.cs (renamed from Ryujinx.Ava/UI/Windows/ContentDialogOverlayWindow.axaml.cs)0
-rw-r--r--src/Ryujinx.Ava/UI/Windows/ControllerSettingsWindow.axaml (renamed from Ryujinx.Ava/UI/Windows/ControllerSettingsWindow.axaml)0
-rw-r--r--src/Ryujinx.Ava/UI/Windows/ControllerSettingsWindow.axaml.cs (renamed from Ryujinx.Ava/UI/Windows/ControllerSettingsWindow.axaml.cs)0
-rw-r--r--src/Ryujinx.Ava/UI/Windows/DownloadableContentManagerWindow.axaml (renamed from Ryujinx.Ava/UI/Windows/DownloadableContentManagerWindow.axaml)0
-rw-r--r--src/Ryujinx.Ava/UI/Windows/DownloadableContentManagerWindow.axaml.cs (renamed from Ryujinx.Ava/UI/Windows/DownloadableContentManagerWindow.axaml.cs)0
-rw-r--r--src/Ryujinx.Ava/UI/Windows/IconColorPicker.cs (renamed from Ryujinx.Ava/UI/Windows/IconColorPicker.cs)0
-rw-r--r--src/Ryujinx.Ava/UI/Windows/MainWindow.axaml (renamed from Ryujinx.Ava/UI/Windows/MainWindow.axaml)0
-rw-r--r--src/Ryujinx.Ava/UI/Windows/MainWindow.axaml.cs (renamed from Ryujinx.Ava/UI/Windows/MainWindow.axaml.cs)0
-rw-r--r--src/Ryujinx.Ava/UI/Windows/MotionSettingsWindow.axaml (renamed from Ryujinx.Ava/UI/Windows/MotionSettingsWindow.axaml)0
-rw-r--r--src/Ryujinx.Ava/UI/Windows/MotionSettingsWindow.axaml.cs (renamed from Ryujinx.Ava/UI/Windows/MotionSettingsWindow.axaml.cs)0
-rw-r--r--src/Ryujinx.Ava/UI/Windows/RumbleSettingsWindow.axaml (renamed from Ryujinx.Ava/UI/Windows/RumbleSettingsWindow.axaml)0
-rw-r--r--src/Ryujinx.Ava/UI/Windows/RumbleSettingsWindow.axaml.cs (renamed from Ryujinx.Ava/UI/Windows/RumbleSettingsWindow.axaml.cs)0
-rw-r--r--src/Ryujinx.Ava/UI/Windows/SettingsWindow.axaml (renamed from Ryujinx.Ava/UI/Windows/SettingsWindow.axaml)0
-rw-r--r--src/Ryujinx.Ava/UI/Windows/SettingsWindow.axaml.cs (renamed from Ryujinx.Ava/UI/Windows/SettingsWindow.axaml.cs)0
-rw-r--r--src/Ryujinx.Ava/UI/Windows/StyleableWindow.cs (renamed from Ryujinx.Ava/UI/Windows/StyleableWindow.cs)0
-rw-r--r--src/Ryujinx.Ava/UI/Windows/TitleUpdateWindow.axaml (renamed from Ryujinx.Ava/UI/Windows/TitleUpdateWindow.axaml)0
-rw-r--r--src/Ryujinx.Ava/UI/Windows/TitleUpdateWindow.axaml.cs (renamed from Ryujinx.Ava/UI/Windows/TitleUpdateWindow.axaml.cs)0
-rw-r--r--src/Ryujinx.Common/AsyncWorkQueue.cs (renamed from Ryujinx.Common/AsyncWorkQueue.cs)0
-rw-r--r--src/Ryujinx.Common/Collections/IntervalTree.cs (renamed from Ryujinx.Common/Collections/IntervalTree.cs)0
-rw-r--r--src/Ryujinx.Common/Collections/IntrusiveRedBlackTree.cs (renamed from Ryujinx.Common/Collections/IntrusiveRedBlackTree.cs)0
-rw-r--r--src/Ryujinx.Common/Collections/IntrusiveRedBlackTreeImpl.cs (renamed from Ryujinx.Common/Collections/IntrusiveRedBlackTreeImpl.cs)0
-rw-r--r--src/Ryujinx.Common/Collections/IntrusiveRedBlackTreeNode.cs (renamed from Ryujinx.Common/Collections/IntrusiveRedBlackTreeNode.cs)0
-rw-r--r--src/Ryujinx.Common/Collections/TreeDictionary.cs (renamed from Ryujinx.Common/Collections/TreeDictionary.cs)0
-rw-r--r--src/Ryujinx.Common/Configuration/AntiAliasing.cs (renamed from Ryujinx.Common/Configuration/AntiAliasing.cs)0
-rw-r--r--src/Ryujinx.Common/Configuration/AppDataManager.cs (renamed from Ryujinx.Common/Configuration/AppDataManager.cs)0
-rw-r--r--src/Ryujinx.Common/Configuration/AspectRatioExtensions.cs (renamed from Ryujinx.Common/Configuration/AspectRatioExtensions.cs)0
-rw-r--r--src/Ryujinx.Common/Configuration/BackendThreading.cs (renamed from Ryujinx.Common/Configuration/BackendThreading.cs)0
-rw-r--r--src/Ryujinx.Common/Configuration/DownloadableContentContainer.cs (renamed from Ryujinx.Common/Configuration/DownloadableContentContainer.cs)0
-rw-r--r--src/Ryujinx.Common/Configuration/DownloadableContentJsonSerializerContext.cs (renamed from Ryujinx.Common/Configuration/DownloadableContentJsonSerializerContext.cs)0
-rw-r--r--src/Ryujinx.Common/Configuration/DownloadableContentNca.cs (renamed from Ryujinx.Common/Configuration/DownloadableContentNca.cs)0
-rw-r--r--src/Ryujinx.Common/Configuration/GraphicsBackend.cs (renamed from Ryujinx.Common/Configuration/GraphicsBackend.cs)0
-rw-r--r--src/Ryujinx.Common/Configuration/GraphicsDebugLevel.cs (renamed from Ryujinx.Common/Configuration/GraphicsDebugLevel.cs)0
-rw-r--r--src/Ryujinx.Common/Configuration/Hid/Controller/GamepadInputId.cs (renamed from Ryujinx.Common/Configuration/Hid/Controller/GamepadInputId.cs)0
-rw-r--r--src/Ryujinx.Common/Configuration/Hid/Controller/GenericControllerInputConfig.cs (renamed from Ryujinx.Common/Configuration/Hid/Controller/GenericControllerInputConfig.cs)0
-rw-r--r--src/Ryujinx.Common/Configuration/Hid/Controller/JoyconConfigControllerStick.cs (renamed from Ryujinx.Common/Configuration/Hid/Controller/JoyconConfigControllerStick.cs)0
-rw-r--r--src/Ryujinx.Common/Configuration/Hid/Controller/Motion/CemuHookMotionConfigController.cs (renamed from Ryujinx.Common/Configuration/Hid/Controller/Motion/CemuHookMotionConfigController.cs)0
-rw-r--r--src/Ryujinx.Common/Configuration/Hid/Controller/Motion/JsonMotionConfigControllerConverter.cs (renamed from Ryujinx.Common/Configuration/Hid/Controller/Motion/JsonMotionConfigControllerConverter.cs)0
-rw-r--r--src/Ryujinx.Common/Configuration/Hid/Controller/Motion/MotionConfigController.cs (renamed from Ryujinx.Common/Configuration/Hid/Controller/Motion/MotionConfigController.cs)0
-rw-r--r--src/Ryujinx.Common/Configuration/Hid/Controller/Motion/MotionConfigJsonSerializerContext.cs (renamed from Ryujinx.Common/Configuration/Hid/Controller/Motion/MotionConfigJsonSerializerContext.cs)0
-rw-r--r--src/Ryujinx.Common/Configuration/Hid/Controller/Motion/MotionInputBackendType.cs (renamed from Ryujinx.Common/Configuration/Hid/Controller/Motion/MotionInputBackendType.cs)0
-rw-r--r--src/Ryujinx.Common/Configuration/Hid/Controller/Motion/StandardMotionConfigController.cs (renamed from Ryujinx.Common/Configuration/Hid/Controller/Motion/StandardMotionConfigController.cs)0
-rw-r--r--src/Ryujinx.Common/Configuration/Hid/Controller/RumbleConfigController.cs (renamed from Ryujinx.Common/Configuration/Hid/Controller/RumbleConfigController.cs)0
-rw-r--r--src/Ryujinx.Common/Configuration/Hid/Controller/StandardControllerInputConfig.cs (renamed from Ryujinx.Common/Configuration/Hid/Controller/StandardControllerInputConfig.cs)0
-rw-r--r--src/Ryujinx.Common/Configuration/Hid/Controller/StickInputId.cs (renamed from Ryujinx.Common/Configuration/Hid/Controller/StickInputId.cs)0
-rw-r--r--src/Ryujinx.Common/Configuration/Hid/ControllerType.cs (renamed from Ryujinx.Common/Configuration/Hid/ControllerType.cs)0
-rw-r--r--src/Ryujinx.Common/Configuration/Hid/GenericInputConfigurationCommon.cs (renamed from Ryujinx.Common/Configuration/Hid/GenericInputConfigurationCommon.cs)0
-rw-r--r--src/Ryujinx.Common/Configuration/Hid/InputBackendType.cs (renamed from Ryujinx.Common/Configuration/Hid/InputBackendType.cs)0
-rw-r--r--src/Ryujinx.Common/Configuration/Hid/InputConfig.cs (renamed from Ryujinx.Common/Configuration/Hid/InputConfig.cs)0
-rw-r--r--src/Ryujinx.Common/Configuration/Hid/InputConfigJsonSerializerContext.cs (renamed from Ryujinx.Common/Configuration/Hid/InputConfigJsonSerializerContext.cs)0
-rw-r--r--src/Ryujinx.Common/Configuration/Hid/JsonInputConfigConverter.cs (renamed from Ryujinx.Common/Configuration/Hid/JsonInputConfigConverter.cs)0
-rw-r--r--src/Ryujinx.Common/Configuration/Hid/Key.cs (renamed from Ryujinx.Common/Configuration/Hid/Key.cs)0
-rw-r--r--src/Ryujinx.Common/Configuration/Hid/Keyboard/GenericKeyboardInputConfig.cs (renamed from Ryujinx.Common/Configuration/Hid/Keyboard/GenericKeyboardInputConfig.cs)0
-rw-r--r--src/Ryujinx.Common/Configuration/Hid/Keyboard/JoyconConfigKeyboardStick.cs (renamed from Ryujinx.Common/Configuration/Hid/Keyboard/JoyconConfigKeyboardStick.cs)0
-rw-r--r--src/Ryujinx.Common/Configuration/Hid/Keyboard/StandardKeyboardInputConfig.cs (renamed from Ryujinx.Common/Configuration/Hid/Keyboard/StandardKeyboardInputConfig.cs)0
-rw-r--r--src/Ryujinx.Common/Configuration/Hid/KeyboardHotkeys.cs (renamed from Ryujinx.Common/Configuration/Hid/KeyboardHotkeys.cs)0
-rw-r--r--src/Ryujinx.Common/Configuration/Hid/LeftJoyconCommonConfig.cs (renamed from Ryujinx.Common/Configuration/Hid/LeftJoyconCommonConfig.cs)0
-rw-r--r--src/Ryujinx.Common/Configuration/Hid/PlayerIndex.cs (renamed from Ryujinx.Common/Configuration/Hid/PlayerIndex.cs)0
-rw-r--r--src/Ryujinx.Common/Configuration/Hid/RightJoyconCommonConfig.cs (renamed from Ryujinx.Common/Configuration/Hid/RightJoyconCommonConfig.cs)0
-rw-r--r--src/Ryujinx.Common/Configuration/MemoryManagerMode.cs (renamed from Ryujinx.Common/Configuration/MemoryManagerMode.cs)0
-rw-r--r--src/Ryujinx.Common/Configuration/ScalingFilter.cs (renamed from Ryujinx.Common/Configuration/ScalingFilter.cs)0
-rw-r--r--src/Ryujinx.Common/Configuration/TitleUpdateMetadata.cs (renamed from Ryujinx.Common/Configuration/TitleUpdateMetadata.cs)0
-rw-r--r--src/Ryujinx.Common/Configuration/TitleUpdateMetadataJsonSerializerContext.cs (renamed from Ryujinx.Common/Configuration/TitleUpdateMetadataJsonSerializerContext.cs)0
-rw-r--r--src/Ryujinx.Common/Extensions/BinaryReaderExtensions.cs (renamed from Ryujinx.Common/Extensions/BinaryReaderExtensions.cs)0
-rw-r--r--src/Ryujinx.Common/Extensions/BinaryWriterExtensions.cs (renamed from Ryujinx.Common/Extensions/BinaryWriterExtensions.cs)0
-rw-r--r--src/Ryujinx.Common/Extensions/StreamExtensions.cs (renamed from Ryujinx.Common/Extensions/StreamExtensions.cs)0
-rw-r--r--src/Ryujinx.Common/GraphicsDriver/DriverUtilities.cs (renamed from Ryujinx.Common/GraphicsDriver/DriverUtilities.cs)0
-rw-r--r--src/Ryujinx.Common/GraphicsDriver/NVAPI/Nvapi.cs (renamed from Ryujinx.Common/GraphicsDriver/NVAPI/Nvapi.cs)0
-rw-r--r--src/Ryujinx.Common/GraphicsDriver/NVAPI/NvapiUnicodeString.cs (renamed from Ryujinx.Common/GraphicsDriver/NVAPI/NvapiUnicodeString.cs)0
-rw-r--r--src/Ryujinx.Common/GraphicsDriver/NVAPI/NvdrsApplicationV4.cs (renamed from Ryujinx.Common/GraphicsDriver/NVAPI/NvdrsApplicationV4.cs)0
-rw-r--r--src/Ryujinx.Common/GraphicsDriver/NVAPI/NvdrsProfile.cs (renamed from Ryujinx.Common/GraphicsDriver/NVAPI/NvdrsProfile.cs)0
-rw-r--r--src/Ryujinx.Common/GraphicsDriver/NVAPI/NvdrsSetting.cs (renamed from Ryujinx.Common/GraphicsDriver/NVAPI/NvdrsSetting.cs)0
-rw-r--r--src/Ryujinx.Common/GraphicsDriver/NVThreadedOptimization.cs (renamed from Ryujinx.Common/GraphicsDriver/NVThreadedOptimization.cs)0
-rw-r--r--src/Ryujinx.Common/Hash128.cs (renamed from Ryujinx.Common/Hash128.cs)0
-rw-r--r--src/Ryujinx.Common/Logging/Formatters/DefaultLogFormatter.cs (renamed from Ryujinx.Common/Logging/Formatters/DefaultLogFormatter.cs)0
-rw-r--r--src/Ryujinx.Common/Logging/Formatters/DynamicObjectFormatter.cs (renamed from Ryujinx.Common/Logging/Formatters/DynamicObjectFormatter.cs)0
-rw-r--r--src/Ryujinx.Common/Logging/Formatters/ILogFormatter.cs (renamed from Ryujinx.Common/Logging/Formatters/ILogFormatter.cs)0
-rw-r--r--src/Ryujinx.Common/Logging/LogClass.cs (renamed from Ryujinx.Common/Logging/LogClass.cs)0
-rw-r--r--src/Ryujinx.Common/Logging/LogEventArgs.cs (renamed from Ryujinx.Common/Logging/LogEventArgs.cs)0
-rw-r--r--src/Ryujinx.Common/Logging/LogEventArgsJson.cs (renamed from Ryujinx.Common/Logging/LogEventArgsJson.cs)0
-rw-r--r--src/Ryujinx.Common/Logging/LogEventJsonSerializerContext.cs (renamed from Ryujinx.Common/Logging/LogEventJsonSerializerContext.cs)0
-rw-r--r--src/Ryujinx.Common/Logging/LogLevel.cs (renamed from Ryujinx.Common/Logging/LogLevel.cs)0
-rw-r--r--src/Ryujinx.Common/Logging/Logger.cs (renamed from Ryujinx.Common/Logging/Logger.cs)0
-rw-r--r--src/Ryujinx.Common/Logging/Targets/AsyncLogTargetWrapper.cs (renamed from Ryujinx.Common/Logging/Targets/AsyncLogTargetWrapper.cs)0
-rw-r--r--src/Ryujinx.Common/Logging/Targets/ConsoleLogTarget.cs (renamed from Ryujinx.Common/Logging/Targets/ConsoleLogTarget.cs)0
-rw-r--r--src/Ryujinx.Common/Logging/Targets/FileLogTarget.cs (renamed from Ryujinx.Common/Logging/Targets/FileLogTarget.cs)0
-rw-r--r--src/Ryujinx.Common/Logging/Targets/ILogTarget.cs (renamed from Ryujinx.Common/Logging/Targets/ILogTarget.cs)0
-rw-r--r--src/Ryujinx.Common/Logging/Targets/JsonLogTarget.cs (renamed from Ryujinx.Common/Logging/Targets/JsonLogTarget.cs)0
-rw-r--r--src/Ryujinx.Common/Memory/ArrayPtr.cs (renamed from Ryujinx.Common/Memory/ArrayPtr.cs)0
-rw-r--r--src/Ryujinx.Common/Memory/Box.cs (renamed from Ryujinx.Common/Memory/Box.cs)0
-rw-r--r--src/Ryujinx.Common/Memory/ByteMemoryPool.ByteMemoryPoolBuffer.cs (renamed from Ryujinx.Common/Memory/ByteMemoryPool.ByteMemoryPoolBuffer.cs)0
-rw-r--r--src/Ryujinx.Common/Memory/ByteMemoryPool.cs (renamed from Ryujinx.Common/Memory/ByteMemoryPool.cs)0
-rw-r--r--src/Ryujinx.Common/Memory/IArray.cs (renamed from Ryujinx.Common/Memory/IArray.cs)0
-rw-r--r--src/Ryujinx.Common/Memory/MemoryStreamManager.cs (renamed from Ryujinx.Common/Memory/MemoryStreamManager.cs)0
-rw-r--r--src/Ryujinx.Common/Memory/PartialUnmaps/NativeReaderWriterLock.cs (renamed from Ryujinx.Common/Memory/PartialUnmaps/NativeReaderWriterLock.cs)0
-rw-r--r--src/Ryujinx.Common/Memory/PartialUnmaps/PartialUnmapHelpers.cs (renamed from Ryujinx.Common/Memory/PartialUnmaps/PartialUnmapHelpers.cs)0
-rw-r--r--src/Ryujinx.Common/Memory/PartialUnmaps/PartialUnmapState.cs (renamed from Ryujinx.Common/Memory/PartialUnmaps/PartialUnmapState.cs)0
-rw-r--r--src/Ryujinx.Common/Memory/PartialUnmaps/ThreadLocalMap.cs (renamed from Ryujinx.Common/Memory/PartialUnmaps/ThreadLocalMap.cs)0
-rw-r--r--src/Ryujinx.Common/Memory/Ptr.cs (renamed from Ryujinx.Common/Memory/Ptr.cs)0
-rw-r--r--src/Ryujinx.Common/Memory/SpanOrArray.cs (renamed from Ryujinx.Common/Memory/SpanOrArray.cs)0
-rw-r--r--src/Ryujinx.Common/Memory/SpanReader.cs (renamed from Ryujinx.Common/Memory/SpanReader.cs)0
-rw-r--r--src/Ryujinx.Common/Memory/SpanWriter.cs (renamed from Ryujinx.Common/Memory/SpanWriter.cs)0
-rw-r--r--src/Ryujinx.Common/Memory/StructArrayHelpers.cs (renamed from Ryujinx.Common/Memory/StructArrayHelpers.cs)0
-rw-r--r--src/Ryujinx.Common/Memory/StructByteArrayHelpers.cs (renamed from Ryujinx.Common/Memory/StructByteArrayHelpers.cs)0
-rw-r--r--src/Ryujinx.Common/PerformanceCounter.cs (renamed from Ryujinx.Common/PerformanceCounter.cs)0
-rw-r--r--src/Ryujinx.Common/Pools/ObjectPool.cs (renamed from Ryujinx.Common/Pools/ObjectPool.cs)0
-rw-r--r--src/Ryujinx.Common/Pools/SharedPools.cs (renamed from Ryujinx.Common/Pools/SharedPools.cs)0
-rw-r--r--src/Ryujinx.Common/Pools/ThreadStaticArray.cs (renamed from Ryujinx.Common/Pools/ThreadStaticArray.cs)0
-rw-r--r--src/Ryujinx.Common/ReactiveObject.cs (renamed from Ryujinx.Common/ReactiveObject.cs)0
-rw-r--r--src/Ryujinx.Common/ReferenceEqualityComparer.cs (renamed from Ryujinx.Common/ReferenceEqualityComparer.cs)0
-rw-r--r--src/Ryujinx.Common/ReleaseInformation.cs (renamed from Ryujinx.Common/ReleaseInformation.cs)0
-rw-r--r--src/Ryujinx.Common/Ryujinx.Common.csproj (renamed from Ryujinx.Common/Ryujinx.Common.csproj)0
-rw-r--r--src/Ryujinx.Common/SystemInfo/LinuxSystemInfo.cs (renamed from Ryujinx.Common/SystemInfo/LinuxSystemInfo.cs)0
-rw-r--r--src/Ryujinx.Common/SystemInfo/MacOSSystemInfo.cs (renamed from Ryujinx.Common/SystemInfo/MacOSSystemInfo.cs)0
-rw-r--r--src/Ryujinx.Common/SystemInfo/SystemInfo.cs (renamed from Ryujinx.Common/SystemInfo/SystemInfo.cs)0
-rw-r--r--src/Ryujinx.Common/SystemInfo/WindowsSystemInfo.cs (renamed from Ryujinx.Common/SystemInfo/WindowsSystemInfo.cs)0
-rw-r--r--src/Ryujinx.Common/SystemInterop/DisplaySleep.cs (renamed from Ryujinx.Common/SystemInterop/DisplaySleep.cs)0
-rw-r--r--src/Ryujinx.Common/SystemInterop/ForceDpiAware.cs (renamed from Ryujinx.Common/SystemInterop/ForceDpiAware.cs)0
-rw-r--r--src/Ryujinx.Common/SystemInterop/GdiPlusHelper.cs (renamed from Ryujinx.Common/SystemInterop/GdiPlusHelper.cs)0
-rw-r--r--src/Ryujinx.Common/SystemInterop/StdErrAdapter.cs (renamed from Ryujinx.Common/SystemInterop/StdErrAdapter.cs)0
-rw-r--r--src/Ryujinx.Common/SystemInterop/WindowsMultimediaTimerResolution.cs (renamed from Ryujinx.Common/SystemInterop/WindowsMultimediaTimerResolution.cs)0
-rw-r--r--src/Ryujinx.Common/Utilities/BitUtils.cs (renamed from Ryujinx.Common/Utilities/BitUtils.cs)0
-rw-r--r--src/Ryujinx.Common/Utilities/BitfieldExtensions.cs (renamed from Ryujinx.Common/Utilities/BitfieldExtensions.cs)0
-rw-r--r--src/Ryujinx.Common/Utilities/Buffers.cs (renamed from Ryujinx.Common/Utilities/Buffers.cs)0
-rw-r--r--src/Ryujinx.Common/Utilities/CommonJsonContext.cs (renamed from Ryujinx.Common/Utilities/CommonJsonContext.cs)0
-rw-r--r--src/Ryujinx.Common/Utilities/EmbeddedResources.cs (renamed from Ryujinx.Common/Utilities/EmbeddedResources.cs)0
-rw-r--r--src/Ryujinx.Common/Utilities/HexUtils.cs (renamed from Ryujinx.Common/Utilities/HexUtils.cs)0
-rw-r--r--src/Ryujinx.Common/Utilities/JsonHelper.cs (renamed from Ryujinx.Common/Utilities/JsonHelper.cs)0
-rw-r--r--src/Ryujinx.Common/Utilities/MessagePackObjectFormatter.cs (renamed from Ryujinx.Common/Utilities/MessagePackObjectFormatter.cs)0
-rw-r--r--src/Ryujinx.Common/Utilities/NetworkHelpers.cs (renamed from Ryujinx.Common/Utilities/NetworkHelpers.cs)0
-rw-r--r--src/Ryujinx.Common/Utilities/SpanHelpers.cs (renamed from Ryujinx.Common/Utilities/SpanHelpers.cs)0
-rw-r--r--src/Ryujinx.Common/Utilities/StreamUtils.cs (renamed from Ryujinx.Common/Utilities/StreamUtils.cs)0
-rw-r--r--src/Ryujinx.Common/Utilities/TypedStringEnumConverter.cs (renamed from Ryujinx.Common/Utilities/TypedStringEnumConverter.cs)0
-rw-r--r--src/Ryujinx.Common/Utilities/UInt128Utils.cs (renamed from Ryujinx.Common/Utilities/UInt128Utils.cs)0
-rw-r--r--src/Ryujinx.Common/XXHash128.cs (renamed from Ryujinx.Common/XXHash128.cs)0
-rw-r--r--src/Ryujinx.Cpu/AddressSpace.cs (renamed from Ryujinx.Cpu/AddressSpace.cs)0
-rw-r--r--src/Ryujinx.Cpu/AppleHv/Arm/ApFlags.cs (renamed from Ryujinx.Cpu/AppleHv/Arm/ApFlags.cs)0
-rw-r--r--src/Ryujinx.Cpu/AppleHv/Arm/ExceptionClass.cs (renamed from Ryujinx.Cpu/AppleHv/Arm/ExceptionClass.cs)0
-rw-r--r--src/Ryujinx.Cpu/AppleHv/DummyDiskCacheLoadState.cs (renamed from Ryujinx.Cpu/AppleHv/DummyDiskCacheLoadState.cs)0
-rw-r--r--src/Ryujinx.Cpu/AppleHv/HvAddressSpace.cs (renamed from Ryujinx.Cpu/AppleHv/HvAddressSpace.cs)0
-rw-r--r--src/Ryujinx.Cpu/AppleHv/HvAddressSpaceRange.cs (renamed from Ryujinx.Cpu/AppleHv/HvAddressSpaceRange.cs)0
-rw-r--r--src/Ryujinx.Cpu/AppleHv/HvApi.cs (renamed from Ryujinx.Cpu/AppleHv/HvApi.cs)0
-rw-r--r--src/Ryujinx.Cpu/AppleHv/HvCpuContext.cs (renamed from Ryujinx.Cpu/AppleHv/HvCpuContext.cs)0
-rw-r--r--src/Ryujinx.Cpu/AppleHv/HvEngine.cs (renamed from Ryujinx.Cpu/AppleHv/HvEngine.cs)0
-rw-r--r--src/Ryujinx.Cpu/AppleHv/HvExecutionContext.cs (renamed from Ryujinx.Cpu/AppleHv/HvExecutionContext.cs)0
-rw-r--r--src/Ryujinx.Cpu/AppleHv/HvExecutionContextShadow.cs (renamed from Ryujinx.Cpu/AppleHv/HvExecutionContextShadow.cs)0
-rw-r--r--src/Ryujinx.Cpu/AppleHv/HvExecutionContextVcpu.cs (renamed from Ryujinx.Cpu/AppleHv/HvExecutionContextVcpu.cs)0
-rw-r--r--src/Ryujinx.Cpu/AppleHv/HvIpaAllocator.cs (renamed from Ryujinx.Cpu/AppleHv/HvIpaAllocator.cs)0
-rw-r--r--src/Ryujinx.Cpu/AppleHv/HvMemoryBlockAllocation.cs (renamed from Ryujinx.Cpu/AppleHv/HvMemoryBlockAllocation.cs)0
-rw-r--r--src/Ryujinx.Cpu/AppleHv/HvMemoryBlockAllocator.cs (renamed from Ryujinx.Cpu/AppleHv/HvMemoryBlockAllocator.cs)0
-rw-r--r--src/Ryujinx.Cpu/AppleHv/HvMemoryManager.cs (renamed from Ryujinx.Cpu/AppleHv/HvMemoryManager.cs)0
-rw-r--r--src/Ryujinx.Cpu/AppleHv/HvVcpu.cs (renamed from Ryujinx.Cpu/AppleHv/HvVcpu.cs)0
-rw-r--r--src/Ryujinx.Cpu/AppleHv/HvVcpuPool.cs (renamed from Ryujinx.Cpu/AppleHv/HvVcpuPool.cs)0
-rw-r--r--src/Ryujinx.Cpu/AppleHv/HvVm.cs (renamed from Ryujinx.Cpu/AppleHv/HvVm.cs)0
-rw-r--r--src/Ryujinx.Cpu/AppleHv/IHvExecutionContext.cs (renamed from Ryujinx.Cpu/AppleHv/IHvExecutionContext.cs)0
-rw-r--r--src/Ryujinx.Cpu/ExceptionCallbacks.cs (renamed from Ryujinx.Cpu/ExceptionCallbacks.cs)0
-rw-r--r--src/Ryujinx.Cpu/ICpuContext.cs (renamed from Ryujinx.Cpu/ICpuContext.cs)0
-rw-r--r--src/Ryujinx.Cpu/ICpuEngine.cs (renamed from Ryujinx.Cpu/ICpuEngine.cs)0
-rw-r--r--src/Ryujinx.Cpu/IDiskCacheState.cs (renamed from Ryujinx.Cpu/IDiskCacheState.cs)0
-rw-r--r--src/Ryujinx.Cpu/IExecutionContext.cs (renamed from Ryujinx.Cpu/IExecutionContext.cs)0
-rw-r--r--src/Ryujinx.Cpu/ITickSource.cs (renamed from Ryujinx.Cpu/ITickSource.cs)0
-rw-r--r--src/Ryujinx.Cpu/IVirtualMemoryManagerTracked.cs (renamed from Ryujinx.Cpu/IVirtualMemoryManagerTracked.cs)0
-rw-r--r--src/Ryujinx.Cpu/Jit/JitCpuContext.cs (renamed from Ryujinx.Cpu/Jit/JitCpuContext.cs)0
-rw-r--r--src/Ryujinx.Cpu/Jit/JitDiskCacheLoadState.cs (renamed from Ryujinx.Cpu/Jit/JitDiskCacheLoadState.cs)0
-rw-r--r--src/Ryujinx.Cpu/Jit/JitEngine.cs (renamed from Ryujinx.Cpu/Jit/JitEngine.cs)0
-rw-r--r--src/Ryujinx.Cpu/Jit/JitExecutionContext.cs (renamed from Ryujinx.Cpu/Jit/JitExecutionContext.cs)0
-rw-r--r--src/Ryujinx.Cpu/Jit/JitMemoryAllocator.cs (renamed from Ryujinx.Cpu/Jit/JitMemoryAllocator.cs)0
-rw-r--r--src/Ryujinx.Cpu/Jit/JitMemoryBlock.cs (renamed from Ryujinx.Cpu/Jit/JitMemoryBlock.cs)0
-rw-r--r--src/Ryujinx.Cpu/Jit/MemoryManager.cs (renamed from Ryujinx.Cpu/Jit/MemoryManager.cs)0
-rw-r--r--src/Ryujinx.Cpu/Jit/MemoryManagerHostMapped.cs (renamed from Ryujinx.Cpu/Jit/MemoryManagerHostMapped.cs)0
-rw-r--r--src/Ryujinx.Cpu/LoadState.cs (renamed from Ryujinx.Cpu/LoadState.cs)0
-rw-r--r--src/Ryujinx.Cpu/MemoryEhMeilleure.cs (renamed from Ryujinx.Cpu/MemoryEhMeilleure.cs)0
-rw-r--r--src/Ryujinx.Cpu/MemoryHelper.cs (renamed from Ryujinx.Cpu/MemoryHelper.cs)0
-rw-r--r--src/Ryujinx.Cpu/MemoryManagerBase.cs (renamed from Ryujinx.Cpu/MemoryManagerBase.cs)0
-rw-r--r--src/Ryujinx.Cpu/PrivateMemoryAllocation.cs (renamed from Ryujinx.Cpu/PrivateMemoryAllocation.cs)0
-rw-r--r--src/Ryujinx.Cpu/PrivateMemoryAllocator.cs (renamed from Ryujinx.Cpu/PrivateMemoryAllocator.cs)0
-rw-r--r--src/Ryujinx.Cpu/Ryujinx.Cpu.csproj (renamed from Ryujinx.Cpu/Ryujinx.Cpu.csproj)0
-rw-r--r--src/Ryujinx.Cpu/TickSource.cs (renamed from Ryujinx.Cpu/TickSource.cs)0
-rw-r--r--src/Ryujinx.Cpu/Tracking/CpuMultiRegionHandle.cs (renamed from Ryujinx.Cpu/Tracking/CpuMultiRegionHandle.cs)0
-rw-r--r--src/Ryujinx.Cpu/Tracking/CpuRegionHandle.cs (renamed from Ryujinx.Cpu/Tracking/CpuRegionHandle.cs)0
-rw-r--r--src/Ryujinx.Cpu/Tracking/CpuSmartMultiRegionHandle.cs (renamed from Ryujinx.Cpu/Tracking/CpuSmartMultiRegionHandle.cs)0
-rw-r--r--src/Ryujinx.Graphics.Device/DeviceState.cs (renamed from Ryujinx.Graphics.Device/DeviceState.cs)0
-rw-r--r--src/Ryujinx.Graphics.Device/IDeviceState.cs (renamed from Ryujinx.Graphics.Device/IDeviceState.cs)0
-rw-r--r--src/Ryujinx.Graphics.Device/IDeviceStateWithContext.cs (renamed from Ryujinx.Graphics.Device/IDeviceStateWithContext.cs)0
-rw-r--r--src/Ryujinx.Graphics.Device/RwCallback.cs (renamed from Ryujinx.Graphics.Device/RwCallback.cs)0
-rw-r--r--src/Ryujinx.Graphics.Device/Ryujinx.Graphics.Device.csproj (renamed from Ryujinx.Graphics.Device/Ryujinx.Graphics.Device.csproj)0
-rw-r--r--src/Ryujinx.Graphics.Device/SizeCalculator.cs (renamed from Ryujinx.Graphics.Device/SizeCalculator.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/AddressMode.cs (renamed from Ryujinx.Graphics.GAL/AddressMode.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/AdvancedBlendDescriptor.cs (renamed from Ryujinx.Graphics.GAL/AdvancedBlendDescriptor.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/AdvancedBlendOp.cs (renamed from Ryujinx.Graphics.GAL/AdvancedBlendOp.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/AdvancedBlendOverlap.cs (renamed from Ryujinx.Graphics.GAL/AdvancedBlendOverlap.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/AntiAliasing.cs (renamed from Ryujinx.Graphics.GAL/AntiAliasing.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/BlendDescriptor.cs (renamed from Ryujinx.Graphics.GAL/BlendDescriptor.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/BlendFactor.cs (renamed from Ryujinx.Graphics.GAL/BlendFactor.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/BlendOp.cs (renamed from Ryujinx.Graphics.GAL/BlendOp.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/BufferAssignment.cs (renamed from Ryujinx.Graphics.GAL/BufferAssignment.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/BufferHandle.cs (renamed from Ryujinx.Graphics.GAL/BufferHandle.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/BufferRange.cs (renamed from Ryujinx.Graphics.GAL/BufferRange.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/Capabilities.cs (renamed from Ryujinx.Graphics.GAL/Capabilities.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/ColorF.cs (renamed from Ryujinx.Graphics.GAL/ColorF.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/CompareMode.cs (renamed from Ryujinx.Graphics.GAL/CompareMode.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/CompareOp.cs (renamed from Ryujinx.Graphics.GAL/CompareOp.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/CounterType.cs (renamed from Ryujinx.Graphics.GAL/CounterType.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/DepthMode.cs (renamed from Ryujinx.Graphics.GAL/DepthMode.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/DepthStencilMode.cs (renamed from Ryujinx.Graphics.GAL/DepthStencilMode.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/DepthTestDescriptor.cs (renamed from Ryujinx.Graphics.GAL/DepthTestDescriptor.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/DeviceInfo.cs (renamed from Ryujinx.Graphics.GAL/DeviceInfo.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/Extents2D.cs (renamed from Ryujinx.Graphics.GAL/Extents2D.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/Extents2DF.cs (renamed from Ryujinx.Graphics.GAL/Extents2DF.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/Face.cs (renamed from Ryujinx.Graphics.GAL/Face.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/Format.cs (renamed from Ryujinx.Graphics.GAL/Format.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/FrontFace.cs (renamed from Ryujinx.Graphics.GAL/FrontFace.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/HardwareInfo.cs (renamed from Ryujinx.Graphics.GAL/HardwareInfo.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/ICounterEvent.cs (renamed from Ryujinx.Graphics.GAL/ICounterEvent.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/IPipeline.cs (renamed from Ryujinx.Graphics.GAL/IPipeline.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/IProgram.cs (renamed from Ryujinx.Graphics.GAL/IProgram.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/IRenderer.cs (renamed from Ryujinx.Graphics.GAL/IRenderer.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/ISampler.cs (renamed from Ryujinx.Graphics.GAL/ISampler.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/ITexture.cs (renamed from Ryujinx.Graphics.GAL/ITexture.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/IWindow.cs (renamed from Ryujinx.Graphics.GAL/IWindow.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/ImageCrop.cs (renamed from Ryujinx.Graphics.GAL/ImageCrop.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/IndexType.cs (renamed from Ryujinx.Graphics.GAL/IndexType.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/LogicalOp.cs (renamed from Ryujinx.Graphics.GAL/LogicalOp.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/MagFilter.cs (renamed from Ryujinx.Graphics.GAL/MagFilter.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/MinFilter.cs (renamed from Ryujinx.Graphics.GAL/MinFilter.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/MultisampleDescriptor.cs (renamed from Ryujinx.Graphics.GAL/MultisampleDescriptor.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/Multithreading/BufferMap.cs (renamed from Ryujinx.Graphics.GAL/Multithreading/BufferMap.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/Multithreading/CommandHelper.cs (renamed from Ryujinx.Graphics.GAL/Multithreading/CommandHelper.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/Multithreading/CommandType.cs (renamed from Ryujinx.Graphics.GAL/Multithreading/CommandType.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/Multithreading/Commands/BarrierCommand.cs (renamed from Ryujinx.Graphics.GAL/Multithreading/Commands/BarrierCommand.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/Multithreading/Commands/BeginTransformFeedbackCommand.cs (renamed from Ryujinx.Graphics.GAL/Multithreading/Commands/BeginTransformFeedbackCommand.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/Multithreading/Commands/Buffer/BufferDisposeCommand.cs (renamed from Ryujinx.Graphics.GAL/Multithreading/Commands/Buffer/BufferDisposeCommand.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/Multithreading/Commands/Buffer/BufferGetDataCommand.cs (renamed from Ryujinx.Graphics.GAL/Multithreading/Commands/Buffer/BufferGetDataCommand.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/Multithreading/Commands/Buffer/BufferSetDataCommand.cs (renamed from Ryujinx.Graphics.GAL/Multithreading/Commands/Buffer/BufferSetDataCommand.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/Multithreading/Commands/ClearBufferCommand.cs (renamed from Ryujinx.Graphics.GAL/Multithreading/Commands/ClearBufferCommand.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/Multithreading/Commands/ClearRenderTargetColorCommand.cs (renamed from Ryujinx.Graphics.GAL/Multithreading/Commands/ClearRenderTargetColorCommand.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/Multithreading/Commands/ClearRenderTargetDepthStencilCommand.cs (renamed from Ryujinx.Graphics.GAL/Multithreading/Commands/ClearRenderTargetDepthStencilCommand.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/Multithreading/Commands/CommandBufferBarrierCommand.cs (renamed from Ryujinx.Graphics.GAL/Multithreading/Commands/CommandBufferBarrierCommand.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/Multithreading/Commands/CopyBufferCommand.cs (renamed from Ryujinx.Graphics.GAL/Multithreading/Commands/CopyBufferCommand.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/Multithreading/Commands/CounterEvent/CounterEventDisposeCommand.cs (renamed from Ryujinx.Graphics.GAL/Multithreading/Commands/CounterEvent/CounterEventDisposeCommand.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/Multithreading/Commands/CounterEvent/CounterEventFlushCommand.cs (renamed from Ryujinx.Graphics.GAL/Multithreading/Commands/CounterEvent/CounterEventFlushCommand.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/Multithreading/Commands/DispatchComputeCommand.cs (renamed from Ryujinx.Graphics.GAL/Multithreading/Commands/DispatchComputeCommand.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/Multithreading/Commands/DrawCommand.cs (renamed from Ryujinx.Graphics.GAL/Multithreading/Commands/DrawCommand.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/Multithreading/Commands/DrawIndexedCommand.cs (renamed from Ryujinx.Graphics.GAL/Multithreading/Commands/DrawIndexedCommand.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/Multithreading/Commands/DrawIndexedIndirectCommand.cs (renamed from Ryujinx.Graphics.GAL/Multithreading/Commands/DrawIndexedIndirectCommand.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/Multithreading/Commands/DrawIndexedIndirectCountCommand.cs (renamed from Ryujinx.Graphics.GAL/Multithreading/Commands/DrawIndexedIndirectCountCommand.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/Multithreading/Commands/DrawIndirectCommand.cs (renamed from Ryujinx.Graphics.GAL/Multithreading/Commands/DrawIndirectCommand.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/Multithreading/Commands/DrawIndirectCountCommand.cs (renamed from Ryujinx.Graphics.GAL/Multithreading/Commands/DrawIndirectCountCommand.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/Multithreading/Commands/DrawTextureCommand.cs (renamed from Ryujinx.Graphics.GAL/Multithreading/Commands/DrawTextureCommand.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/Multithreading/Commands/EndHostConditionalRenderingCommand.cs (renamed from Ryujinx.Graphics.GAL/Multithreading/Commands/EndHostConditionalRenderingCommand.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/Multithreading/Commands/EndTransformFeedbackCommand.cs (renamed from Ryujinx.Graphics.GAL/Multithreading/Commands/EndTransformFeedbackCommand.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/Multithreading/Commands/IGALCommand.cs (renamed from Ryujinx.Graphics.GAL/Multithreading/Commands/IGALCommand.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/Multithreading/Commands/Program/ProgramCheckLinkCommand.cs (renamed from Ryujinx.Graphics.GAL/Multithreading/Commands/Program/ProgramCheckLinkCommand.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/Multithreading/Commands/Program/ProgramDisposeCommand.cs (renamed from Ryujinx.Graphics.GAL/Multithreading/Commands/Program/ProgramDisposeCommand.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/Multithreading/Commands/Program/ProgramGetBinaryCommand.cs (renamed from Ryujinx.Graphics.GAL/Multithreading/Commands/Program/ProgramGetBinaryCommand.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/Multithreading/Commands/Renderer/ActionCommand.cs (renamed from Ryujinx.Graphics.GAL/Multithreading/Commands/Renderer/ActionCommand.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/Multithreading/Commands/Renderer/CreateBufferCommand.cs (renamed from Ryujinx.Graphics.GAL/Multithreading/Commands/Renderer/CreateBufferCommand.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/Multithreading/Commands/Renderer/CreateProgramCommand.cs (renamed from Ryujinx.Graphics.GAL/Multithreading/Commands/Renderer/CreateProgramCommand.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/Multithreading/Commands/Renderer/CreateSamplerCommand.cs (renamed from Ryujinx.Graphics.GAL/Multithreading/Commands/Renderer/CreateSamplerCommand.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/Multithreading/Commands/Renderer/CreateSyncCommand.cs (renamed from Ryujinx.Graphics.GAL/Multithreading/Commands/Renderer/CreateSyncCommand.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/Multithreading/Commands/Renderer/CreateTextureCommand.cs (renamed from Ryujinx.Graphics.GAL/Multithreading/Commands/Renderer/CreateTextureCommand.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/Multithreading/Commands/Renderer/GetCapabilitiesCommand.cs (renamed from Ryujinx.Graphics.GAL/Multithreading/Commands/Renderer/GetCapabilitiesCommand.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/Multithreading/Commands/Renderer/PreFrameCommand.cs (renamed from Ryujinx.Graphics.GAL/Multithreading/Commands/Renderer/PreFrameCommand.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/Multithreading/Commands/Renderer/ReportCounterCommand.cs (renamed from Ryujinx.Graphics.GAL/Multithreading/Commands/Renderer/ReportCounterCommand.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/Multithreading/Commands/Renderer/ResetCounterCommand.cs (renamed from Ryujinx.Graphics.GAL/Multithreading/Commands/Renderer/ResetCounterCommand.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/Multithreading/Commands/Renderer/UpdateCountersCommand.cs (renamed from Ryujinx.Graphics.GAL/Multithreading/Commands/Renderer/UpdateCountersCommand.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/Multithreading/Commands/Sampler/SamplerDisposeCommand.cs (renamed from Ryujinx.Graphics.GAL/Multithreading/Commands/Sampler/SamplerDisposeCommand.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/Multithreading/Commands/SetAlphaTestCommand.cs (renamed from Ryujinx.Graphics.GAL/Multithreading/Commands/SetAlphaTestCommand.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/Multithreading/Commands/SetBlendStateAdvancedCommand.cs (renamed from Ryujinx.Graphics.GAL/Multithreading/Commands/SetBlendStateAdvancedCommand.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/Multithreading/Commands/SetBlendStateCommand.cs (renamed from Ryujinx.Graphics.GAL/Multithreading/Commands/SetBlendStateCommand.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/Multithreading/Commands/SetDepthBiasCommand.cs (renamed from Ryujinx.Graphics.GAL/Multithreading/Commands/SetDepthBiasCommand.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/Multithreading/Commands/SetDepthClampCommand.cs (renamed from Ryujinx.Graphics.GAL/Multithreading/Commands/SetDepthClampCommand.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/Multithreading/Commands/SetDepthModeCommand.cs (renamed from Ryujinx.Graphics.GAL/Multithreading/Commands/SetDepthModeCommand.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/Multithreading/Commands/SetDepthTestCommand.cs (renamed from Ryujinx.Graphics.GAL/Multithreading/Commands/SetDepthTestCommand.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/Multithreading/Commands/SetFaceCullingCommand.cs (renamed from Ryujinx.Graphics.GAL/Multithreading/Commands/SetFaceCullingCommand.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/Multithreading/Commands/SetFrontFaceCommand.cs (renamed from Ryujinx.Graphics.GAL/Multithreading/Commands/SetFrontFaceCommand.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/Multithreading/Commands/SetImageCommand.cs (renamed from Ryujinx.Graphics.GAL/Multithreading/Commands/SetImageCommand.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/Multithreading/Commands/SetIndexBufferCommand.cs (renamed from Ryujinx.Graphics.GAL/Multithreading/Commands/SetIndexBufferCommand.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/Multithreading/Commands/SetLineParametersCommand.cs (renamed from Ryujinx.Graphics.GAL/Multithreading/Commands/SetLineParametersCommand.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/Multithreading/Commands/SetLogicOpStateCommand.cs (renamed from Ryujinx.Graphics.GAL/Multithreading/Commands/SetLogicOpStateCommand.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/Multithreading/Commands/SetMultisampleStateCommand.cs (renamed from Ryujinx.Graphics.GAL/Multithreading/Commands/SetMultisampleStateCommand.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/Multithreading/Commands/SetPatchParametersCommand.cs (renamed from Ryujinx.Graphics.GAL/Multithreading/Commands/SetPatchParametersCommand.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/Multithreading/Commands/SetPointParametersCommand.cs (renamed from Ryujinx.Graphics.GAL/Multithreading/Commands/SetPointParametersCommand.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/Multithreading/Commands/SetPolygonModeCommand.cs (renamed from Ryujinx.Graphics.GAL/Multithreading/Commands/SetPolygonModeCommand.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/Multithreading/Commands/SetPrimitiveRestartCommand.cs (renamed from Ryujinx.Graphics.GAL/Multithreading/Commands/SetPrimitiveRestartCommand.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/Multithreading/Commands/SetPrimitiveTopologyCommand.cs (renamed from Ryujinx.Graphics.GAL/Multithreading/Commands/SetPrimitiveTopologyCommand.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/Multithreading/Commands/SetProgramCommand.cs (renamed from Ryujinx.Graphics.GAL/Multithreading/Commands/SetProgramCommand.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/Multithreading/Commands/SetRasterizerDiscardCommand.cs (renamed from Ryujinx.Graphics.GAL/Multithreading/Commands/SetRasterizerDiscardCommand.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/Multithreading/Commands/SetRenderTargetColorMasksCommand.cs (renamed from Ryujinx.Graphics.GAL/Multithreading/Commands/SetRenderTargetColorMasksCommand.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/Multithreading/Commands/SetRenderTargetScaleCommand.cs (renamed from Ryujinx.Graphics.GAL/Multithreading/Commands/SetRenderTargetScaleCommand.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/Multithreading/Commands/SetRenderTargetsCommand.cs (renamed from Ryujinx.Graphics.GAL/Multithreading/Commands/SetRenderTargetsCommand.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/Multithreading/Commands/SetScissorsCommand.cs (renamed from Ryujinx.Graphics.GAL/Multithreading/Commands/SetScissorsCommand.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/Multithreading/Commands/SetStencilTestCommand.cs (renamed from Ryujinx.Graphics.GAL/Multithreading/Commands/SetStencilTestCommand.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/Multithreading/Commands/SetStorageBuffersCommand.cs (renamed from Ryujinx.Graphics.GAL/Multithreading/Commands/SetStorageBuffersCommand.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/Multithreading/Commands/SetTextureAndSamplerCommand.cs (renamed from Ryujinx.Graphics.GAL/Multithreading/Commands/SetTextureAndSamplerCommand.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/Multithreading/Commands/SetTransformFeedbackBuffersCommand.cs (renamed from Ryujinx.Graphics.GAL/Multithreading/Commands/SetTransformFeedbackBuffersCommand.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/Multithreading/Commands/SetUniformBuffersCommand.cs (renamed from Ryujinx.Graphics.GAL/Multithreading/Commands/SetUniformBuffersCommand.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/Multithreading/Commands/SetUserClipDistanceCommand.cs (renamed from Ryujinx.Graphics.GAL/Multithreading/Commands/SetUserClipDistanceCommand.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/Multithreading/Commands/SetVertexAttribsCommand.cs (renamed from Ryujinx.Graphics.GAL/Multithreading/Commands/SetVertexAttribsCommand.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/Multithreading/Commands/SetVertexBuffersCommand.cs (renamed from Ryujinx.Graphics.GAL/Multithreading/Commands/SetVertexBuffersCommand.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/Multithreading/Commands/SetViewportsCommand.cs (renamed from Ryujinx.Graphics.GAL/Multithreading/Commands/SetViewportsCommand.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/Multithreading/Commands/Texture/TextureCopyToCommand.cs (renamed from Ryujinx.Graphics.GAL/Multithreading/Commands/Texture/TextureCopyToCommand.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/Multithreading/Commands/Texture/TextureCopyToScaledCommand.cs (renamed from Ryujinx.Graphics.GAL/Multithreading/Commands/Texture/TextureCopyToScaledCommand.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/Multithreading/Commands/Texture/TextureCopyToSliceCommand.cs (renamed from Ryujinx.Graphics.GAL/Multithreading/Commands/Texture/TextureCopyToSliceCommand.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/Multithreading/Commands/Texture/TextureCreateViewCommand.cs (renamed from Ryujinx.Graphics.GAL/Multithreading/Commands/Texture/TextureCreateViewCommand.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/Multithreading/Commands/Texture/TextureGetDataCommand.cs (renamed from Ryujinx.Graphics.GAL/Multithreading/Commands/Texture/TextureGetDataCommand.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/Multithreading/Commands/Texture/TextureGetDataSliceCommand.cs (renamed from Ryujinx.Graphics.GAL/Multithreading/Commands/Texture/TextureGetDataSliceCommand.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/Multithreading/Commands/Texture/TextureReleaseCommand.cs (renamed from Ryujinx.Graphics.GAL/Multithreading/Commands/Texture/TextureReleaseCommand.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/Multithreading/Commands/Texture/TextureSetDataCommand.cs (renamed from Ryujinx.Graphics.GAL/Multithreading/Commands/Texture/TextureSetDataCommand.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/Multithreading/Commands/Texture/TextureSetDataSliceCommand.cs (renamed from Ryujinx.Graphics.GAL/Multithreading/Commands/Texture/TextureSetDataSliceCommand.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/Multithreading/Commands/Texture/TextureSetDataSliceRegionCommand.cs (renamed from Ryujinx.Graphics.GAL/Multithreading/Commands/Texture/TextureSetDataSliceRegionCommand.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/Multithreading/Commands/Texture/TextureSetStorageCommand.cs (renamed from Ryujinx.Graphics.GAL/Multithreading/Commands/Texture/TextureSetStorageCommand.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/Multithreading/Commands/TextureBarrierCommand.cs (renamed from Ryujinx.Graphics.GAL/Multithreading/Commands/TextureBarrierCommand.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/Multithreading/Commands/TextureBarrierTiledCommand.cs (renamed from Ryujinx.Graphics.GAL/Multithreading/Commands/TextureBarrierTiledCommand.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/Multithreading/Commands/TryHostConditionalRenderingCommand.cs (renamed from Ryujinx.Graphics.GAL/Multithreading/Commands/TryHostConditionalRenderingCommand.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/Multithreading/Commands/TryHostConditionalRenderingFlushCommand.cs (renamed from Ryujinx.Graphics.GAL/Multithreading/Commands/TryHostConditionalRenderingFlushCommand.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/Multithreading/Commands/UpdateRenderScaleCommand.cs (renamed from Ryujinx.Graphics.GAL/Multithreading/Commands/UpdateRenderScaleCommand.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/Multithreading/Commands/Window/WindowPresentCommand.cs (renamed from Ryujinx.Graphics.GAL/Multithreading/Commands/Window/WindowPresentCommand.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/Multithreading/Model/CircularSpanPool.cs (renamed from Ryujinx.Graphics.GAL/Multithreading/Model/CircularSpanPool.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/Multithreading/Model/ResultBox.cs (renamed from Ryujinx.Graphics.GAL/Multithreading/Model/ResultBox.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/Multithreading/Model/SpanRef.cs (renamed from Ryujinx.Graphics.GAL/Multithreading/Model/SpanRef.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/Multithreading/Model/TableRef.cs (renamed from Ryujinx.Graphics.GAL/Multithreading/Model/TableRef.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/Multithreading/Resources/ProgramQueue.cs (renamed from Ryujinx.Graphics.GAL/Multithreading/Resources/ProgramQueue.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/Multithreading/Resources/Programs/BinaryProgramRequest.cs (renamed from Ryujinx.Graphics.GAL/Multithreading/Resources/Programs/BinaryProgramRequest.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/Multithreading/Resources/Programs/IProgramRequest.cs (renamed from Ryujinx.Graphics.GAL/Multithreading/Resources/Programs/IProgramRequest.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/Multithreading/Resources/Programs/SourceProgramRequest.cs (renamed from Ryujinx.Graphics.GAL/Multithreading/Resources/Programs/SourceProgramRequest.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/Multithreading/Resources/ThreadedCounterEvent.cs (renamed from Ryujinx.Graphics.GAL/Multithreading/Resources/ThreadedCounterEvent.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/Multithreading/Resources/ThreadedProgram.cs (renamed from Ryujinx.Graphics.GAL/Multithreading/Resources/ThreadedProgram.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/Multithreading/Resources/ThreadedSampler.cs (renamed from Ryujinx.Graphics.GAL/Multithreading/Resources/ThreadedSampler.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/Multithreading/Resources/ThreadedTexture.cs (renamed from Ryujinx.Graphics.GAL/Multithreading/Resources/ThreadedTexture.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/Multithreading/SyncMap.cs (renamed from Ryujinx.Graphics.GAL/Multithreading/SyncMap.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/Multithreading/ThreadedHelpers.cs (renamed from Ryujinx.Graphics.GAL/Multithreading/ThreadedHelpers.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/Multithreading/ThreadedPipeline.cs (renamed from Ryujinx.Graphics.GAL/Multithreading/ThreadedPipeline.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/Multithreading/ThreadedRenderer.cs (renamed from Ryujinx.Graphics.GAL/Multithreading/ThreadedRenderer.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/Multithreading/ThreadedWindow.cs (renamed from Ryujinx.Graphics.GAL/Multithreading/ThreadedWindow.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/Origin.cs (renamed from Ryujinx.Graphics.GAL/Origin.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/PinnedSpan.cs (renamed from Ryujinx.Graphics.GAL/PinnedSpan.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/PolygonMode.cs (renamed from Ryujinx.Graphics.GAL/PolygonMode.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/PolygonModeMask.cs (renamed from Ryujinx.Graphics.GAL/PolygonModeMask.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/PrimitiveTopology.cs (renamed from Ryujinx.Graphics.GAL/PrimitiveTopology.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/ProgramLinkStatus.cs (renamed from Ryujinx.Graphics.GAL/ProgramLinkStatus.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/ProgramPipelineState.cs (renamed from Ryujinx.Graphics.GAL/ProgramPipelineState.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/Rectangle.cs (renamed from Ryujinx.Graphics.GAL/Rectangle.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/Ryujinx.Graphics.GAL.csproj (renamed from Ryujinx.Graphics.GAL/Ryujinx.Graphics.GAL.csproj)0
-rw-r--r--src/Ryujinx.Graphics.GAL/SamplerCreateInfo.cs (renamed from Ryujinx.Graphics.GAL/SamplerCreateInfo.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/ScreenCaptureImageInfo.cs (renamed from Ryujinx.Graphics.GAL/ScreenCaptureImageInfo.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/ShaderBindings.cs (renamed from Ryujinx.Graphics.GAL/ShaderBindings.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/ShaderInfo.cs (renamed from Ryujinx.Graphics.GAL/ShaderInfo.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/ShaderSource.cs (renamed from Ryujinx.Graphics.GAL/ShaderSource.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/StencilOp.cs (renamed from Ryujinx.Graphics.GAL/StencilOp.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/StencilTestDescriptor.cs (renamed from Ryujinx.Graphics.GAL/StencilTestDescriptor.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/SupportBufferUpdater.cs (renamed from Ryujinx.Graphics.GAL/SupportBufferUpdater.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/SwizzleComponent.cs (renamed from Ryujinx.Graphics.GAL/SwizzleComponent.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/Target.cs (renamed from Ryujinx.Graphics.GAL/Target.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/TextureCreateInfo.cs (renamed from Ryujinx.Graphics.GAL/TextureCreateInfo.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/TextureReleaseCallback.cs (renamed from Ryujinx.Graphics.GAL/TextureReleaseCallback.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/UpscaleType.cs (renamed from Ryujinx.Graphics.GAL/UpscaleType.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/VertexAttribDescriptor.cs (renamed from Ryujinx.Graphics.GAL/VertexAttribDescriptor.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/VertexBufferDescriptor.cs (renamed from Ryujinx.Graphics.GAL/VertexBufferDescriptor.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/Viewport.cs (renamed from Ryujinx.Graphics.GAL/Viewport.cs)0
-rw-r--r--src/Ryujinx.Graphics.GAL/ViewportSwizzle.cs (renamed from Ryujinx.Graphics.GAL/ViewportSwizzle.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/ClassId.cs (renamed from Ryujinx.Graphics.Gpu/ClassId.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Constants.cs (renamed from Ryujinx.Graphics.Gpu/Constants.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Engine/Compute/ComputeClass.cs (renamed from Ryujinx.Graphics.Gpu/Engine/Compute/ComputeClass.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Engine/Compute/ComputeClassState.cs (renamed from Ryujinx.Graphics.Gpu/Engine/Compute/ComputeClassState.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Engine/Compute/ComputeQmd.cs (renamed from Ryujinx.Graphics.Gpu/Engine/Compute/ComputeQmd.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Engine/ConditionalRenderEnabled.cs (renamed from Ryujinx.Graphics.Gpu/Engine/ConditionalRenderEnabled.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Engine/DeviceStateWithShadow.cs (renamed from Ryujinx.Graphics.Gpu/Engine/DeviceStateWithShadow.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Engine/Dma/DmaClass.cs (renamed from Ryujinx.Graphics.Gpu/Engine/Dma/DmaClass.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Engine/Dma/DmaClassState.cs (renamed from Ryujinx.Graphics.Gpu/Engine/Dma/DmaClassState.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Engine/Dma/DmaTexture.cs (renamed from Ryujinx.Graphics.Gpu/Engine/Dma/DmaTexture.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Engine/GPFifo/CompressedMethod.cs (renamed from Ryujinx.Graphics.Gpu/Engine/GPFifo/CompressedMethod.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Engine/GPFifo/GPEntry.cs (renamed from Ryujinx.Graphics.Gpu/Engine/GPFifo/GPEntry.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Engine/GPFifo/GPFifoClass.cs (renamed from Ryujinx.Graphics.Gpu/Engine/GPFifo/GPFifoClass.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Engine/GPFifo/GPFifoClassState.cs (renamed from Ryujinx.Graphics.Gpu/Engine/GPFifo/GPFifoClassState.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Engine/GPFifo/GPFifoDevice.cs (renamed from Ryujinx.Graphics.Gpu/Engine/GPFifo/GPFifoDevice.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Engine/GPFifo/GPFifoProcessor.cs (renamed from Ryujinx.Graphics.Gpu/Engine/GPFifo/GPFifoProcessor.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Engine/InlineToMemory/InlineToMemoryClass.cs (renamed from Ryujinx.Graphics.Gpu/Engine/InlineToMemory/InlineToMemoryClass.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Engine/InlineToMemory/InlineToMemoryClassState.cs (renamed from Ryujinx.Graphics.Gpu/Engine/InlineToMemory/InlineToMemoryClassState.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Engine/MME/AluOperation.cs (renamed from Ryujinx.Graphics.Gpu/Engine/MME/AluOperation.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Engine/MME/AluRegOperation.cs (renamed from Ryujinx.Graphics.Gpu/Engine/MME/AluRegOperation.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Engine/MME/AssignmentOperation.cs (renamed from Ryujinx.Graphics.Gpu/Engine/MME/AssignmentOperation.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Engine/MME/IMacroEE.cs (renamed from Ryujinx.Graphics.Gpu/Engine/MME/IMacroEE.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Engine/MME/Macro.cs (renamed from Ryujinx.Graphics.Gpu/Engine/MME/Macro.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Engine/MME/MacroHLE.cs (renamed from Ryujinx.Graphics.Gpu/Engine/MME/MacroHLE.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Engine/MME/MacroHLEFunctionName.cs (renamed from Ryujinx.Graphics.Gpu/Engine/MME/MacroHLEFunctionName.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Engine/MME/MacroHLETable.cs (renamed from Ryujinx.Graphics.Gpu/Engine/MME/MacroHLETable.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Engine/MME/MacroInterpreter.cs (renamed from Ryujinx.Graphics.Gpu/Engine/MME/MacroInterpreter.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Engine/MME/MacroJit.cs (renamed from Ryujinx.Graphics.Gpu/Engine/MME/MacroJit.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Engine/MME/MacroJitCompiler.cs (renamed from Ryujinx.Graphics.Gpu/Engine/MME/MacroJitCompiler.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Engine/MME/MacroJitContext.cs (renamed from Ryujinx.Graphics.Gpu/Engine/MME/MacroJitContext.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Engine/MmeShadowScratch.cs (renamed from Ryujinx.Graphics.Gpu/Engine/MmeShadowScratch.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Engine/SetMmeShadowRamControlMode.cs (renamed from Ryujinx.Graphics.Gpu/Engine/SetMmeShadowRamControlMode.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Engine/ShaderTexture.cs (renamed from Ryujinx.Graphics.Gpu/Engine/ShaderTexture.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Engine/Threed/Blender/AdvancedBlendFunctions.cs (renamed from Ryujinx.Graphics.Gpu/Engine/Threed/Blender/AdvancedBlendFunctions.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Engine/Threed/Blender/AdvancedBlendManager.cs (renamed from Ryujinx.Graphics.Gpu/Engine/Threed/Blender/AdvancedBlendManager.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Engine/Threed/Blender/AdvancedBlendPreGenTable.cs (renamed from Ryujinx.Graphics.Gpu/Engine/Threed/Blender/AdvancedBlendPreGenTable.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Engine/Threed/Blender/AdvancedBlendUcode.cs (renamed from Ryujinx.Graphics.Gpu/Engine/Threed/Blender/AdvancedBlendUcode.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Engine/Threed/Blender/UcodeAssembler.cs (renamed from Ryujinx.Graphics.Gpu/Engine/Threed/Blender/UcodeAssembler.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Engine/Threed/ConditionalRendering.cs (renamed from Ryujinx.Graphics.Gpu/Engine/Threed/ConditionalRendering.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Engine/Threed/ConstantBufferUpdater.cs (renamed from Ryujinx.Graphics.Gpu/Engine/Threed/ConstantBufferUpdater.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Engine/Threed/DrawManager.cs (renamed from Ryujinx.Graphics.Gpu/Engine/Threed/DrawManager.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Engine/Threed/DrawState.cs (renamed from Ryujinx.Graphics.Gpu/Engine/Threed/DrawState.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Engine/Threed/IbStreamer.cs (renamed from Ryujinx.Graphics.Gpu/Engine/Threed/IbStreamer.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Engine/Threed/IndirectDrawType.cs (renamed from Ryujinx.Graphics.Gpu/Engine/Threed/IndirectDrawType.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Engine/Threed/RenderTargetUpdateFlags.cs (renamed from Ryujinx.Graphics.Gpu/Engine/Threed/RenderTargetUpdateFlags.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Engine/Threed/SemaphoreUpdater.cs (renamed from Ryujinx.Graphics.Gpu/Engine/Threed/SemaphoreUpdater.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Engine/Threed/SpecializationStateUpdater.cs (renamed from Ryujinx.Graphics.Gpu/Engine/Threed/SpecializationStateUpdater.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Engine/Threed/StateUpdateTracker.cs (renamed from Ryujinx.Graphics.Gpu/Engine/Threed/StateUpdateTracker.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Engine/Threed/StateUpdater.cs (renamed from Ryujinx.Graphics.Gpu/Engine/Threed/StateUpdater.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Engine/Threed/ThreedClass.cs (renamed from Ryujinx.Graphics.Gpu/Engine/Threed/ThreedClass.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Engine/Threed/ThreedClassState.cs (renamed from Ryujinx.Graphics.Gpu/Engine/Threed/ThreedClassState.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Engine/Twod/TwodClass.cs (renamed from Ryujinx.Graphics.Gpu/Engine/Twod/TwodClass.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Engine/Twod/TwodClassState.cs (renamed from Ryujinx.Graphics.Gpu/Engine/Twod/TwodClassState.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Engine/Twod/TwodTexture.cs (renamed from Ryujinx.Graphics.Gpu/Engine/Twod/TwodTexture.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Engine/Types/Boolean32.cs (renamed from Ryujinx.Graphics.Gpu/Engine/Types/Boolean32.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Engine/Types/ColorFormat.cs (renamed from Ryujinx.Graphics.Gpu/Engine/Types/ColorFormat.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Engine/Types/GpuVa.cs (renamed from Ryujinx.Graphics.Gpu/Engine/Types/GpuVa.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Engine/Types/MemoryLayout.cs (renamed from Ryujinx.Graphics.Gpu/Engine/Types/MemoryLayout.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Engine/Types/PrimitiveType.cs (renamed from Ryujinx.Graphics.Gpu/Engine/Types/PrimitiveType.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Engine/Types/SamplerIndex.cs (renamed from Ryujinx.Graphics.Gpu/Engine/Types/SamplerIndex.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Engine/Types/SbDescriptor.cs (renamed from Ryujinx.Graphics.Gpu/Engine/Types/SbDescriptor.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Engine/Types/ZetaFormat.cs (renamed from Ryujinx.Graphics.Gpu/Engine/Types/ZetaFormat.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/GpuChannel.cs (renamed from Ryujinx.Graphics.Gpu/GpuChannel.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/GpuContext.cs (renamed from Ryujinx.Graphics.Gpu/GpuContext.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/GraphicsConfig.cs (renamed from Ryujinx.Graphics.Gpu/GraphicsConfig.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Image/AutoDeleteCache.cs (renamed from Ryujinx.Graphics.Gpu/Image/AutoDeleteCache.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Image/FormatInfo.cs (renamed from Ryujinx.Graphics.Gpu/Image/FormatInfo.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Image/FormatTable.cs (renamed from Ryujinx.Graphics.Gpu/Image/FormatTable.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Image/ITextureDescriptor.cs (renamed from Ryujinx.Graphics.Gpu/Image/ITextureDescriptor.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Image/Pool.cs (renamed from Ryujinx.Graphics.Gpu/Image/Pool.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Image/PoolCache.cs (renamed from Ryujinx.Graphics.Gpu/Image/PoolCache.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Image/ReductionFilter.cs (renamed from Ryujinx.Graphics.Gpu/Image/ReductionFilter.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Image/Sampler.cs (renamed from Ryujinx.Graphics.Gpu/Image/Sampler.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Image/SamplerDescriptor.cs (renamed from Ryujinx.Graphics.Gpu/Image/SamplerDescriptor.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Image/SamplerMinFilter.cs (renamed from Ryujinx.Graphics.Gpu/Image/SamplerMinFilter.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Image/SamplerMipFilter.cs (renamed from Ryujinx.Graphics.Gpu/Image/SamplerMipFilter.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Image/SamplerPool.cs (renamed from Ryujinx.Graphics.Gpu/Image/SamplerPool.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Image/SamplerPoolCache.cs (renamed from Ryujinx.Graphics.Gpu/Image/SamplerPoolCache.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Image/Texture.cs (renamed from Ryujinx.Graphics.Gpu/Image/Texture.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Image/TextureBindingInfo.cs (renamed from Ryujinx.Graphics.Gpu/Image/TextureBindingInfo.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Image/TextureBindingsManager.cs (renamed from Ryujinx.Graphics.Gpu/Image/TextureBindingsManager.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Image/TextureCache.cs (renamed from Ryujinx.Graphics.Gpu/Image/TextureCache.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Image/TextureCompatibility.cs (renamed from Ryujinx.Graphics.Gpu/Image/TextureCompatibility.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Image/TextureComponent.cs (renamed from Ryujinx.Graphics.Gpu/Image/TextureComponent.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Image/TextureDependency.cs (renamed from Ryujinx.Graphics.Gpu/Image/TextureDependency.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Image/TextureDescriptor.cs (renamed from Ryujinx.Graphics.Gpu/Image/TextureDescriptor.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Image/TextureDescriptorType.cs (renamed from Ryujinx.Graphics.Gpu/Image/TextureDescriptorType.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Image/TextureGroup.cs (renamed from Ryujinx.Graphics.Gpu/Image/TextureGroup.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Image/TextureGroupHandle.cs (renamed from Ryujinx.Graphics.Gpu/Image/TextureGroupHandle.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Image/TextureInfo.cs (renamed from Ryujinx.Graphics.Gpu/Image/TextureInfo.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Image/TextureManager.cs (renamed from Ryujinx.Graphics.Gpu/Image/TextureManager.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Image/TextureMatchQuality.cs (renamed from Ryujinx.Graphics.Gpu/Image/TextureMatchQuality.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Image/TextureMsaaMode.cs (renamed from Ryujinx.Graphics.Gpu/Image/TextureMsaaMode.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Image/TexturePool.cs (renamed from Ryujinx.Graphics.Gpu/Image/TexturePool.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Image/TexturePoolCache.cs (renamed from Ryujinx.Graphics.Gpu/Image/TexturePoolCache.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Image/TextureScaleMode.cs (renamed from Ryujinx.Graphics.Gpu/Image/TextureScaleMode.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Image/TextureSearchFlags.cs (renamed from Ryujinx.Graphics.Gpu/Image/TextureSearchFlags.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Image/TextureTarget.cs (renamed from Ryujinx.Graphics.Gpu/Image/TextureTarget.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Image/TextureViewCompatibility.cs (renamed from Ryujinx.Graphics.Gpu/Image/TextureViewCompatibility.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Memory/Buffer.cs (renamed from Ryujinx.Graphics.Gpu/Memory/Buffer.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Memory/BufferBounds.cs (renamed from Ryujinx.Graphics.Gpu/Memory/BufferBounds.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Memory/BufferCache.cs (renamed from Ryujinx.Graphics.Gpu/Memory/BufferCache.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Memory/BufferCacheEntry.cs (renamed from Ryujinx.Graphics.Gpu/Memory/BufferCacheEntry.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Memory/BufferManager.cs (renamed from Ryujinx.Graphics.Gpu/Memory/BufferManager.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Memory/BufferMigration.cs (renamed from Ryujinx.Graphics.Gpu/Memory/BufferMigration.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Memory/BufferModifiedRangeList.cs (renamed from Ryujinx.Graphics.Gpu/Memory/BufferModifiedRangeList.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Memory/BufferTextureBinding.cs (renamed from Ryujinx.Graphics.Gpu/Memory/BufferTextureBinding.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Memory/CounterCache.cs (renamed from Ryujinx.Graphics.Gpu/Memory/CounterCache.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Memory/GpuRegionHandle.cs (renamed from Ryujinx.Graphics.Gpu/Memory/GpuRegionHandle.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Memory/IndexBuffer.cs (renamed from Ryujinx.Graphics.Gpu/Memory/IndexBuffer.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Memory/MemoryManager.cs (renamed from Ryujinx.Graphics.Gpu/Memory/MemoryManager.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Memory/MultiRangeWritableBlock.cs (renamed from Ryujinx.Graphics.Gpu/Memory/MultiRangeWritableBlock.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Memory/PhysicalMemory.cs (renamed from Ryujinx.Graphics.Gpu/Memory/PhysicalMemory.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Memory/PteKind.cs (renamed from Ryujinx.Graphics.Gpu/Memory/PteKind.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Memory/ResourceKind.cs (renamed from Ryujinx.Graphics.Gpu/Memory/ResourceKind.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Memory/UnmapEventArgs.cs (renamed from Ryujinx.Graphics.Gpu/Memory/UnmapEventArgs.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Memory/VertexBuffer.cs (renamed from Ryujinx.Graphics.Gpu/Memory/VertexBuffer.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Ryujinx.Graphics.Gpu.csproj (renamed from Ryujinx.Graphics.Gpu/Ryujinx.Graphics.Gpu.csproj)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Shader/CachedShaderBindings.cs (renamed from Ryujinx.Graphics.Gpu/Shader/CachedShaderBindings.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Shader/CachedShaderProgram.cs (renamed from Ryujinx.Graphics.Gpu/Shader/CachedShaderProgram.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Shader/CachedShaderStage.cs (renamed from Ryujinx.Graphics.Gpu/Shader/CachedShaderStage.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Shader/ComputeShaderCacheHashTable.cs (renamed from Ryujinx.Graphics.Gpu/Shader/ComputeShaderCacheHashTable.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Shader/DiskCache/BackgroundDiskCacheWriter.cs (renamed from Ryujinx.Graphics.Gpu/Shader/DiskCache/BackgroundDiskCacheWriter.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Shader/DiskCache/BinarySerializer.cs (renamed from Ryujinx.Graphics.Gpu/Shader/DiskCache/BinarySerializer.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Shader/DiskCache/CompressionAlgorithm.cs (renamed from Ryujinx.Graphics.Gpu/Shader/DiskCache/CompressionAlgorithm.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Shader/DiskCache/DiskCacheCommon.cs (renamed from Ryujinx.Graphics.Gpu/Shader/DiskCache/DiskCacheCommon.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Shader/DiskCache/DiskCacheGpuAccessor.cs (renamed from Ryujinx.Graphics.Gpu/Shader/DiskCache/DiskCacheGpuAccessor.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Shader/DiskCache/DiskCacheGuestStorage.cs (renamed from Ryujinx.Graphics.Gpu/Shader/DiskCache/DiskCacheGuestStorage.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Shader/DiskCache/DiskCacheHostStorage.cs (renamed from Ryujinx.Graphics.Gpu/Shader/DiskCache/DiskCacheHostStorage.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Shader/DiskCache/DiskCacheLoadException.cs (renamed from Ryujinx.Graphics.Gpu/Shader/DiskCache/DiskCacheLoadException.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Shader/DiskCache/DiskCacheLoadResult.cs (renamed from Ryujinx.Graphics.Gpu/Shader/DiskCache/DiskCacheLoadResult.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Shader/DiskCache/DiskCacheOutputStreams.cs (renamed from Ryujinx.Graphics.Gpu/Shader/DiskCache/DiskCacheOutputStreams.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Shader/DiskCache/GuestCodeAndCbData.cs (renamed from Ryujinx.Graphics.Gpu/Shader/DiskCache/GuestCodeAndCbData.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Shader/DiskCache/ParallelDiskCacheLoader.cs (renamed from Ryujinx.Graphics.Gpu/Shader/DiskCache/ParallelDiskCacheLoader.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Shader/DiskCache/ShaderBinarySerializer.cs (renamed from Ryujinx.Graphics.Gpu/Shader/DiskCache/ShaderBinarySerializer.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Shader/GpuAccessor.cs (renamed from Ryujinx.Graphics.Gpu/Shader/GpuAccessor.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Shader/GpuAccessorBase.cs (renamed from Ryujinx.Graphics.Gpu/Shader/GpuAccessorBase.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Shader/GpuAccessorState.cs (renamed from Ryujinx.Graphics.Gpu/Shader/GpuAccessorState.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Shader/GpuChannelComputeState.cs (renamed from Ryujinx.Graphics.Gpu/Shader/GpuChannelComputeState.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Shader/GpuChannelGraphicsState.cs (renamed from Ryujinx.Graphics.Gpu/Shader/GpuChannelGraphicsState.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Shader/GpuChannelPoolState.cs (renamed from Ryujinx.Graphics.Gpu/Shader/GpuChannelPoolState.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Shader/HashTable/HashState.cs (renamed from Ryujinx.Graphics.Gpu/Shader/HashTable/HashState.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Shader/HashTable/IDataAccessor.cs (renamed from Ryujinx.Graphics.Gpu/Shader/HashTable/IDataAccessor.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Shader/HashTable/PartitionHashTable.cs (renamed from Ryujinx.Graphics.Gpu/Shader/HashTable/PartitionHashTable.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Shader/HashTable/PartitionedHashTable.cs (renamed from Ryujinx.Graphics.Gpu/Shader/HashTable/PartitionedHashTable.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Shader/HashTable/SmartDataAccessor.cs (renamed from Ryujinx.Graphics.Gpu/Shader/HashTable/SmartDataAccessor.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Shader/ResourceCounts.cs (renamed from Ryujinx.Graphics.Gpu/Shader/ResourceCounts.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Shader/ShaderAddresses.cs (renamed from Ryujinx.Graphics.Gpu/Shader/ShaderAddresses.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Shader/ShaderCache.cs (renamed from Ryujinx.Graphics.Gpu/Shader/ShaderCache.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Shader/ShaderCacheHashTable.cs (renamed from Ryujinx.Graphics.Gpu/Shader/ShaderCacheHashTable.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Shader/ShaderCacheState.cs (renamed from Ryujinx.Graphics.Gpu/Shader/ShaderCacheState.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Shader/ShaderCodeAccessor.cs (renamed from Ryujinx.Graphics.Gpu/Shader/ShaderCodeAccessor.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Shader/ShaderDumpPaths.cs (renamed from Ryujinx.Graphics.Gpu/Shader/ShaderDumpPaths.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Shader/ShaderDumper.cs (renamed from Ryujinx.Graphics.Gpu/Shader/ShaderDumper.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Shader/ShaderSpecializationList.cs (renamed from Ryujinx.Graphics.Gpu/Shader/ShaderSpecializationList.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Shader/ShaderSpecializationState.cs (renamed from Ryujinx.Graphics.Gpu/Shader/ShaderSpecializationState.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Shader/TransformFeedbackDescriptor.cs (renamed from Ryujinx.Graphics.Gpu/Shader/TransformFeedbackDescriptor.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Synchronization/SynchronizationManager.cs (renamed from Ryujinx.Graphics.Gpu/Synchronization/SynchronizationManager.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Synchronization/Syncpoint.cs (renamed from Ryujinx.Graphics.Gpu/Synchronization/Syncpoint.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Synchronization/SyncpointWaiterHandle.cs (renamed from Ryujinx.Graphics.Gpu/Synchronization/SyncpointWaiterHandle.cs)0
-rw-r--r--src/Ryujinx.Graphics.Gpu/Window.cs (renamed from Ryujinx.Graphics.Gpu/Window.cs)0
-rw-r--r--src/Ryujinx.Graphics.Host1x/ClassId.cs (renamed from Ryujinx.Graphics.Host1x/ClassId.cs)0
-rw-r--r--src/Ryujinx.Graphics.Host1x/Devices.cs (renamed from Ryujinx.Graphics.Host1x/Devices.cs)0
-rw-r--r--src/Ryujinx.Graphics.Host1x/Host1xClass.cs (renamed from Ryujinx.Graphics.Host1x/Host1xClass.cs)0
-rw-r--r--src/Ryujinx.Graphics.Host1x/Host1xClassRegisters.cs (renamed from Ryujinx.Graphics.Host1x/Host1xClassRegisters.cs)0
-rw-r--r--src/Ryujinx.Graphics.Host1x/Host1xDevice.cs (renamed from Ryujinx.Graphics.Host1x/Host1xDevice.cs)0
-rw-r--r--src/Ryujinx.Graphics.Host1x/OpCode.cs (renamed from Ryujinx.Graphics.Host1x/OpCode.cs)0
-rw-r--r--src/Ryujinx.Graphics.Host1x/Ryujinx.Graphics.Host1x.csproj (renamed from Ryujinx.Graphics.Host1x/Ryujinx.Graphics.Host1x.csproj)0
-rw-r--r--src/Ryujinx.Graphics.Host1x/SyncptIncrManager.cs (renamed from Ryujinx.Graphics.Host1x/SyncptIncrManager.cs)0
-rw-r--r--src/Ryujinx.Graphics.Host1x/ThiDevice.cs (renamed from Ryujinx.Graphics.Host1x/ThiDevice.cs)0
-rw-r--r--src/Ryujinx.Graphics.Host1x/ThiRegisters.cs (renamed from Ryujinx.Graphics.Host1x/ThiRegisters.cs)0
-rw-r--r--src/Ryujinx.Graphics.Nvdec.FFmpeg/FFmpegContext.cs (renamed from Ryujinx.Graphics.Nvdec.FFmpeg/FFmpegContext.cs)0
-rw-r--r--src/Ryujinx.Graphics.Nvdec.FFmpeg/H264/Decoder.cs (renamed from Ryujinx.Graphics.Nvdec.FFmpeg/H264/Decoder.cs)0
-rw-r--r--src/Ryujinx.Graphics.Nvdec.FFmpeg/H264/H264BitStreamWriter.cs (renamed from Ryujinx.Graphics.Nvdec.FFmpeg/H264/H264BitStreamWriter.cs)0
-rw-r--r--src/Ryujinx.Graphics.Nvdec.FFmpeg/H264/SpsAndPpsReconstruction.cs (renamed from Ryujinx.Graphics.Nvdec.FFmpeg/H264/SpsAndPpsReconstruction.cs)0
-rw-r--r--src/Ryujinx.Graphics.Nvdec.FFmpeg/Native/AVCodec.cs (renamed from Ryujinx.Graphics.Nvdec.FFmpeg/Native/AVCodec.cs)0
-rw-r--r--src/Ryujinx.Graphics.Nvdec.FFmpeg/Native/AVCodec501.cs (renamed from Ryujinx.Graphics.Nvdec.FFmpeg/Native/AVCodec501.cs)0
-rw-r--r--src/Ryujinx.Graphics.Nvdec.FFmpeg/Native/AVCodecContext.cs (renamed from Ryujinx.Graphics.Nvdec.FFmpeg/Native/AVCodecContext.cs)0
-rw-r--r--src/Ryujinx.Graphics.Nvdec.FFmpeg/Native/AVCodecID.cs (renamed from Ryujinx.Graphics.Nvdec.FFmpeg/Native/AVCodecID.cs)0
-rw-r--r--src/Ryujinx.Graphics.Nvdec.FFmpeg/Native/AVFrame.cs (renamed from Ryujinx.Graphics.Nvdec.FFmpeg/Native/AVFrame.cs)0
-rw-r--r--src/Ryujinx.Graphics.Nvdec.FFmpeg/Native/AVLog.cs (renamed from Ryujinx.Graphics.Nvdec.FFmpeg/Native/AVLog.cs)0
-rw-r--r--src/Ryujinx.Graphics.Nvdec.FFmpeg/Native/AVPacket.cs (renamed from Ryujinx.Graphics.Nvdec.FFmpeg/Native/AVPacket.cs)0
-rw-r--r--src/Ryujinx.Graphics.Nvdec.FFmpeg/Native/AVRational.cs (renamed from Ryujinx.Graphics.Nvdec.FFmpeg/Native/AVRational.cs)0
-rw-r--r--src/Ryujinx.Graphics.Nvdec.FFmpeg/Native/FFCodec.cs (renamed from Ryujinx.Graphics.Nvdec.FFmpeg/Native/FFCodec.cs)0
-rw-r--r--src/Ryujinx.Graphics.Nvdec.FFmpeg/Native/FFCodecLegacy.cs (renamed from Ryujinx.Graphics.Nvdec.FFmpeg/Native/FFCodecLegacy.cs)0
-rw-r--r--src/Ryujinx.Graphics.Nvdec.FFmpeg/Native/FFmpegApi.cs (renamed from Ryujinx.Graphics.Nvdec.FFmpeg/Native/FFmpegApi.cs)0
-rw-r--r--src/Ryujinx.Graphics.Nvdec.FFmpeg/Ryujinx.Graphics.Nvdec.FFmpeg.csproj (renamed from Ryujinx.Graphics.Nvdec.FFmpeg/Ryujinx.Graphics.Nvdec.FFmpeg.csproj)0
-rw-r--r--src/Ryujinx.Graphics.Nvdec.FFmpeg/Surface.cs (renamed from Ryujinx.Graphics.Nvdec.FFmpeg/Surface.cs)0
-rw-r--r--src/Ryujinx.Graphics.Nvdec.FFmpeg/Vp8/Decoder.cs (renamed from Ryujinx.Graphics.Nvdec.FFmpeg/Vp8/Decoder.cs)0
-rw-r--r--src/Ryujinx.Graphics.Nvdec.Vp9/BitDepth.cs (renamed from Ryujinx.Graphics.Nvdec.Vp9/BitDepth.cs)0
-rw-r--r--src/Ryujinx.Graphics.Nvdec.Vp9/CodecErr.cs (renamed from Ryujinx.Graphics.Nvdec.Vp9/CodecErr.cs)0
-rw-r--r--src/Ryujinx.Graphics.Nvdec.Vp9/Common/BitUtils.cs (renamed from Ryujinx.Graphics.Nvdec.Vp9/Common/BitUtils.cs)0
-rw-r--r--src/Ryujinx.Graphics.Nvdec.Vp9/Common/MemoryAllocator.cs (renamed from Ryujinx.Graphics.Nvdec.Vp9/Common/MemoryAllocator.cs)0
-rw-r--r--src/Ryujinx.Graphics.Nvdec.Vp9/Common/MemoryUtil.cs (renamed from Ryujinx.Graphics.Nvdec.Vp9/Common/MemoryUtil.cs)0
-rw-r--r--src/Ryujinx.Graphics.Nvdec.Vp9/Constants.cs (renamed from Ryujinx.Graphics.Nvdec.Vp9/Constants.cs)0
-rw-r--r--src/Ryujinx.Graphics.Nvdec.Vp9/DecodeFrame.cs (renamed from Ryujinx.Graphics.Nvdec.Vp9/DecodeFrame.cs)0
-rw-r--r--src/Ryujinx.Graphics.Nvdec.Vp9/DecodeMv.cs (renamed from Ryujinx.Graphics.Nvdec.Vp9/DecodeMv.cs)0
-rw-r--r--src/Ryujinx.Graphics.Nvdec.Vp9/Decoder.cs (renamed from Ryujinx.Graphics.Nvdec.Vp9/Decoder.cs)0
-rw-r--r--src/Ryujinx.Graphics.Nvdec.Vp9/Detokenize.cs (renamed from Ryujinx.Graphics.Nvdec.Vp9/Detokenize.cs)0
-rw-r--r--src/Ryujinx.Graphics.Nvdec.Vp9/Dsp/Convolve.cs (renamed from Ryujinx.Graphics.Nvdec.Vp9/Dsp/Convolve.cs)0
-rw-r--r--src/Ryujinx.Graphics.Nvdec.Vp9/Dsp/Filter.cs (renamed from Ryujinx.Graphics.Nvdec.Vp9/Dsp/Filter.cs)0
-rw-r--r--src/Ryujinx.Graphics.Nvdec.Vp9/Dsp/IntraPred.cs (renamed from Ryujinx.Graphics.Nvdec.Vp9/Dsp/IntraPred.cs)0
-rw-r--r--src/Ryujinx.Graphics.Nvdec.Vp9/Dsp/InvTxfm.cs (renamed from Ryujinx.Graphics.Nvdec.Vp9/Dsp/InvTxfm.cs)0
-rw-r--r--src/Ryujinx.Graphics.Nvdec.Vp9/Dsp/Prob.cs (renamed from Ryujinx.Graphics.Nvdec.Vp9/Dsp/Prob.cs)0
-rw-r--r--src/Ryujinx.Graphics.Nvdec.Vp9/Dsp/Reader.cs (renamed from Ryujinx.Graphics.Nvdec.Vp9/Dsp/Reader.cs)0
-rw-r--r--src/Ryujinx.Graphics.Nvdec.Vp9/Dsp/TxfmCommon.cs (renamed from Ryujinx.Graphics.Nvdec.Vp9/Dsp/TxfmCommon.cs)0
-rw-r--r--src/Ryujinx.Graphics.Nvdec.Vp9/Idct.cs (renamed from Ryujinx.Graphics.Nvdec.Vp9/Idct.cs)0
-rw-r--r--src/Ryujinx.Graphics.Nvdec.Vp9/InternalErrorException.cs (renamed from Ryujinx.Graphics.Nvdec.Vp9/InternalErrorException.cs)0
-rw-r--r--src/Ryujinx.Graphics.Nvdec.Vp9/InternalErrorInfo.cs (renamed from Ryujinx.Graphics.Nvdec.Vp9/InternalErrorInfo.cs)0
-rw-r--r--src/Ryujinx.Graphics.Nvdec.Vp9/LoopFilter.cs (renamed from Ryujinx.Graphics.Nvdec.Vp9/LoopFilter.cs)0
-rw-r--r--src/Ryujinx.Graphics.Nvdec.Vp9/Luts.cs (renamed from Ryujinx.Graphics.Nvdec.Vp9/Luts.cs)0
-rw-r--r--src/Ryujinx.Graphics.Nvdec.Vp9/PredCommon.cs (renamed from Ryujinx.Graphics.Nvdec.Vp9/PredCommon.cs)0
-rw-r--r--src/Ryujinx.Graphics.Nvdec.Vp9/QuantCommon.cs (renamed from Ryujinx.Graphics.Nvdec.Vp9/QuantCommon.cs)0
-rw-r--r--src/Ryujinx.Graphics.Nvdec.Vp9/ReconInter.cs (renamed from Ryujinx.Graphics.Nvdec.Vp9/ReconInter.cs)0
-rw-r--r--src/Ryujinx.Graphics.Nvdec.Vp9/ReconIntra.cs (renamed from Ryujinx.Graphics.Nvdec.Vp9/ReconIntra.cs)0
-rw-r--r--src/Ryujinx.Graphics.Nvdec.Vp9/Ryujinx.Graphics.Nvdec.Vp9.csproj (renamed from Ryujinx.Graphics.Nvdec.Vp9/Ryujinx.Graphics.Nvdec.Vp9.csproj)0
-rw-r--r--src/Ryujinx.Graphics.Nvdec.Vp9/TileBuffer.cs (renamed from Ryujinx.Graphics.Nvdec.Vp9/TileBuffer.cs)0
-rw-r--r--src/Ryujinx.Graphics.Nvdec.Vp9/TileWorkerData.cs (renamed from Ryujinx.Graphics.Nvdec.Vp9/TileWorkerData.cs)0
-rw-r--r--src/Ryujinx.Graphics.Nvdec.Vp9/Types/BModeInfo.cs (renamed from Ryujinx.Graphics.Nvdec.Vp9/Types/BModeInfo.cs)0
-rw-r--r--src/Ryujinx.Graphics.Nvdec.Vp9/Types/BlockSize.cs (renamed from Ryujinx.Graphics.Nvdec.Vp9/Types/BlockSize.cs)0
-rw-r--r--src/Ryujinx.Graphics.Nvdec.Vp9/Types/Buf2D.cs (renamed from Ryujinx.Graphics.Nvdec.Vp9/Types/Buf2D.cs)0
-rw-r--r--src/Ryujinx.Graphics.Nvdec.Vp9/Types/FrameType.cs (renamed from Ryujinx.Graphics.Nvdec.Vp9/Types/FrameType.cs)0
-rw-r--r--src/Ryujinx.Graphics.Nvdec.Vp9/Types/LoopFilter.cs (renamed from Ryujinx.Graphics.Nvdec.Vp9/Types/LoopFilter.cs)0
-rw-r--r--src/Ryujinx.Graphics.Nvdec.Vp9/Types/LoopFilterInfoN.cs (renamed from Ryujinx.Graphics.Nvdec.Vp9/Types/LoopFilterInfoN.cs)0
-rw-r--r--src/Ryujinx.Graphics.Nvdec.Vp9/Types/LoopFilterMask.cs (renamed from Ryujinx.Graphics.Nvdec.Vp9/Types/LoopFilterMask.cs)0
-rw-r--r--src/Ryujinx.Graphics.Nvdec.Vp9/Types/LoopFilterThresh.cs (renamed from Ryujinx.Graphics.Nvdec.Vp9/Types/LoopFilterThresh.cs)0
-rw-r--r--src/Ryujinx.Graphics.Nvdec.Vp9/Types/MacroBlockD.cs (renamed from Ryujinx.Graphics.Nvdec.Vp9/Types/MacroBlockD.cs)0
-rw-r--r--src/Ryujinx.Graphics.Nvdec.Vp9/Types/MacroBlockDPlane.cs (renamed from Ryujinx.Graphics.Nvdec.Vp9/Types/MacroBlockDPlane.cs)0
-rw-r--r--src/Ryujinx.Graphics.Nvdec.Vp9/Types/ModeInfo.cs (renamed from Ryujinx.Graphics.Nvdec.Vp9/Types/ModeInfo.cs)0
-rw-r--r--src/Ryujinx.Graphics.Nvdec.Vp9/Types/MotionVectorContext.cs (renamed from Ryujinx.Graphics.Nvdec.Vp9/Types/MotionVectorContext.cs)0
-rw-r--r--src/Ryujinx.Graphics.Nvdec.Vp9/Types/Mv.cs (renamed from Ryujinx.Graphics.Nvdec.Vp9/Types/Mv.cs)0
-rw-r--r--src/Ryujinx.Graphics.Nvdec.Vp9/Types/Mv32.cs (renamed from Ryujinx.Graphics.Nvdec.Vp9/Types/Mv32.cs)0
-rw-r--r--src/Ryujinx.Graphics.Nvdec.Vp9/Types/MvClassType.cs (renamed from Ryujinx.Graphics.Nvdec.Vp9/Types/MvClassType.cs)0
-rw-r--r--src/Ryujinx.Graphics.Nvdec.Vp9/Types/MvJointType.cs (renamed from Ryujinx.Graphics.Nvdec.Vp9/Types/MvJointType.cs)0
-rw-r--r--src/Ryujinx.Graphics.Nvdec.Vp9/Types/MvRef.cs (renamed from Ryujinx.Graphics.Nvdec.Vp9/Types/MvRef.cs)0
-rw-r--r--src/Ryujinx.Graphics.Nvdec.Vp9/Types/PartitionType.cs (renamed from Ryujinx.Graphics.Nvdec.Vp9/Types/PartitionType.cs)0
-rw-r--r--src/Ryujinx.Graphics.Nvdec.Vp9/Types/PlaneType.cs (renamed from Ryujinx.Graphics.Nvdec.Vp9/Types/PlaneType.cs)0
-rw-r--r--src/Ryujinx.Graphics.Nvdec.Vp9/Types/Position.cs (renamed from Ryujinx.Graphics.Nvdec.Vp9/Types/Position.cs)0
-rw-r--r--src/Ryujinx.Graphics.Nvdec.Vp9/Types/PredictionMode.cs (renamed from Ryujinx.Graphics.Nvdec.Vp9/Types/PredictionMode.cs)0
-rw-r--r--src/Ryujinx.Graphics.Nvdec.Vp9/Types/RefBuffer.cs (renamed from Ryujinx.Graphics.Nvdec.Vp9/Types/RefBuffer.cs)0
-rw-r--r--src/Ryujinx.Graphics.Nvdec.Vp9/Types/ReferenceMode.cs (renamed from Ryujinx.Graphics.Nvdec.Vp9/Types/ReferenceMode.cs)0
-rw-r--r--src/Ryujinx.Graphics.Nvdec.Vp9/Types/ScaleFactors.cs (renamed from Ryujinx.Graphics.Nvdec.Vp9/Types/ScaleFactors.cs)0
-rw-r--r--src/Ryujinx.Graphics.Nvdec.Vp9/Types/SegLvlFeatures.cs (renamed from Ryujinx.Graphics.Nvdec.Vp9/Types/SegLvlFeatures.cs)0
-rw-r--r--src/Ryujinx.Graphics.Nvdec.Vp9/Types/Segmentation.cs (renamed from Ryujinx.Graphics.Nvdec.Vp9/Types/Segmentation.cs)0
-rw-r--r--src/Ryujinx.Graphics.Nvdec.Vp9/Types/Surface.cs (renamed from Ryujinx.Graphics.Nvdec.Vp9/Types/Surface.cs)0
-rw-r--r--src/Ryujinx.Graphics.Nvdec.Vp9/Types/TileInfo.cs (renamed from Ryujinx.Graphics.Nvdec.Vp9/Types/TileInfo.cs)0
-rw-r--r--src/Ryujinx.Graphics.Nvdec.Vp9/Types/TxMode.cs (renamed from Ryujinx.Graphics.Nvdec.Vp9/Types/TxMode.cs)0
-rw-r--r--src/Ryujinx.Graphics.Nvdec.Vp9/Types/TxSize.cs (renamed from Ryujinx.Graphics.Nvdec.Vp9/Types/TxSize.cs)0
-rw-r--r--src/Ryujinx.Graphics.Nvdec.Vp9/Types/TxType.cs (renamed from Ryujinx.Graphics.Nvdec.Vp9/Types/TxType.cs)0
-rw-r--r--src/Ryujinx.Graphics.Nvdec.Vp9/Types/Vp9Common.cs (renamed from Ryujinx.Graphics.Nvdec.Vp9/Types/Vp9Common.cs)0
-rw-r--r--src/Ryujinx.Graphics.Nvdec/ApplicationId.cs (renamed from Ryujinx.Graphics.Nvdec/ApplicationId.cs)0
-rw-r--r--src/Ryujinx.Graphics.Nvdec/H264Decoder.cs (renamed from Ryujinx.Graphics.Nvdec/H264Decoder.cs)0
-rw-r--r--src/Ryujinx.Graphics.Nvdec/Image/SurfaceCache.cs (renamed from Ryujinx.Graphics.Nvdec/Image/SurfaceCache.cs)0
-rw-r--r--src/Ryujinx.Graphics.Nvdec/Image/SurfaceCommon.cs (renamed from Ryujinx.Graphics.Nvdec/Image/SurfaceCommon.cs)0
-rw-r--r--src/Ryujinx.Graphics.Nvdec/Image/SurfaceReader.cs (renamed from Ryujinx.Graphics.Nvdec/Image/SurfaceReader.cs)0
-rw-r--r--src/Ryujinx.Graphics.Nvdec/Image/SurfaceWriter.cs (renamed from Ryujinx.Graphics.Nvdec/Image/SurfaceWriter.cs)0
-rw-r--r--src/Ryujinx.Graphics.Nvdec/MemoryExtensions.cs (renamed from Ryujinx.Graphics.Nvdec/MemoryExtensions.cs)0
-rw-r--r--src/Ryujinx.Graphics.Nvdec/NvdecDecoderContext.cs (renamed from Ryujinx.Graphics.Nvdec/NvdecDecoderContext.cs)0
-rw-r--r--src/Ryujinx.Graphics.Nvdec/NvdecDevice.cs (renamed from Ryujinx.Graphics.Nvdec/NvdecDevice.cs)0
-rw-r--r--src/Ryujinx.Graphics.Nvdec/NvdecRegisters.cs (renamed from Ryujinx.Graphics.Nvdec/NvdecRegisters.cs)0
-rw-r--r--src/Ryujinx.Graphics.Nvdec/NvdecStatus.cs (renamed from Ryujinx.Graphics.Nvdec/NvdecStatus.cs)0
-rw-r--r--src/Ryujinx.Graphics.Nvdec/ResourceManager.cs (renamed from Ryujinx.Graphics.Nvdec/ResourceManager.cs)0
-rw-r--r--src/Ryujinx.Graphics.Nvdec/Ryujinx.Graphics.Nvdec.csproj (renamed from Ryujinx.Graphics.Nvdec/Ryujinx.Graphics.Nvdec.csproj)0
-rw-r--r--src/Ryujinx.Graphics.Nvdec/Types/H264/PictureInfo.cs (renamed from Ryujinx.Graphics.Nvdec/Types/H264/PictureInfo.cs)0
-rw-r--r--src/Ryujinx.Graphics.Nvdec/Types/H264/ReferenceFrame.cs (renamed from Ryujinx.Graphics.Nvdec/Types/H264/ReferenceFrame.cs)0
-rw-r--r--src/Ryujinx.Graphics.Nvdec/Types/Vp8/PictureInfo.cs (renamed from Ryujinx.Graphics.Nvdec/Types/Vp8/PictureInfo.cs)0
-rw-r--r--src/Ryujinx.Graphics.Nvdec/Types/Vp9/BackwardUpdates.cs (renamed from Ryujinx.Graphics.Nvdec/Types/Vp9/BackwardUpdates.cs)0
-rw-r--r--src/Ryujinx.Graphics.Nvdec/Types/Vp9/EntropyProbs.cs (renamed from Ryujinx.Graphics.Nvdec/Types/Vp9/EntropyProbs.cs)0
-rw-r--r--src/Ryujinx.Graphics.Nvdec/Types/Vp9/FrameFlags.cs (renamed from Ryujinx.Graphics.Nvdec/Types/Vp9/FrameFlags.cs)0
-rw-r--r--src/Ryujinx.Graphics.Nvdec/Types/Vp9/FrameSize.cs (renamed from Ryujinx.Graphics.Nvdec/Types/Vp9/FrameSize.cs)0
-rw-r--r--src/Ryujinx.Graphics.Nvdec/Types/Vp9/FrameStats.cs (renamed from Ryujinx.Graphics.Nvdec/Types/Vp9/FrameStats.cs)0
-rw-r--r--src/Ryujinx.Graphics.Nvdec/Types/Vp9/LoopFilter.cs (renamed from Ryujinx.Graphics.Nvdec/Types/Vp9/LoopFilter.cs)0
-rw-r--r--src/Ryujinx.Graphics.Nvdec/Types/Vp9/PictureInfo.cs (renamed from Ryujinx.Graphics.Nvdec/Types/Vp9/PictureInfo.cs)0
-rw-r--r--src/Ryujinx.Graphics.Nvdec/Types/Vp9/Segmentation.cs (renamed from Ryujinx.Graphics.Nvdec/Types/Vp9/Segmentation.cs)0
-rw-r--r--src/Ryujinx.Graphics.Nvdec/Vp8Decoder.cs (renamed from Ryujinx.Graphics.Nvdec/Vp8Decoder.cs)0
-rw-r--r--src/Ryujinx.Graphics.Nvdec/Vp9Decoder.cs (renamed from Ryujinx.Graphics.Nvdec/Vp9Decoder.cs)0
-rw-r--r--src/Ryujinx.Graphics.OpenGL/BackgroundContextWorker.cs (renamed from Ryujinx.Graphics.OpenGL/BackgroundContextWorker.cs)0
-rw-r--r--src/Ryujinx.Graphics.OpenGL/Buffer.cs (renamed from Ryujinx.Graphics.OpenGL/Buffer.cs)0
-rw-r--r--src/Ryujinx.Graphics.OpenGL/Constants.cs (renamed from Ryujinx.Graphics.OpenGL/Constants.cs)0
-rw-r--r--src/Ryujinx.Graphics.OpenGL/Debugger.cs (renamed from Ryujinx.Graphics.OpenGL/Debugger.cs)0
-rw-r--r--src/Ryujinx.Graphics.OpenGL/DrawTextureEmulation.cs (renamed from Ryujinx.Graphics.OpenGL/DrawTextureEmulation.cs)0
-rw-r--r--src/Ryujinx.Graphics.OpenGL/Effects/FsrScalingFilter.cs (renamed from Ryujinx.Graphics.OpenGL/Effects/FsrScalingFilter.cs)0
-rw-r--r--src/Ryujinx.Graphics.OpenGL/Effects/FxaaPostProcessingEffect.cs (renamed from Ryujinx.Graphics.OpenGL/Effects/FxaaPostProcessingEffect.cs)0
-rw-r--r--src/Ryujinx.Graphics.OpenGL/Effects/IPostProcessingEffect.cs (renamed from Ryujinx.Graphics.OpenGL/Effects/IPostProcessingEffect.cs)0
-rw-r--r--src/Ryujinx.Graphics.OpenGL/Effects/IScalingFilter.cs (renamed from Ryujinx.Graphics.OpenGL/Effects/IScalingFilter.cs)0
-rw-r--r--src/Ryujinx.Graphics.OpenGL/Effects/ShaderHelper.cs (renamed from Ryujinx.Graphics.OpenGL/Effects/ShaderHelper.cs)0
-rw-r--r--src/Ryujinx.Graphics.OpenGL/Effects/Shaders/ffx_a.h (renamed from Ryujinx.Graphics.OpenGL/Effects/Shaders/ffx_a.h)0
-rw-r--r--src/Ryujinx.Graphics.OpenGL/Effects/Shaders/ffx_fsr1.h (renamed from Ryujinx.Graphics.OpenGL/Effects/Shaders/ffx_fsr1.h)0
-rw-r--r--src/Ryujinx.Graphics.OpenGL/Effects/Shaders/fsr_scaling.glsl (renamed from Ryujinx.Graphics.OpenGL/Effects/Shaders/fsr_scaling.glsl)0
-rw-r--r--src/Ryujinx.Graphics.OpenGL/Effects/Shaders/fsr_sharpening.glsl (renamed from Ryujinx.Graphics.OpenGL/Effects/Shaders/fsr_sharpening.glsl)0
-rw-r--r--src/Ryujinx.Graphics.OpenGL/Effects/Shaders/fxaa.glsl (renamed from Ryujinx.Graphics.OpenGL/Effects/Shaders/fxaa.glsl)0
-rw-r--r--src/Ryujinx.Graphics.OpenGL/Effects/Shaders/smaa.hlsl (renamed from Ryujinx.Graphics.OpenGL/Effects/Shaders/smaa.hlsl)0
-rw-r--r--src/Ryujinx.Graphics.OpenGL/Effects/Shaders/smaa_blend.glsl (renamed from Ryujinx.Graphics.OpenGL/Effects/Shaders/smaa_blend.glsl)0
-rw-r--r--src/Ryujinx.Graphics.OpenGL/Effects/Shaders/smaa_edge.glsl (renamed from Ryujinx.Graphics.OpenGL/Effects/Shaders/smaa_edge.glsl)0
-rw-r--r--src/Ryujinx.Graphics.OpenGL/Effects/Shaders/smaa_neighbour.glsl (renamed from Ryujinx.Graphics.OpenGL/Effects/Shaders/smaa_neighbour.glsl)0
-rw-r--r--src/Ryujinx.Graphics.OpenGL/Effects/SmaaPostProcessingEffect.cs (renamed from Ryujinx.Graphics.OpenGL/Effects/SmaaPostProcessingEffect.cs)0
-rw-r--r--src/Ryujinx.Graphics.OpenGL/Effects/Textures/SmaaAreaTexture.bin (renamed from Ryujinx.Graphics.OpenGL/Effects/Textures/SmaaAreaTexture.bin)bin179200 -> 179200 bytes
-rw-r--r--src/Ryujinx.Graphics.OpenGL/Effects/Textures/SmaaSearchTexture.bin (renamed from Ryujinx.Graphics.OpenGL/Effects/Textures/SmaaSearchTexture.bin)bin1024 -> 1024 bytes
-rw-r--r--src/Ryujinx.Graphics.OpenGL/EnumConversion.cs (renamed from Ryujinx.Graphics.OpenGL/EnumConversion.cs)0
-rw-r--r--src/Ryujinx.Graphics.OpenGL/FormatInfo.cs (renamed from Ryujinx.Graphics.OpenGL/FormatInfo.cs)0
-rw-r--r--src/Ryujinx.Graphics.OpenGL/FormatTable.cs (renamed from Ryujinx.Graphics.OpenGL/FormatTable.cs)0
-rw-r--r--src/Ryujinx.Graphics.OpenGL/Framebuffer.cs (renamed from Ryujinx.Graphics.OpenGL/Framebuffer.cs)0
-rw-r--r--src/Ryujinx.Graphics.OpenGL/Handle.cs (renamed from Ryujinx.Graphics.OpenGL/Handle.cs)0
-rw-r--r--src/Ryujinx.Graphics.OpenGL/Helper/GLXHelper.cs (renamed from Ryujinx.Graphics.OpenGL/Helper/GLXHelper.cs)0
-rw-r--r--src/Ryujinx.Graphics.OpenGL/Helper/WGLHelper.cs (renamed from Ryujinx.Graphics.OpenGL/Helper/WGLHelper.cs)0
-rw-r--r--src/Ryujinx.Graphics.OpenGL/HwCapabilities.cs (renamed from Ryujinx.Graphics.OpenGL/HwCapabilities.cs)0
-rw-r--r--src/Ryujinx.Graphics.OpenGL/IOpenGLContext.cs (renamed from Ryujinx.Graphics.OpenGL/IOpenGLContext.cs)0
-rw-r--r--src/Ryujinx.Graphics.OpenGL/Image/FormatConverter.cs (renamed from Ryujinx.Graphics.OpenGL/Image/FormatConverter.cs)0
-rw-r--r--src/Ryujinx.Graphics.OpenGL/Image/ITextureInfo.cs (renamed from Ryujinx.Graphics.OpenGL/Image/ITextureInfo.cs)0
-rw-r--r--src/Ryujinx.Graphics.OpenGL/Image/IntermmediatePool.cs (renamed from Ryujinx.Graphics.OpenGL/Image/IntermmediatePool.cs)0
-rw-r--r--src/Ryujinx.Graphics.OpenGL/Image/Sampler.cs (renamed from Ryujinx.Graphics.OpenGL/Image/Sampler.cs)0
-rw-r--r--src/Ryujinx.Graphics.OpenGL/Image/TextureBase.cs (renamed from Ryujinx.Graphics.OpenGL/Image/TextureBase.cs)0
-rw-r--r--src/Ryujinx.Graphics.OpenGL/Image/TextureBuffer.cs (renamed from Ryujinx.Graphics.OpenGL/Image/TextureBuffer.cs)0
-rw-r--r--src/Ryujinx.Graphics.OpenGL/Image/TextureCopy.cs (renamed from Ryujinx.Graphics.OpenGL/Image/TextureCopy.cs)0
-rw-r--r--src/Ryujinx.Graphics.OpenGL/Image/TextureCopyIncompatible.cs (renamed from Ryujinx.Graphics.OpenGL/Image/TextureCopyIncompatible.cs)0
-rw-r--r--src/Ryujinx.Graphics.OpenGL/Image/TextureCopyMS.cs (renamed from Ryujinx.Graphics.OpenGL/Image/TextureCopyMS.cs)0
-rw-r--r--src/Ryujinx.Graphics.OpenGL/Image/TextureStorage.cs (renamed from Ryujinx.Graphics.OpenGL/Image/TextureStorage.cs)0
-rw-r--r--src/Ryujinx.Graphics.OpenGL/Image/TextureView.cs (renamed from Ryujinx.Graphics.OpenGL/Image/TextureView.cs)0
-rw-r--r--src/Ryujinx.Graphics.OpenGL/OpenGLRenderer.cs (renamed from Ryujinx.Graphics.OpenGL/OpenGLRenderer.cs)0
-rw-r--r--src/Ryujinx.Graphics.OpenGL/PersistentBuffers.cs (renamed from Ryujinx.Graphics.OpenGL/PersistentBuffers.cs)0
-rw-r--r--src/Ryujinx.Graphics.OpenGL/Pipeline.cs (renamed from Ryujinx.Graphics.OpenGL/Pipeline.cs)0
-rw-r--r--src/Ryujinx.Graphics.OpenGL/Program.cs (renamed from Ryujinx.Graphics.OpenGL/Program.cs)0
-rw-r--r--src/Ryujinx.Graphics.OpenGL/Queries/BufferedQuery.cs (renamed from Ryujinx.Graphics.OpenGL/Queries/BufferedQuery.cs)0
-rw-r--r--src/Ryujinx.Graphics.OpenGL/Queries/CounterQueue.cs (renamed from Ryujinx.Graphics.OpenGL/Queries/CounterQueue.cs)0
-rw-r--r--src/Ryujinx.Graphics.OpenGL/Queries/CounterQueueEvent.cs (renamed from Ryujinx.Graphics.OpenGL/Queries/CounterQueueEvent.cs)0
-rw-r--r--src/Ryujinx.Graphics.OpenGL/Queries/Counters.cs (renamed from Ryujinx.Graphics.OpenGL/Queries/Counters.cs)0
-rw-r--r--src/Ryujinx.Graphics.OpenGL/ResourcePool.cs (renamed from Ryujinx.Graphics.OpenGL/ResourcePool.cs)0
-rw-r--r--src/Ryujinx.Graphics.OpenGL/Ryujinx.Graphics.OpenGL.csproj (renamed from Ryujinx.Graphics.OpenGL/Ryujinx.Graphics.OpenGL.csproj)0
-rw-r--r--src/Ryujinx.Graphics.OpenGL/Sync.cs (renamed from Ryujinx.Graphics.OpenGL/Sync.cs)0
-rw-r--r--src/Ryujinx.Graphics.OpenGL/VertexArray.cs (renamed from Ryujinx.Graphics.OpenGL/VertexArray.cs)0
-rw-r--r--src/Ryujinx.Graphics.OpenGL/Window.cs (renamed from Ryujinx.Graphics.OpenGL/Window.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/AlphaTestOp.cs (renamed from Ryujinx.Graphics.Shader/AlphaTestOp.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/AttributeType.cs (renamed from Ryujinx.Graphics.Shader/AttributeType.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/BufferDescriptor.cs (renamed from Ryujinx.Graphics.Shader/BufferDescriptor.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/BufferUsageFlags.cs (renamed from Ryujinx.Graphics.Shader/BufferUsageFlags.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/CodeGen/Glsl/CodeGenContext.cs (renamed from Ryujinx.Graphics.Shader/CodeGen/Glsl/CodeGenContext.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/CodeGen/Glsl/Declarations.cs (renamed from Ryujinx.Graphics.Shader/CodeGen/Glsl/Declarations.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/CodeGen/Glsl/DefaultNames.cs (renamed from Ryujinx.Graphics.Shader/CodeGen/Glsl/DefaultNames.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/CodeGen/Glsl/GlslGenerator.cs (renamed from Ryujinx.Graphics.Shader/CodeGen/Glsl/GlslGenerator.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/CodeGen/Glsl/HelperFunctions/AtomicMinMaxS32Shared.glsl (renamed from Ryujinx.Graphics.Shader/CodeGen/Glsl/HelperFunctions/AtomicMinMaxS32Shared.glsl)0
-rw-r--r--src/Ryujinx.Graphics.Shader/CodeGen/Glsl/HelperFunctions/AtomicMinMaxS32Storage.glsl (renamed from Ryujinx.Graphics.Shader/CodeGen/Glsl/HelperFunctions/AtomicMinMaxS32Storage.glsl)0
-rw-r--r--src/Ryujinx.Graphics.Shader/CodeGen/Glsl/HelperFunctions/HelperFunctionNames.cs (renamed from Ryujinx.Graphics.Shader/CodeGen/Glsl/HelperFunctions/HelperFunctionNames.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/CodeGen/Glsl/HelperFunctions/MultiplyHighS32.glsl (renamed from Ryujinx.Graphics.Shader/CodeGen/Glsl/HelperFunctions/MultiplyHighS32.glsl)0
-rw-r--r--src/Ryujinx.Graphics.Shader/CodeGen/Glsl/HelperFunctions/MultiplyHighU32.glsl (renamed from Ryujinx.Graphics.Shader/CodeGen/Glsl/HelperFunctions/MultiplyHighU32.glsl)0
-rw-r--r--src/Ryujinx.Graphics.Shader/CodeGen/Glsl/HelperFunctions/Shuffle.glsl (renamed from Ryujinx.Graphics.Shader/CodeGen/Glsl/HelperFunctions/Shuffle.glsl)0
-rw-r--r--src/Ryujinx.Graphics.Shader/CodeGen/Glsl/HelperFunctions/ShuffleDown.glsl (renamed from Ryujinx.Graphics.Shader/CodeGen/Glsl/HelperFunctions/ShuffleDown.glsl)0
-rw-r--r--src/Ryujinx.Graphics.Shader/CodeGen/Glsl/HelperFunctions/ShuffleUp.glsl (renamed from Ryujinx.Graphics.Shader/CodeGen/Glsl/HelperFunctions/ShuffleUp.glsl)0
-rw-r--r--src/Ryujinx.Graphics.Shader/CodeGen/Glsl/HelperFunctions/ShuffleXor.glsl (renamed from Ryujinx.Graphics.Shader/CodeGen/Glsl/HelperFunctions/ShuffleXor.glsl)0
-rw-r--r--src/Ryujinx.Graphics.Shader/CodeGen/Glsl/HelperFunctions/StoreSharedSmallInt.glsl (renamed from Ryujinx.Graphics.Shader/CodeGen/Glsl/HelperFunctions/StoreSharedSmallInt.glsl)0
-rw-r--r--src/Ryujinx.Graphics.Shader/CodeGen/Glsl/HelperFunctions/StoreStorageSmallInt.glsl (renamed from Ryujinx.Graphics.Shader/CodeGen/Glsl/HelperFunctions/StoreStorageSmallInt.glsl)0
-rw-r--r--src/Ryujinx.Graphics.Shader/CodeGen/Glsl/HelperFunctions/SwizzleAdd.glsl (renamed from Ryujinx.Graphics.Shader/CodeGen/Glsl/HelperFunctions/SwizzleAdd.glsl)0
-rw-r--r--src/Ryujinx.Graphics.Shader/CodeGen/Glsl/HelperFunctions/TexelFetchScale_cp.glsl (renamed from Ryujinx.Graphics.Shader/CodeGen/Glsl/HelperFunctions/TexelFetchScale_cp.glsl)0
-rw-r--r--src/Ryujinx.Graphics.Shader/CodeGen/Glsl/HelperFunctions/TexelFetchScale_fp.glsl (renamed from Ryujinx.Graphics.Shader/CodeGen/Glsl/HelperFunctions/TexelFetchScale_fp.glsl)0
-rw-r--r--src/Ryujinx.Graphics.Shader/CodeGen/Glsl/HelperFunctions/TexelFetchScale_vp.glsl (renamed from Ryujinx.Graphics.Shader/CodeGen/Glsl/HelperFunctions/TexelFetchScale_vp.glsl)0
-rw-r--r--src/Ryujinx.Graphics.Shader/CodeGen/Glsl/Instructions/InstGen.cs (renamed from Ryujinx.Graphics.Shader/CodeGen/Glsl/Instructions/InstGen.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/CodeGen/Glsl/Instructions/InstGenBallot.cs (renamed from Ryujinx.Graphics.Shader/CodeGen/Glsl/Instructions/InstGenBallot.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/CodeGen/Glsl/Instructions/InstGenCall.cs (renamed from Ryujinx.Graphics.Shader/CodeGen/Glsl/Instructions/InstGenCall.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/CodeGen/Glsl/Instructions/InstGenFSI.cs (renamed from Ryujinx.Graphics.Shader/CodeGen/Glsl/Instructions/InstGenFSI.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/CodeGen/Glsl/Instructions/InstGenHelper.cs (renamed from Ryujinx.Graphics.Shader/CodeGen/Glsl/Instructions/InstGenHelper.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/CodeGen/Glsl/Instructions/InstGenMemory.cs (renamed from Ryujinx.Graphics.Shader/CodeGen/Glsl/Instructions/InstGenMemory.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/CodeGen/Glsl/Instructions/InstGenPacking.cs (renamed from Ryujinx.Graphics.Shader/CodeGen/Glsl/Instructions/InstGenPacking.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/CodeGen/Glsl/Instructions/InstGenVector.cs (renamed from Ryujinx.Graphics.Shader/CodeGen/Glsl/Instructions/InstGenVector.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/CodeGen/Glsl/Instructions/InstInfo.cs (renamed from Ryujinx.Graphics.Shader/CodeGen/Glsl/Instructions/InstInfo.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/CodeGen/Glsl/Instructions/InstType.cs (renamed from Ryujinx.Graphics.Shader/CodeGen/Glsl/Instructions/InstType.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/CodeGen/Glsl/Instructions/IoMap.cs (renamed from Ryujinx.Graphics.Shader/CodeGen/Glsl/Instructions/IoMap.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/CodeGen/Glsl/NumberFormatter.cs (renamed from Ryujinx.Graphics.Shader/CodeGen/Glsl/NumberFormatter.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/CodeGen/Glsl/OperandManager.cs (renamed from Ryujinx.Graphics.Shader/CodeGen/Glsl/OperandManager.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/CodeGen/Glsl/TypeConversion.cs (renamed from Ryujinx.Graphics.Shader/CodeGen/Glsl/TypeConversion.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/CodeGen/Spirv/CodeGenContext.cs (renamed from Ryujinx.Graphics.Shader/CodeGen/Spirv/CodeGenContext.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/CodeGen/Spirv/Declarations.cs (renamed from Ryujinx.Graphics.Shader/CodeGen/Spirv/Declarations.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/CodeGen/Spirv/EnumConversion.cs (renamed from Ryujinx.Graphics.Shader/CodeGen/Spirv/EnumConversion.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/CodeGen/Spirv/Instructions.cs (renamed from Ryujinx.Graphics.Shader/CodeGen/Spirv/Instructions.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/CodeGen/Spirv/IoMap.cs (renamed from Ryujinx.Graphics.Shader/CodeGen/Spirv/IoMap.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/CodeGen/Spirv/OperationResult.cs (renamed from Ryujinx.Graphics.Shader/CodeGen/Spirv/OperationResult.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/CodeGen/Spirv/ScalingHelpers.cs (renamed from Ryujinx.Graphics.Shader/CodeGen/Spirv/ScalingHelpers.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/CodeGen/Spirv/SpirvDelegates.cs (renamed from Ryujinx.Graphics.Shader/CodeGen/Spirv/SpirvDelegates.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/CodeGen/Spirv/SpirvGenerator.cs (renamed from Ryujinx.Graphics.Shader/CodeGen/Spirv/SpirvGenerator.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/CodeGen/Spirv/TextureMeta.cs (renamed from Ryujinx.Graphics.Shader/CodeGen/Spirv/TextureMeta.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/Constants.cs (renamed from Ryujinx.Graphics.Shader/Constants.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/Decoders/Block.cs (renamed from Ryujinx.Graphics.Shader/Decoders/Block.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/Decoders/DecodedFunction.cs (renamed from Ryujinx.Graphics.Shader/Decoders/DecodedFunction.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/Decoders/DecodedProgram.cs (renamed from Ryujinx.Graphics.Shader/Decoders/DecodedProgram.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/Decoders/Decoder.cs (renamed from Ryujinx.Graphics.Shader/Decoders/Decoder.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/Decoders/FunctionType.cs (renamed from Ryujinx.Graphics.Shader/Decoders/FunctionType.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/Decoders/InstDecoders.cs (renamed from Ryujinx.Graphics.Shader/Decoders/InstDecoders.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/Decoders/InstName.cs (renamed from Ryujinx.Graphics.Shader/Decoders/InstName.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/Decoders/InstOp.cs (renamed from Ryujinx.Graphics.Shader/Decoders/InstOp.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/Decoders/InstProps.cs (renamed from Ryujinx.Graphics.Shader/Decoders/InstProps.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/Decoders/InstTable.cs (renamed from Ryujinx.Graphics.Shader/Decoders/InstTable.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/Decoders/Register.cs (renamed from Ryujinx.Graphics.Shader/Decoders/Register.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/Decoders/RegisterConsts.cs (renamed from Ryujinx.Graphics.Shader/Decoders/RegisterConsts.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/Decoders/RegisterType.cs (renamed from Ryujinx.Graphics.Shader/Decoders/RegisterType.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/IGpuAccessor.cs (renamed from Ryujinx.Graphics.Shader/IGpuAccessor.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/InputTopology.cs (renamed from Ryujinx.Graphics.Shader/InputTopology.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/Instructions/AttributeMap.cs (renamed from Ryujinx.Graphics.Shader/Instructions/AttributeMap.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/Instructions/InstEmit.cs (renamed from Ryujinx.Graphics.Shader/Instructions/InstEmit.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/Instructions/InstEmitAluHelper.cs (renamed from Ryujinx.Graphics.Shader/Instructions/InstEmitAluHelper.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/Instructions/InstEmitAttribute.cs (renamed from Ryujinx.Graphics.Shader/Instructions/InstEmitAttribute.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/Instructions/InstEmitBarrier.cs (renamed from Ryujinx.Graphics.Shader/Instructions/InstEmitBarrier.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/Instructions/InstEmitBitfield.cs (renamed from Ryujinx.Graphics.Shader/Instructions/InstEmitBitfield.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/Instructions/InstEmitConditionCode.cs (renamed from Ryujinx.Graphics.Shader/Instructions/InstEmitConditionCode.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/Instructions/InstEmitConversion.cs (renamed from Ryujinx.Graphics.Shader/Instructions/InstEmitConversion.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/Instructions/InstEmitFloatArithmetic.cs (renamed from Ryujinx.Graphics.Shader/Instructions/InstEmitFloatArithmetic.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/Instructions/InstEmitFloatComparison.cs (renamed from Ryujinx.Graphics.Shader/Instructions/InstEmitFloatComparison.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/Instructions/InstEmitFloatMinMax.cs (renamed from Ryujinx.Graphics.Shader/Instructions/InstEmitFloatMinMax.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/Instructions/InstEmitFlowControl.cs (renamed from Ryujinx.Graphics.Shader/Instructions/InstEmitFlowControl.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/Instructions/InstEmitHelper.cs (renamed from Ryujinx.Graphics.Shader/Instructions/InstEmitHelper.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/Instructions/InstEmitIntegerArithmetic.cs (renamed from Ryujinx.Graphics.Shader/Instructions/InstEmitIntegerArithmetic.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/Instructions/InstEmitIntegerComparison.cs (renamed from Ryujinx.Graphics.Shader/Instructions/InstEmitIntegerComparison.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/Instructions/InstEmitIntegerLogical.cs (renamed from Ryujinx.Graphics.Shader/Instructions/InstEmitIntegerLogical.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/Instructions/InstEmitIntegerMinMax.cs (renamed from Ryujinx.Graphics.Shader/Instructions/InstEmitIntegerMinMax.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/Instructions/InstEmitMemory.cs (renamed from Ryujinx.Graphics.Shader/Instructions/InstEmitMemory.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/Instructions/InstEmitMove.cs (renamed from Ryujinx.Graphics.Shader/Instructions/InstEmitMove.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/Instructions/InstEmitMultifunction.cs (renamed from Ryujinx.Graphics.Shader/Instructions/InstEmitMultifunction.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/Instructions/InstEmitNop.cs (renamed from Ryujinx.Graphics.Shader/Instructions/InstEmitNop.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/Instructions/InstEmitPredicate.cs (renamed from Ryujinx.Graphics.Shader/Instructions/InstEmitPredicate.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/Instructions/InstEmitShift.cs (renamed from Ryujinx.Graphics.Shader/Instructions/InstEmitShift.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/Instructions/InstEmitSurface.cs (renamed from Ryujinx.Graphics.Shader/Instructions/InstEmitSurface.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/Instructions/InstEmitTexture.cs (renamed from Ryujinx.Graphics.Shader/Instructions/InstEmitTexture.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/Instructions/InstEmitVideoArithmetic.cs (renamed from Ryujinx.Graphics.Shader/Instructions/InstEmitVideoArithmetic.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/Instructions/InstEmitVideoMinMax.cs (renamed from Ryujinx.Graphics.Shader/Instructions/InstEmitVideoMinMax.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/Instructions/InstEmitWarp.cs (renamed from Ryujinx.Graphics.Shader/Instructions/InstEmitWarp.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/Instructions/InstEmitter.cs (renamed from Ryujinx.Graphics.Shader/Instructions/InstEmitter.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/Instructions/Lop3Expression.cs (renamed from Ryujinx.Graphics.Shader/Instructions/Lop3Expression.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/IntermediateRepresentation/BasicBlock.cs (renamed from Ryujinx.Graphics.Shader/IntermediateRepresentation/BasicBlock.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/IntermediateRepresentation/CommentNode.cs (renamed from Ryujinx.Graphics.Shader/IntermediateRepresentation/CommentNode.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/IntermediateRepresentation/Function.cs (renamed from Ryujinx.Graphics.Shader/IntermediateRepresentation/Function.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/IntermediateRepresentation/INode.cs (renamed from Ryujinx.Graphics.Shader/IntermediateRepresentation/INode.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/IntermediateRepresentation/Instruction.cs (renamed from Ryujinx.Graphics.Shader/IntermediateRepresentation/Instruction.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/IntermediateRepresentation/IoVariable.cs (renamed from Ryujinx.Graphics.Shader/IntermediateRepresentation/IoVariable.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/IntermediateRepresentation/IrConsts.cs (renamed from Ryujinx.Graphics.Shader/IntermediateRepresentation/IrConsts.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/IntermediateRepresentation/Operand.cs (renamed from Ryujinx.Graphics.Shader/IntermediateRepresentation/Operand.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/IntermediateRepresentation/OperandHelper.cs (renamed from Ryujinx.Graphics.Shader/IntermediateRepresentation/OperandHelper.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/IntermediateRepresentation/OperandType.cs (renamed from Ryujinx.Graphics.Shader/IntermediateRepresentation/OperandType.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/IntermediateRepresentation/Operation.cs (renamed from Ryujinx.Graphics.Shader/IntermediateRepresentation/Operation.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/IntermediateRepresentation/PhiNode.cs (renamed from Ryujinx.Graphics.Shader/IntermediateRepresentation/PhiNode.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/IntermediateRepresentation/StorageKind.cs (renamed from Ryujinx.Graphics.Shader/IntermediateRepresentation/StorageKind.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/IntermediateRepresentation/TextureFlags.cs (renamed from Ryujinx.Graphics.Shader/IntermediateRepresentation/TextureFlags.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/IntermediateRepresentation/TextureOperation.cs (renamed from Ryujinx.Graphics.Shader/IntermediateRepresentation/TextureOperation.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/OutputTopology.cs (renamed from Ryujinx.Graphics.Shader/OutputTopology.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/Ryujinx.Graphics.Shader.csproj (renamed from Ryujinx.Graphics.Shader/Ryujinx.Graphics.Shader.csproj)0
-rw-r--r--src/Ryujinx.Graphics.Shader/SamplerType.cs (renamed from Ryujinx.Graphics.Shader/SamplerType.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/ShaderIdentification.cs (renamed from Ryujinx.Graphics.Shader/ShaderIdentification.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/ShaderProgram.cs (renamed from Ryujinx.Graphics.Shader/ShaderProgram.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/ShaderProgramInfo.cs (renamed from Ryujinx.Graphics.Shader/ShaderProgramInfo.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/ShaderStage.cs (renamed from Ryujinx.Graphics.Shader/ShaderStage.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/StructuredIr/AstAssignment.cs (renamed from Ryujinx.Graphics.Shader/StructuredIr/AstAssignment.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/StructuredIr/AstBlock.cs (renamed from Ryujinx.Graphics.Shader/StructuredIr/AstBlock.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/StructuredIr/AstBlockType.cs (renamed from Ryujinx.Graphics.Shader/StructuredIr/AstBlockType.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/StructuredIr/AstBlockVisitor.cs (renamed from Ryujinx.Graphics.Shader/StructuredIr/AstBlockVisitor.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/StructuredIr/AstComment.cs (renamed from Ryujinx.Graphics.Shader/StructuredIr/AstComment.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/StructuredIr/AstHelper.cs (renamed from Ryujinx.Graphics.Shader/StructuredIr/AstHelper.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/StructuredIr/AstNode.cs (renamed from Ryujinx.Graphics.Shader/StructuredIr/AstNode.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/StructuredIr/AstOperand.cs (renamed from Ryujinx.Graphics.Shader/StructuredIr/AstOperand.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/StructuredIr/AstOperation.cs (renamed from Ryujinx.Graphics.Shader/StructuredIr/AstOperation.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/StructuredIr/AstOptimizer.cs (renamed from Ryujinx.Graphics.Shader/StructuredIr/AstOptimizer.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/StructuredIr/AstTextureOperation.cs (renamed from Ryujinx.Graphics.Shader/StructuredIr/AstTextureOperation.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/StructuredIr/GotoElimination.cs (renamed from Ryujinx.Graphics.Shader/StructuredIr/GotoElimination.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/StructuredIr/GotoStatement.cs (renamed from Ryujinx.Graphics.Shader/StructuredIr/GotoStatement.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/StructuredIr/HelperFunctionsMask.cs (renamed from Ryujinx.Graphics.Shader/StructuredIr/HelperFunctionsMask.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/StructuredIr/IAstNode.cs (renamed from Ryujinx.Graphics.Shader/StructuredIr/IAstNode.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/StructuredIr/InstructionInfo.cs (renamed from Ryujinx.Graphics.Shader/StructuredIr/InstructionInfo.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/StructuredIr/IoDefinition.cs (renamed from Ryujinx.Graphics.Shader/StructuredIr/IoDefinition.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/StructuredIr/OperandInfo.cs (renamed from Ryujinx.Graphics.Shader/StructuredIr/OperandInfo.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/StructuredIr/PhiFunctions.cs (renamed from Ryujinx.Graphics.Shader/StructuredIr/PhiFunctions.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/StructuredIr/StructuredFunction.cs (renamed from Ryujinx.Graphics.Shader/StructuredIr/StructuredFunction.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/StructuredIr/StructuredProgram.cs (renamed from Ryujinx.Graphics.Shader/StructuredIr/StructuredProgram.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/StructuredIr/StructuredProgramContext.cs (renamed from Ryujinx.Graphics.Shader/StructuredIr/StructuredProgramContext.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/StructuredIr/StructuredProgramInfo.cs (renamed from Ryujinx.Graphics.Shader/StructuredIr/StructuredProgramInfo.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/SupportBuffer.cs (renamed from Ryujinx.Graphics.Shader/SupportBuffer.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/TessPatchType.cs (renamed from Ryujinx.Graphics.Shader/TessPatchType.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/TessSpacing.cs (renamed from Ryujinx.Graphics.Shader/TessSpacing.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/TextureDescriptor.cs (renamed from Ryujinx.Graphics.Shader/TextureDescriptor.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/TextureFormat.cs (renamed from Ryujinx.Graphics.Shader/TextureFormat.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/TextureHandle.cs (renamed from Ryujinx.Graphics.Shader/TextureHandle.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/TextureUsageFlags.cs (renamed from Ryujinx.Graphics.Shader/TextureUsageFlags.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/Translation/AggregateType.cs (renamed from Ryujinx.Graphics.Shader/Translation/AggregateType.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/Translation/AttributeConsts.cs (renamed from Ryujinx.Graphics.Shader/Translation/AttributeConsts.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/Translation/ControlFlowGraph.cs (renamed from Ryujinx.Graphics.Shader/Translation/ControlFlowGraph.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/Translation/Dominance.cs (renamed from Ryujinx.Graphics.Shader/Translation/Dominance.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/Translation/EmitterContext.cs (renamed from Ryujinx.Graphics.Shader/Translation/EmitterContext.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/Translation/EmitterContextInsts.cs (renamed from Ryujinx.Graphics.Shader/Translation/EmitterContextInsts.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/Translation/FeatureFlags.cs (renamed from Ryujinx.Graphics.Shader/Translation/FeatureFlags.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/Translation/FunctionMatch.cs (renamed from Ryujinx.Graphics.Shader/Translation/FunctionMatch.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/Translation/GlobalMemory.cs (renamed from Ryujinx.Graphics.Shader/Translation/GlobalMemory.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/Translation/Optimizations/BindlessElimination.cs (renamed from Ryujinx.Graphics.Shader/Translation/Optimizations/BindlessElimination.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/Translation/Optimizations/BindlessToIndexed.cs (renamed from Ryujinx.Graphics.Shader/Translation/Optimizations/BindlessToIndexed.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/Translation/Optimizations/BranchElimination.cs (renamed from Ryujinx.Graphics.Shader/Translation/Optimizations/BranchElimination.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/Translation/Optimizations/ConstantFolding.cs (renamed from Ryujinx.Graphics.Shader/Translation/Optimizations/ConstantFolding.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/Translation/Optimizations/GlobalToStorage.cs (renamed from Ryujinx.Graphics.Shader/Translation/Optimizations/GlobalToStorage.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/Translation/Optimizations/Optimizer.cs (renamed from Ryujinx.Graphics.Shader/Translation/Optimizations/Optimizer.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/Translation/Optimizations/Simplification.cs (renamed from Ryujinx.Graphics.Shader/Translation/Optimizations/Simplification.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/Translation/Optimizations/Utils.cs (renamed from Ryujinx.Graphics.Shader/Translation/Optimizations/Utils.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/Translation/RegisterUsage.cs (renamed from Ryujinx.Graphics.Shader/Translation/RegisterUsage.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/Translation/Rewriter.cs (renamed from Ryujinx.Graphics.Shader/Translation/Rewriter.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/Translation/ShaderConfig.cs (renamed from Ryujinx.Graphics.Shader/Translation/ShaderConfig.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/Translation/ShaderHeader.cs (renamed from Ryujinx.Graphics.Shader/Translation/ShaderHeader.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/Translation/ShaderIdentifier.cs (renamed from Ryujinx.Graphics.Shader/Translation/ShaderIdentifier.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/Translation/Ssa.cs (renamed from Ryujinx.Graphics.Shader/Translation/Ssa.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/Translation/TargetApi.cs (renamed from Ryujinx.Graphics.Shader/Translation/TargetApi.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/Translation/TargetLanguage.cs (renamed from Ryujinx.Graphics.Shader/Translation/TargetLanguage.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/Translation/TranslationFlags.cs (renamed from Ryujinx.Graphics.Shader/Translation/TranslationFlags.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/Translation/TranslationOptions.cs (renamed from Ryujinx.Graphics.Shader/Translation/TranslationOptions.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/Translation/Translator.cs (renamed from Ryujinx.Graphics.Shader/Translation/Translator.cs)0
-rw-r--r--src/Ryujinx.Graphics.Shader/Translation/TranslatorContext.cs (renamed from Ryujinx.Graphics.Shader/Translation/TranslatorContext.cs)0
-rw-r--r--src/Ryujinx.Graphics.Texture/Astc/AstcDecoder.cs (renamed from Ryujinx.Graphics.Texture/Astc/AstcDecoder.cs)0
-rw-r--r--src/Ryujinx.Graphics.Texture/Astc/AstcDecoderException.cs (renamed from Ryujinx.Graphics.Texture/Astc/AstcDecoderException.cs)0
-rw-r--r--src/Ryujinx.Graphics.Texture/Astc/AstcPixel.cs (renamed from Ryujinx.Graphics.Texture/Astc/AstcPixel.cs)0
-rw-r--r--src/Ryujinx.Graphics.Texture/Astc/BitStream128.cs (renamed from Ryujinx.Graphics.Texture/Astc/BitStream128.cs)0
-rw-r--r--src/Ryujinx.Graphics.Texture/Astc/Bits.cs (renamed from Ryujinx.Graphics.Texture/Astc/Bits.cs)0
-rw-r--r--src/Ryujinx.Graphics.Texture/Astc/EndPointSet.cs (renamed from Ryujinx.Graphics.Texture/Astc/EndPointSet.cs)0
-rw-r--r--src/Ryujinx.Graphics.Texture/Astc/IntegerEncoded.cs (renamed from Ryujinx.Graphics.Texture/Astc/IntegerEncoded.cs)0
-rw-r--r--src/Ryujinx.Graphics.Texture/Astc/IntegerSequence.cs (renamed from Ryujinx.Graphics.Texture/Astc/IntegerSequence.cs)0
-rw-r--r--src/Ryujinx.Graphics.Texture/BC6Decoder.cs (renamed from Ryujinx.Graphics.Texture/BC6Decoder.cs)0
-rw-r--r--src/Ryujinx.Graphics.Texture/BC7Decoder.cs (renamed from Ryujinx.Graphics.Texture/BC7Decoder.cs)0
-rw-r--r--src/Ryujinx.Graphics.Texture/BCnDecoder.cs (renamed from Ryujinx.Graphics.Texture/BCnDecoder.cs)0
-rw-r--r--src/Ryujinx.Graphics.Texture/BCnEncoder.cs (renamed from Ryujinx.Graphics.Texture/BCnEncoder.cs)0
-rw-r--r--src/Ryujinx.Graphics.Texture/BlockLinearConstants.cs (renamed from Ryujinx.Graphics.Texture/BlockLinearConstants.cs)0
-rw-r--r--src/Ryujinx.Graphics.Texture/BlockLinearLayout.cs (renamed from Ryujinx.Graphics.Texture/BlockLinearLayout.cs)0
-rw-r--r--src/Ryujinx.Graphics.Texture/Bpp12Pixel.cs (renamed from Ryujinx.Graphics.Texture/Bpp12Pixel.cs)0
-rw-r--r--src/Ryujinx.Graphics.Texture/ETC2Decoder.cs (renamed from Ryujinx.Graphics.Texture/ETC2Decoder.cs)0
-rw-r--r--src/Ryujinx.Graphics.Texture/Encoders/BC7Encoder.cs (renamed from Ryujinx.Graphics.Texture/Encoders/BC7Encoder.cs)0
-rw-r--r--src/Ryujinx.Graphics.Texture/Encoders/EncodeMode.cs (renamed from Ryujinx.Graphics.Texture/Encoders/EncodeMode.cs)0
-rw-r--r--src/Ryujinx.Graphics.Texture/LayoutConverter.cs (renamed from Ryujinx.Graphics.Texture/LayoutConverter.cs)0
-rw-r--r--src/Ryujinx.Graphics.Texture/OffsetCalculator.cs (renamed from Ryujinx.Graphics.Texture/OffsetCalculator.cs)0
-rw-r--r--src/Ryujinx.Graphics.Texture/PixelConverter.cs (renamed from Ryujinx.Graphics.Texture/PixelConverter.cs)0
-rw-r--r--src/Ryujinx.Graphics.Texture/Region.cs (renamed from Ryujinx.Graphics.Texture/Region.cs)0
-rw-r--r--src/Ryujinx.Graphics.Texture/Ryujinx.Graphics.Texture.csproj (renamed from Ryujinx.Graphics.Texture/Ryujinx.Graphics.Texture.csproj)0
-rw-r--r--src/Ryujinx.Graphics.Texture/Size.cs (renamed from Ryujinx.Graphics.Texture/Size.cs)0
-rw-r--r--src/Ryujinx.Graphics.Texture/SizeCalculator.cs (renamed from Ryujinx.Graphics.Texture/SizeCalculator.cs)0
-rw-r--r--src/Ryujinx.Graphics.Texture/SizeInfo.cs (renamed from Ryujinx.Graphics.Texture/SizeInfo.cs)0
-rw-r--r--src/Ryujinx.Graphics.Texture/Utils/BC67Tables.cs (renamed from Ryujinx.Graphics.Texture/Utils/BC67Tables.cs)0
-rw-r--r--src/Ryujinx.Graphics.Texture/Utils/BC67Utils.cs (renamed from Ryujinx.Graphics.Texture/Utils/BC67Utils.cs)0
-rw-r--r--src/Ryujinx.Graphics.Texture/Utils/BC7ModeInfo.cs (renamed from Ryujinx.Graphics.Texture/Utils/BC7ModeInfo.cs)0
-rw-r--r--src/Ryujinx.Graphics.Texture/Utils/Block.cs (renamed from Ryujinx.Graphics.Texture/Utils/Block.cs)0
-rw-r--r--src/Ryujinx.Graphics.Texture/Utils/RgbaColor32.cs (renamed from Ryujinx.Graphics.Texture/Utils/RgbaColor32.cs)0
-rw-r--r--src/Ryujinx.Graphics.Texture/Utils/RgbaColor8.cs (renamed from Ryujinx.Graphics.Texture/Utils/RgbaColor8.cs)0
-rw-r--r--src/Ryujinx.Graphics.Vic/Blender.cs (renamed from Ryujinx.Graphics.Vic/Blender.cs)0
-rw-r--r--src/Ryujinx.Graphics.Vic/Image/BufferPool.cs (renamed from Ryujinx.Graphics.Vic/Image/BufferPool.cs)0
-rw-r--r--src/Ryujinx.Graphics.Vic/Image/InputSurface.cs (renamed from Ryujinx.Graphics.Vic/Image/InputSurface.cs)0
-rw-r--r--src/Ryujinx.Graphics.Vic/Image/Pixel.cs (renamed from Ryujinx.Graphics.Vic/Image/Pixel.cs)0
-rw-r--r--src/Ryujinx.Graphics.Vic/Image/Surface.cs (renamed from Ryujinx.Graphics.Vic/Image/Surface.cs)0
-rw-r--r--src/Ryujinx.Graphics.Vic/Image/SurfaceCommon.cs (renamed from Ryujinx.Graphics.Vic/Image/SurfaceCommon.cs)0
-rw-r--r--src/Ryujinx.Graphics.Vic/Image/SurfaceReader.cs (renamed from Ryujinx.Graphics.Vic/Image/SurfaceReader.cs)0
-rw-r--r--src/Ryujinx.Graphics.Vic/Image/SurfaceWriter.cs (renamed from Ryujinx.Graphics.Vic/Image/SurfaceWriter.cs)0
-rw-r--r--src/Ryujinx.Graphics.Vic/Rectangle.cs (renamed from Ryujinx.Graphics.Vic/Rectangle.cs)0
-rw-r--r--src/Ryujinx.Graphics.Vic/ResourceManager.cs (renamed from Ryujinx.Graphics.Vic/ResourceManager.cs)0
-rw-r--r--src/Ryujinx.Graphics.Vic/Ryujinx.Graphics.Vic.csproj (renamed from Ryujinx.Graphics.Vic/Ryujinx.Graphics.Vic.csproj)0
-rw-r--r--src/Ryujinx.Graphics.Vic/Scaler.cs (renamed from Ryujinx.Graphics.Vic/Scaler.cs)0
-rw-r--r--src/Ryujinx.Graphics.Vic/Types/BlendingSlotStruct.cs (renamed from Ryujinx.Graphics.Vic/Types/BlendingSlotStruct.cs)0
-rw-r--r--src/Ryujinx.Graphics.Vic/Types/ClearRectStruct.cs (renamed from Ryujinx.Graphics.Vic/Types/ClearRectStruct.cs)0
-rw-r--r--src/Ryujinx.Graphics.Vic/Types/ConfigStruct.cs (renamed from Ryujinx.Graphics.Vic/Types/ConfigStruct.cs)0
-rw-r--r--src/Ryujinx.Graphics.Vic/Types/DeinterlaceMode.cs (renamed from Ryujinx.Graphics.Vic/Types/DeinterlaceMode.cs)0
-rw-r--r--src/Ryujinx.Graphics.Vic/Types/FrameFormat.cs (renamed from Ryujinx.Graphics.Vic/Types/FrameFormat.cs)0
-rw-r--r--src/Ryujinx.Graphics.Vic/Types/LumaKeyStruct.cs (renamed from Ryujinx.Graphics.Vic/Types/LumaKeyStruct.cs)0
-rw-r--r--src/Ryujinx.Graphics.Vic/Types/MatrixStruct.cs (renamed from Ryujinx.Graphics.Vic/Types/MatrixStruct.cs)0
-rw-r--r--src/Ryujinx.Graphics.Vic/Types/OutputConfig.cs (renamed from Ryujinx.Graphics.Vic/Types/OutputConfig.cs)0
-rw-r--r--src/Ryujinx.Graphics.Vic/Types/OutputSurfaceConfig.cs (renamed from Ryujinx.Graphics.Vic/Types/OutputSurfaceConfig.cs)0
-rw-r--r--src/Ryujinx.Graphics.Vic/Types/PipeConfig.cs (renamed from Ryujinx.Graphics.Vic/Types/PipeConfig.cs)0
-rw-r--r--src/Ryujinx.Graphics.Vic/Types/PixelFormat.cs (renamed from Ryujinx.Graphics.Vic/Types/PixelFormat.cs)0
-rw-r--r--src/Ryujinx.Graphics.Vic/Types/SlotConfig.cs (renamed from Ryujinx.Graphics.Vic/Types/SlotConfig.cs)0
-rw-r--r--src/Ryujinx.Graphics.Vic/Types/SlotStruct.cs (renamed from Ryujinx.Graphics.Vic/Types/SlotStruct.cs)0
-rw-r--r--src/Ryujinx.Graphics.Vic/Types/SlotSurfaceConfig.cs (renamed from Ryujinx.Graphics.Vic/Types/SlotSurfaceConfig.cs)0
-rw-r--r--src/Ryujinx.Graphics.Vic/VicDevice.cs (renamed from Ryujinx.Graphics.Vic/VicDevice.cs)0
-rw-r--r--src/Ryujinx.Graphics.Vic/VicRegisters.cs (renamed from Ryujinx.Graphics.Vic/VicRegisters.cs)0
-rw-r--r--src/Ryujinx.Graphics.Video/FrameField.cs (renamed from Ryujinx.Graphics.Video/FrameField.cs)0
-rw-r--r--src/Ryujinx.Graphics.Video/H264PictureInfo.cs (renamed from Ryujinx.Graphics.Video/H264PictureInfo.cs)0
-rw-r--r--src/Ryujinx.Graphics.Video/IDecoder.cs (renamed from Ryujinx.Graphics.Video/IDecoder.cs)0
-rw-r--r--src/Ryujinx.Graphics.Video/IH264Decoder.cs (renamed from Ryujinx.Graphics.Video/IH264Decoder.cs)0
-rw-r--r--src/Ryujinx.Graphics.Video/ISurface.cs (renamed from Ryujinx.Graphics.Video/ISurface.cs)0
-rw-r--r--src/Ryujinx.Graphics.Video/IVp9Decoder.cs (renamed from Ryujinx.Graphics.Video/IVp9Decoder.cs)0
-rw-r--r--src/Ryujinx.Graphics.Video/Plane.cs (renamed from Ryujinx.Graphics.Video/Plane.cs)0
-rw-r--r--src/Ryujinx.Graphics.Video/Ryujinx.Graphics.Video.csproj (renamed from Ryujinx.Graphics.Video/Ryujinx.Graphics.Video.csproj)0
-rw-r--r--src/Ryujinx.Graphics.Video/Vp8PictureInfo.cs (renamed from Ryujinx.Graphics.Video/Vp8PictureInfo.cs)0
-rw-r--r--src/Ryujinx.Graphics.Video/Vp9BackwardUpdates.cs (renamed from Ryujinx.Graphics.Video/Vp9BackwardUpdates.cs)0
-rw-r--r--src/Ryujinx.Graphics.Video/Vp9EntropyProbs.cs (renamed from Ryujinx.Graphics.Video/Vp9EntropyProbs.cs)0
-rw-r--r--src/Ryujinx.Graphics.Video/Vp9Mv.cs (renamed from Ryujinx.Graphics.Video/Vp9Mv.cs)0
-rw-r--r--src/Ryujinx.Graphics.Video/Vp9MvRef.cs (renamed from Ryujinx.Graphics.Video/Vp9MvRef.cs)0
-rw-r--r--src/Ryujinx.Graphics.Video/Vp9PictureInfo.cs (renamed from Ryujinx.Graphics.Video/Vp9PictureInfo.cs)0
-rw-r--r--src/Ryujinx.Graphics.Vulkan/Auto.cs (renamed from Ryujinx.Graphics.Vulkan/Auto.cs)0
-rw-r--r--src/Ryujinx.Graphics.Vulkan/AutoFlushCounter.cs (renamed from Ryujinx.Graphics.Vulkan/AutoFlushCounter.cs)0
-rw-r--r--src/Ryujinx.Graphics.Vulkan/BackgroundResources.cs (renamed from Ryujinx.Graphics.Vulkan/BackgroundResources.cs)0
-rw-r--r--src/Ryujinx.Graphics.Vulkan/BitMap.cs (renamed from Ryujinx.Graphics.Vulkan/BitMap.cs)0
-rw-r--r--src/Ryujinx.Graphics.Vulkan/BufferAllocationType.cs (renamed from Ryujinx.Graphics.Vulkan/BufferAllocationType.cs)0
-rw-r--r--src/Ryujinx.Graphics.Vulkan/BufferHolder.cs (renamed from Ryujinx.Graphics.Vulkan/BufferHolder.cs)0
-rw-r--r--src/Ryujinx.Graphics.Vulkan/BufferManager.cs (renamed from Ryujinx.Graphics.Vulkan/BufferManager.cs)0
-rw-r--r--src/Ryujinx.Graphics.Vulkan/BufferState.cs (renamed from Ryujinx.Graphics.Vulkan/BufferState.cs)0
-rw-r--r--src/Ryujinx.Graphics.Vulkan/BufferUsageBitmap.cs (renamed from Ryujinx.Graphics.Vulkan/BufferUsageBitmap.cs)0
-rw-r--r--src/Ryujinx.Graphics.Vulkan/CacheByRange.cs (renamed from Ryujinx.Graphics.Vulkan/CacheByRange.cs)0
-rw-r--r--src/Ryujinx.Graphics.Vulkan/CommandBufferPool.cs (renamed from Ryujinx.Graphics.Vulkan/CommandBufferPool.cs)0
-rw-r--r--src/Ryujinx.Graphics.Vulkan/CommandBufferScoped.cs (renamed from Ryujinx.Graphics.Vulkan/CommandBufferScoped.cs)0
-rw-r--r--src/Ryujinx.Graphics.Vulkan/Constants.cs (renamed from Ryujinx.Graphics.Vulkan/Constants.cs)0
-rw-r--r--src/Ryujinx.Graphics.Vulkan/DescriptorSetCollection.cs (renamed from Ryujinx.Graphics.Vulkan/DescriptorSetCollection.cs)0
-rw-r--r--src/Ryujinx.Graphics.Vulkan/DescriptorSetManager.cs (renamed from Ryujinx.Graphics.Vulkan/DescriptorSetManager.cs)0
-rw-r--r--src/Ryujinx.Graphics.Vulkan/DescriptorSetUpdater.cs (renamed from Ryujinx.Graphics.Vulkan/DescriptorSetUpdater.cs)0
-rw-r--r--src/Ryujinx.Graphics.Vulkan/DisposableBuffer.cs (renamed from Ryujinx.Graphics.Vulkan/DisposableBuffer.cs)0
-rw-r--r--src/Ryujinx.Graphics.Vulkan/DisposableBufferView.cs (renamed from Ryujinx.Graphics.Vulkan/DisposableBufferView.cs)0
-rw-r--r--src/Ryujinx.Graphics.Vulkan/DisposableFramebuffer.cs (renamed from Ryujinx.Graphics.Vulkan/DisposableFramebuffer.cs)0
-rw-r--r--src/Ryujinx.Graphics.Vulkan/DisposableImage.cs (renamed from Ryujinx.Graphics.Vulkan/DisposableImage.cs)0
-rw-r--r--src/Ryujinx.Graphics.Vulkan/DisposableImageView.cs (renamed from Ryujinx.Graphics.Vulkan/DisposableImageView.cs)0
-rw-r--r--src/Ryujinx.Graphics.Vulkan/DisposableMemory.cs (renamed from Ryujinx.Graphics.Vulkan/DisposableMemory.cs)0
-rw-r--r--src/Ryujinx.Graphics.Vulkan/DisposablePipeline.cs (renamed from Ryujinx.Graphics.Vulkan/DisposablePipeline.cs)0
-rw-r--r--src/Ryujinx.Graphics.Vulkan/DisposableRenderPass.cs (renamed from Ryujinx.Graphics.Vulkan/DisposableRenderPass.cs)0
-rw-r--r--src/Ryujinx.Graphics.Vulkan/DisposableSampler.cs (renamed from Ryujinx.Graphics.Vulkan/DisposableSampler.cs)0
-rw-r--r--src/Ryujinx.Graphics.Vulkan/Effects/FsrScalingFilter.cs (renamed from Ryujinx.Graphics.Vulkan/Effects/FsrScalingFilter.cs)0
-rw-r--r--src/Ryujinx.Graphics.Vulkan/Effects/FxaaPostProcessingEffect.cs (renamed from Ryujinx.Graphics.Vulkan/Effects/FxaaPostProcessingEffect.cs)0
-rw-r--r--src/Ryujinx.Graphics.Vulkan/Effects/IPostProcessingEffect.cs (renamed from Ryujinx.Graphics.Vulkan/Effects/IPostProcessingEffect.cs)0
-rw-r--r--src/Ryujinx.Graphics.Vulkan/Effects/IScalingFilter.cs (renamed from Ryujinx.Graphics.Vulkan/Effects/IScalingFilter.cs)0
-rw-r--r--src/Ryujinx.Graphics.Vulkan/Effects/Shaders/FsrScaling.glsl (renamed from Ryujinx.Graphics.Vulkan/Effects/Shaders/FsrScaling.glsl)0
-rw-r--r--src/Ryujinx.Graphics.Vulkan/Effects/Shaders/FsrScaling.spv (renamed from Ryujinx.Graphics.Vulkan/Effects/Shaders/FsrScaling.spv)bin44672 -> 44672 bytes
-rw-r--r--src/Ryujinx.Graphics.Vulkan/Effects/Shaders/FsrSharpening.glsl (renamed from Ryujinx.Graphics.Vulkan/Effects/Shaders/FsrSharpening.glsl)0
-rw-r--r--src/Ryujinx.Graphics.Vulkan/Effects/Shaders/FsrSharpening.spv (renamed from Ryujinx.Graphics.Vulkan/Effects/Shaders/FsrSharpening.spv)bin20472 -> 20472 bytes
-rw-r--r--src/Ryujinx.Graphics.Vulkan/Effects/Shaders/Fxaa.glsl (renamed from Ryujinx.Graphics.Vulkan/Effects/Shaders/Fxaa.glsl)0
-rw-r--r--src/Ryujinx.Graphics.Vulkan/Effects/Shaders/Fxaa.spv (renamed from Ryujinx.Graphics.Vulkan/Effects/Shaders/Fxaa.spv)bin25012 -> 25012 bytes
-rw-r--r--src/Ryujinx.Graphics.Vulkan/Effects/Shaders/SmaaBlend.glsl (renamed from Ryujinx.Graphics.Vulkan/Effects/Shaders/SmaaBlend.glsl)0
-rw-r--r--src/Ryujinx.Graphics.Vulkan/Effects/Shaders/SmaaBlend.spv (renamed from Ryujinx.Graphics.Vulkan/Effects/Shaders/SmaaBlend.spv)bin33728 -> 33728 bytes
-rw-r--r--src/Ryujinx.Graphics.Vulkan/Effects/Shaders/SmaaEdge.glsl (renamed from Ryujinx.Graphics.Vulkan/Effects/Shaders/SmaaEdge.glsl)0
-rw-r--r--src/Ryujinx.Graphics.Vulkan/Effects/Shaders/SmaaEdge.spv (renamed from Ryujinx.Graphics.Vulkan/Effects/Shaders/SmaaEdge.spv)bin8464 -> 8464 bytes
-rw-r--r--src/Ryujinx.Graphics.Vulkan/Effects/Shaders/SmaaNeighbour.glsl (renamed from Ryujinx.Graphics.Vulkan/Effects/Shaders/SmaaNeighbour.glsl)0
-rw-r--r--src/Ryujinx.Graphics.Vulkan/Effects/Shaders/SmaaNeighbour.spv (renamed from Ryujinx.Graphics.Vulkan/Effects/Shaders/SmaaNeighbour.spv)bin8328 -> 8328 bytes
-rw-r--r--src/Ryujinx.Graphics.Vulkan/Effects/SmaaConstants.cs (renamed from Ryujinx.Graphics.Vulkan/Effects/SmaaConstants.cs)0
-rw-r--r--src/Ryujinx.Graphics.Vulkan/Effects/SmaaPostProcessingEffect.cs (renamed from Ryujinx.Graphics.Vulkan/Effects/SmaaPostProcessingEffect.cs)0
-rw-r--r--src/Ryujinx.Graphics.Vulkan/Effects/Textures/SmaaAreaTexture.bin (renamed from Ryujinx.Graphics.Vulkan/Effects/Textures/SmaaAreaTexture.bin)bin179200 -> 179200 bytes
-rw-r--r--src/Ryujinx.Graphics.Vulkan/Effects/Textures/SmaaSearchTexture.bin (renamed from Ryujinx.Graphics.Vulkan/Effects/Textures/SmaaSearchTexture.bin)bin1024 -> 1024 bytes
-rw-r--r--src/Ryujinx.Graphics.Vulkan/EnumConversion.cs (renamed from Ryujinx.Graphics.Vulkan/EnumConversion.cs)0
-rw-r--r--src/Ryujinx.Graphics.Vulkan/FenceHelper.cs (renamed from Ryujinx.Graphics.Vulkan/FenceHelper.cs)0
-rw-r--r--src/Ryujinx.Graphics.Vulkan/FenceHolder.cs (renamed from Ryujinx.Graphics.Vulkan/FenceHolder.cs)0
-rw-r--r--src/Ryujinx.Graphics.Vulkan/FormatCapabilities.cs (renamed from Ryujinx.Graphics.Vulkan/FormatCapabilities.cs)0
-rw-r--r--src/Ryujinx.Graphics.Vulkan/FormatConverter.cs (renamed from Ryujinx.Graphics.Vulkan/FormatConverter.cs)0
-rw-r--r--src/Ryujinx.Graphics.Vulkan/FormatTable.cs (renamed from Ryujinx.Graphics.Vulkan/FormatTable.cs)0
-rw-r--r--src/Ryujinx.Graphics.Vulkan/FramebufferParams.cs (renamed from Ryujinx.Graphics.Vulkan/FramebufferParams.cs)0
-rw-r--r--src/Ryujinx.Graphics.Vulkan/HardwareCapabilities.cs (renamed from Ryujinx.Graphics.Vulkan/HardwareCapabilities.cs)0
-rw-r--r--src/Ryujinx.Graphics.Vulkan/HashTableSlim.cs (renamed from Ryujinx.Graphics.Vulkan/HashTableSlim.cs)0
-rw-r--r--src/Ryujinx.Graphics.Vulkan/HelperShader.cs (renamed from Ryujinx.Graphics.Vulkan/HelperShader.cs)0
-rw-r--r--src/Ryujinx.Graphics.Vulkan/IdList.cs (renamed from Ryujinx.Graphics.Vulkan/IdList.cs)0
-rw-r--r--src/Ryujinx.Graphics.Vulkan/IndexBufferPattern.cs (renamed from Ryujinx.Graphics.Vulkan/IndexBufferPattern.cs)0
-rw-r--r--src/Ryujinx.Graphics.Vulkan/IndexBufferState.cs (renamed from Ryujinx.Graphics.Vulkan/IndexBufferState.cs)0
-rw-r--r--src/Ryujinx.Graphics.Vulkan/MemoryAllocation.cs (renamed from Ryujinx.Graphics.Vulkan/MemoryAllocation.cs)0
-rw-r--r--src/Ryujinx.Graphics.Vulkan/MemoryAllocator.cs (renamed from Ryujinx.Graphics.Vulkan/MemoryAllocator.cs)0
-rw-r--r--src/Ryujinx.Graphics.Vulkan/MemoryAllocatorBlockList.cs (renamed from Ryujinx.Graphics.Vulkan/MemoryAllocatorBlockList.cs)0
-rw-r--r--src/Ryujinx.Graphics.Vulkan/MoltenVK/MVKConfiguration.cs (renamed from Ryujinx.Graphics.Vulkan/MoltenVK/MVKConfiguration.cs)0
-rw-r--r--src/Ryujinx.Graphics.Vulkan/MoltenVK/MVKInitialization.cs (renamed from Ryujinx.Graphics.Vulkan/MoltenVK/MVKInitialization.cs)0
-rw-r--r--src/Ryujinx.Graphics.Vulkan/MultiFenceHolder.cs (renamed from Ryujinx.Graphics.Vulkan/MultiFenceHolder.cs)0
-rw-r--r--src/Ryujinx.Graphics.Vulkan/NativeArray.cs (renamed from Ryujinx.Graphics.Vulkan/NativeArray.cs)0
-rw-r--r--src/Ryujinx.Graphics.Vulkan/PersistentFlushBuffer.cs (renamed from Ryujinx.Graphics.Vulkan/PersistentFlushBuffer.cs)0
-rw-r--r--src/Ryujinx.Graphics.Vulkan/PipelineBase.cs (renamed from Ryujinx.Graphics.Vulkan/PipelineBase.cs)0
-rw-r--r--src/Ryujinx.Graphics.Vulkan/PipelineConverter.cs (renamed from Ryujinx.Graphics.Vulkan/PipelineConverter.cs)0
-rw-r--r--src/Ryujinx.Graphics.Vulkan/PipelineDynamicState.cs (renamed from Ryujinx.Graphics.Vulkan/PipelineDynamicState.cs)0
-rw-r--r--src/Ryujinx.Graphics.Vulkan/PipelineFull.cs (renamed from Ryujinx.Graphics.Vulkan/PipelineFull.cs)0
-rw-r--r--src/Ryujinx.Graphics.Vulkan/PipelineHelperShader.cs (renamed from Ryujinx.Graphics.Vulkan/PipelineHelperShader.cs)0
-rw-r--r--src/Ryujinx.Graphics.Vulkan/PipelineLayoutCache.cs (renamed from Ryujinx.Graphics.Vulkan/PipelineLayoutCache.cs)0
-rw-r--r--src/Ryujinx.Graphics.Vulkan/PipelineLayoutCacheEntry.cs (renamed from Ryujinx.Graphics.Vulkan/PipelineLayoutCacheEntry.cs)0
-rw-r--r--src/Ryujinx.Graphics.Vulkan/PipelineLayoutFactory.cs (renamed from Ryujinx.Graphics.Vulkan/PipelineLayoutFactory.cs)0
-rw-r--r--src/Ryujinx.Graphics.Vulkan/PipelineState.cs (renamed from Ryujinx.Graphics.Vulkan/PipelineState.cs)0
-rw-r--r--src/Ryujinx.Graphics.Vulkan/PipelineUid.cs (renamed from Ryujinx.Graphics.Vulkan/PipelineUid.cs)0
-rw-r--r--src/Ryujinx.Graphics.Vulkan/Queries/BufferedQuery.cs (renamed from Ryujinx.Graphics.Vulkan/Queries/BufferedQuery.cs)0
-rw-r--r--src/Ryujinx.Graphics.Vulkan/Queries/CounterQueue.cs (renamed from Ryujinx.Graphics.Vulkan/Queries/CounterQueue.cs)0
-rw-r--r--src/Ryujinx.Graphics.Vulkan/Queries/CounterQueueEvent.cs (renamed from Ryujinx.Graphics.Vulkan/Queries/CounterQueueEvent.cs)0
-rw-r--r--src/Ryujinx.Graphics.Vulkan/Queries/Counters.cs (renamed from Ryujinx.Graphics.Vulkan/Queries/Counters.cs)0
-rw-r--r--src/Ryujinx.Graphics.Vulkan/Ryujinx.Graphics.Vulkan.csproj (renamed from Ryujinx.Graphics.Vulkan/Ryujinx.Graphics.Vulkan.csproj)0
-rw-r--r--src/Ryujinx.Graphics.Vulkan/SamplerHolder.cs (renamed from Ryujinx.Graphics.Vulkan/SamplerHolder.cs)0
-rw-r--r--src/Ryujinx.Graphics.Vulkan/SemaphoreHolder.cs (renamed from Ryujinx.Graphics.Vulkan/SemaphoreHolder.cs)0
-rw-r--r--src/Ryujinx.Graphics.Vulkan/Shader.cs (renamed from Ryujinx.Graphics.Vulkan/Shader.cs)0
-rw-r--r--src/Ryujinx.Graphics.Vulkan/ShaderCollection.cs (renamed from Ryujinx.Graphics.Vulkan/ShaderCollection.cs)0
-rw-r--r--src/Ryujinx.Graphics.Vulkan/Shaders/ChangeBufferStrideShaderSource.comp (renamed from Ryujinx.Graphics.Vulkan/Shaders/ChangeBufferStrideShaderSource.comp)0
-rw-r--r--src/Ryujinx.Graphics.Vulkan/Shaders/ColorBlitClearAlphaFragmentShaderSource.frag (renamed from Ryujinx.Graphics.Vulkan/Shaders/ColorBlitClearAlphaFragmentShaderSource.frag)0
-rw-r--r--src/Ryujinx.Graphics.Vulkan/Shaders/ColorBlitFragmentShaderSource.frag (renamed from Ryujinx.Graphics.Vulkan/Shaders/ColorBlitFragmentShaderSource.frag)0
-rw-r--r--src/Ryujinx.Graphics.Vulkan/Shaders/ColorBlitMsFragmentShaderSource.frag (renamed from Ryujinx.Graphics.Vulkan/Shaders/ColorBlitMsFragmentShaderSource.frag)0
-rw-r--r--src/Ryujinx.Graphics.Vulkan/Shaders/ColorBlitVertexShaderSource.vert (renamed from Ryujinx.Graphics.Vulkan/Shaders/ColorBlitVertexShaderSource.vert)0
-rw-r--r--src/Ryujinx.Graphics.Vulkan/Shaders/ColorClearFFragmentShaderSource.frag (renamed from Ryujinx.Graphics.Vulkan/Shaders/ColorClearFFragmentShaderSource.frag)0
-rw-r--r--src/Ryujinx.Graphics.Vulkan/Shaders/ColorClearSIFragmentShaderSource.frag (renamed from Ryujinx.Graphics.Vulkan/Shaders/ColorClearSIFragmentShaderSource.frag)0
-rw-r--r--src/Ryujinx.Graphics.Vulkan/Shaders/ColorClearUIFragmentShaderSource.frag (renamed from Ryujinx.Graphics.Vulkan/Shaders/ColorClearUIFragmentShaderSource.frag)0
-rw-r--r--src/Ryujinx.Graphics.Vulkan/Shaders/ColorClearVertexShaderSource.vert (renamed from Ryujinx.Graphics.Vulkan/Shaders/ColorClearVertexShaderSource.vert)0
-rw-r--r--src/Ryujinx.Graphics.Vulkan/Shaders/ColorCopyShorteningComputeShaderSource.comp (renamed from Ryujinx.Graphics.Vulkan/Shaders/ColorCopyShorteningComputeShaderSource.comp)0
-rw-r--r--src/Ryujinx.Graphics.Vulkan/Shaders/ColorCopyToNonMsComputeShaderSource.comp (renamed from Ryujinx.Graphics.Vulkan/Shaders/ColorCopyToNonMsComputeShaderSource.comp)0
-rw-r--r--src/Ryujinx.Graphics.Vulkan/Shaders/ColorCopyWideningComputeShaderSource.comp (renamed from Ryujinx.Graphics.Vulkan/Shaders/ColorCopyWideningComputeShaderSource.comp)0
-rw-r--r--src/Ryujinx.Graphics.Vulkan/Shaders/ColorDrawToMsFragmentShaderSource.frag (renamed from Ryujinx.Graphics.Vulkan/Shaders/ColorDrawToMsFragmentShaderSource.frag)0
-rw-r--r--src/Ryujinx.Graphics.Vulkan/Shaders/ColorDrawToMsVertexShaderSource.vert (renamed from Ryujinx.Graphics.Vulkan/Shaders/ColorDrawToMsVertexShaderSource.vert)0
-rw-r--r--src/Ryujinx.Graphics.Vulkan/Shaders/ConvertIndexBufferShaderSource.comp (renamed from Ryujinx.Graphics.Vulkan/Shaders/ConvertIndexBufferShaderSource.comp)0
-rw-r--r--src/Ryujinx.Graphics.Vulkan/Shaders/ConvertIndirectDataShaderSource.comp (renamed from Ryujinx.Graphics.Vulkan/Shaders/ConvertIndirectDataShaderSource.comp)0
-rw-r--r--src/Ryujinx.Graphics.Vulkan/Shaders/DepthBlitFragmentShaderSource.frag (renamed from Ryujinx.Graphics.Vulkan/Shaders/DepthBlitFragmentShaderSource.frag)0
-rw-r--r--src/Ryujinx.Graphics.Vulkan/Shaders/DepthBlitMsFragmentShaderSource.frag (renamed from Ryujinx.Graphics.Vulkan/Shaders/DepthBlitMsFragmentShaderSource.frag)0
-rw-r--r--src/Ryujinx.Graphics.Vulkan/Shaders/DepthDrawToMsFragmentShaderSource.frag (renamed from Ryujinx.Graphics.Vulkan/Shaders/DepthDrawToMsFragmentShaderSource.frag)0
-rw-r--r--src/Ryujinx.Graphics.Vulkan/Shaders/DepthDrawToNonMsFragmentShaderSource.frag (renamed from Ryujinx.Graphics.Vulkan/Shaders/DepthDrawToNonMsFragmentShaderSource.frag)0
-rw-r--r--src/Ryujinx.Graphics.Vulkan/Shaders/ShaderBinaries.cs (renamed from Ryujinx.Graphics.Vulkan/Shaders/ShaderBinaries.cs)0
-rw-r--r--src/Ryujinx.Graphics.Vulkan/Shaders/StencilBlitFragmentShaderSource.frag (renamed from Ryujinx.Graphics.Vulkan/Shaders/StencilBlitFragmentShaderSource.frag)0
-rw-r--r--src/Ryujinx.Graphics.Vulkan/Shaders/StencilBlitMsFragmentShaderSource.frag (renamed from Ryujinx.Graphics.Vulkan/Shaders/StencilBlitMsFragmentShaderSource.frag)0
-rw-r--r--src/Ryujinx.Graphics.Vulkan/Shaders/StencilDrawToMsFragmentShaderSource.frag (renamed from Ryujinx.Graphics.Vulkan/Shaders/StencilDrawToMsFragmentShaderSource.frag)0
-rw-r--r--src/Ryujinx.Graphics.Vulkan/Shaders/StencilDrawToNonMsFragmentShaderSource.frag (renamed from Ryujinx.Graphics.Vulkan/Shaders/StencilDrawToNonMsFragmentShaderSource.frag)0
-rw-r--r--src/Ryujinx.Graphics.Vulkan/SpecInfo.cs (renamed from Ryujinx.Graphics.Vulkan/SpecInfo.cs)0
-rw-r--r--src/Ryujinx.Graphics.Vulkan/StagingBuffer.cs (renamed from Ryujinx.Graphics.Vulkan/StagingBuffer.cs)0
-rw-r--r--src/Ryujinx.Graphics.Vulkan/SyncManager.cs (renamed from Ryujinx.Graphics.Vulkan/SyncManager.cs)0
-rw-r--r--src/Ryujinx.Graphics.Vulkan/TextureBuffer.cs (renamed from Ryujinx.Graphics.Vulkan/TextureBuffer.cs)0
-rw-r--r--src/Ryujinx.Graphics.Vulkan/TextureCopy.cs (renamed from Ryujinx.Graphics.Vulkan/TextureCopy.cs)0
-rw-r--r--src/Ryujinx.Graphics.Vulkan/TextureStorage.cs (renamed from Ryujinx.Graphics.Vulkan/TextureStorage.cs)0
-rw-r--r--src/Ryujinx.Graphics.Vulkan/TextureView.cs (renamed from Ryujinx.Graphics.Vulkan/TextureView.cs)0
-rw-r--r--src/Ryujinx.Graphics.Vulkan/Vendor.cs (renamed from Ryujinx.Graphics.Vulkan/Vendor.cs)0
-rw-r--r--src/Ryujinx.Graphics.Vulkan/VertexBufferState.cs (renamed from Ryujinx.Graphics.Vulkan/VertexBufferState.cs)0
-rw-r--r--src/Ryujinx.Graphics.Vulkan/VulkanConfiguration.cs (renamed from Ryujinx.Graphics.Vulkan/VulkanConfiguration.cs)0
-rw-r--r--src/Ryujinx.Graphics.Vulkan/VulkanDebugMessenger.cs (renamed from Ryujinx.Graphics.Vulkan/VulkanDebugMessenger.cs)0
-rw-r--r--src/Ryujinx.Graphics.Vulkan/VulkanException.cs (renamed from Ryujinx.Graphics.Vulkan/VulkanException.cs)0
-rw-r--r--src/Ryujinx.Graphics.Vulkan/VulkanInitialization.cs (renamed from Ryujinx.Graphics.Vulkan/VulkanInitialization.cs)0
-rw-r--r--src/Ryujinx.Graphics.Vulkan/VulkanInstance.cs (renamed from Ryujinx.Graphics.Vulkan/VulkanInstance.cs)0
-rw-r--r--src/Ryujinx.Graphics.Vulkan/VulkanPhysicalDevice.cs (renamed from Ryujinx.Graphics.Vulkan/VulkanPhysicalDevice.cs)0
-rw-r--r--src/Ryujinx.Graphics.Vulkan/VulkanRenderer.cs (renamed from Ryujinx.Graphics.Vulkan/VulkanRenderer.cs)0
-rw-r--r--src/Ryujinx.Graphics.Vulkan/Window.cs (renamed from Ryujinx.Graphics.Vulkan/Window.cs)0
-rw-r--r--src/Ryujinx.Graphics.Vulkan/WindowBase.cs (renamed from Ryujinx.Graphics.Vulkan/WindowBase.cs)0
-rw-r--r--src/Ryujinx.HLE/AssemblyInfo.cs (renamed from Ryujinx.HLE/AssemblyInfo.cs)0
-rw-r--r--src/Ryujinx.HLE/Exceptions/GuestBrokeExecutionException.cs (renamed from Ryujinx.HLE/Exceptions/GuestBrokeExecutionException.cs)0
-rw-r--r--src/Ryujinx.HLE/Exceptions/InternalServiceException.cs (renamed from Ryujinx.HLE/Exceptions/InternalServiceException.cs)0
-rw-r--r--src/Ryujinx.HLE/Exceptions/InvalidFirmwarePackageException.cs (renamed from Ryujinx.HLE/Exceptions/InvalidFirmwarePackageException.cs)0
-rw-r--r--src/Ryujinx.HLE/Exceptions/InvalidNpdmException.cs (renamed from Ryujinx.HLE/Exceptions/InvalidNpdmException.cs)0
-rw-r--r--src/Ryujinx.HLE/Exceptions/InvalidStructLayoutException.cs (renamed from Ryujinx.HLE/Exceptions/InvalidStructLayoutException.cs)0
-rw-r--r--src/Ryujinx.HLE/Exceptions/InvalidSystemResourceException.cs (renamed from Ryujinx.HLE/Exceptions/InvalidSystemResourceException.cs)0
-rw-r--r--src/Ryujinx.HLE/Exceptions/ServiceNotImplementedException.cs (renamed from Ryujinx.HLE/Exceptions/ServiceNotImplementedException.cs)0
-rw-r--r--src/Ryujinx.HLE/Exceptions/TamperCompilationException.cs (renamed from Ryujinx.HLE/Exceptions/TamperCompilationException.cs)0
-rw-r--r--src/Ryujinx.HLE/Exceptions/TamperExecutionException.cs (renamed from Ryujinx.HLE/Exceptions/TamperExecutionException.cs)0
-rw-r--r--src/Ryujinx.HLE/Exceptions/UndefinedInstructionException.cs (renamed from Ryujinx.HLE/Exceptions/UndefinedInstructionException.cs)0
-rw-r--r--src/Ryujinx.HLE/FileSystem/ContentManager.cs (renamed from Ryujinx.HLE/FileSystem/ContentManager.cs)0
-rw-r--r--src/Ryujinx.HLE/FileSystem/ContentPath.cs (renamed from Ryujinx.HLE/FileSystem/ContentPath.cs)0
-rw-r--r--src/Ryujinx.HLE/FileSystem/EncryptedFileSystemCreator.cs (renamed from Ryujinx.HLE/FileSystem/EncryptedFileSystemCreator.cs)0
-rw-r--r--src/Ryujinx.HLE/FileSystem/LocationEntry.cs (renamed from Ryujinx.HLE/FileSystem/LocationEntry.cs)0
-rw-r--r--src/Ryujinx.HLE/FileSystem/SystemVersion.cs (renamed from Ryujinx.HLE/FileSystem/SystemVersion.cs)0
-rw-r--r--src/Ryujinx.HLE/FileSystem/VirtualFileSystem.cs (renamed from Ryujinx.HLE/FileSystem/VirtualFileSystem.cs)0
-rw-r--r--src/Ryujinx.HLE/HLEConfiguration.cs (renamed from Ryujinx.HLE/HLEConfiguration.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Applets/AppletManager.cs (renamed from Ryujinx.HLE/HOS/Applets/AppletManager.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Applets/Browser/BootDisplayKind.cs (renamed from Ryujinx.HLE/HOS/Applets/Browser/BootDisplayKind.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Applets/Browser/BrowserApplet.cs (renamed from Ryujinx.HLE/HOS/Applets/Browser/BrowserApplet.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Applets/Browser/BrowserArgument.cs (renamed from Ryujinx.HLE/HOS/Applets/Browser/BrowserArgument.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Applets/Browser/BrowserOutput.cs (renamed from Ryujinx.HLE/HOS/Applets/Browser/BrowserOutput.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Applets/Browser/BrowserOutputType.cs (renamed from Ryujinx.HLE/HOS/Applets/Browser/BrowserOutputType.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Applets/Browser/DocumentKind.cs (renamed from Ryujinx.HLE/HOS/Applets/Browser/DocumentKind.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Applets/Browser/LeftStickMode.cs (renamed from Ryujinx.HLE/HOS/Applets/Browser/LeftStickMode.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Applets/Browser/ShimKind.cs (renamed from Ryujinx.HLE/HOS/Applets/Browser/ShimKind.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Applets/Browser/WebArgHeader.cs (renamed from Ryujinx.HLE/HOS/Applets/Browser/WebArgHeader.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Applets/Browser/WebArgTLV.cs (renamed from Ryujinx.HLE/HOS/Applets/Browser/WebArgTLV.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Applets/Browser/WebArgTLVType.cs (renamed from Ryujinx.HLE/HOS/Applets/Browser/WebArgTLVType.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Applets/Browser/WebCommonReturnValue.cs (renamed from Ryujinx.HLE/HOS/Applets/Browser/WebCommonReturnValue.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Applets/Browser/WebExitReason.cs (renamed from Ryujinx.HLE/HOS/Applets/Browser/WebExitReason.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Applets/CommonArguments.cs (renamed from Ryujinx.HLE/HOS/Applets/CommonArguments.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Applets/Controller/ControllerApplet.cs (renamed from Ryujinx.HLE/HOS/Applets/Controller/ControllerApplet.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Applets/Controller/ControllerAppletUiArgs.cs (renamed from Ryujinx.HLE/HOS/Applets/Controller/ControllerAppletUiArgs.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Applets/Controller/ControllerSupportArgHeader.cs (renamed from Ryujinx.HLE/HOS/Applets/Controller/ControllerSupportArgHeader.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Applets/Controller/ControllerSupportArgPrivate.cs (renamed from Ryujinx.HLE/HOS/Applets/Controller/ControllerSupportArgPrivate.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Applets/Controller/ControllerSupportArgV7.cs (renamed from Ryujinx.HLE/HOS/Applets/Controller/ControllerSupportArgV7.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Applets/Controller/ControllerSupportArgVPre7.cs (renamed from Ryujinx.HLE/HOS/Applets/Controller/ControllerSupportArgVPre7.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Applets/Controller/ControllerSupportMode.cs (renamed from Ryujinx.HLE/HOS/Applets/Controller/ControllerSupportMode.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Applets/Controller/ControllerSupportResultInfo.cs (renamed from Ryujinx.HLE/HOS/Applets/Controller/ControllerSupportResultInfo.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Applets/Error/ApplicationErrorArg.cs (renamed from Ryujinx.HLE/HOS/Applets/Error/ApplicationErrorArg.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Applets/Error/ErrorApplet.cs (renamed from Ryujinx.HLE/HOS/Applets/Error/ErrorApplet.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Applets/Error/ErrorCommonArg.cs (renamed from Ryujinx.HLE/HOS/Applets/Error/ErrorCommonArg.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Applets/Error/ErrorCommonHeader.cs (renamed from Ryujinx.HLE/HOS/Applets/Error/ErrorCommonHeader.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Applets/Error/ErrorType.cs (renamed from Ryujinx.HLE/HOS/Applets/Error/ErrorType.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Applets/IApplet.cs (renamed from Ryujinx.HLE/HOS/Applets/IApplet.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Applets/PlayerSelect/PlayerSelectApplet.cs (renamed from Ryujinx.HLE/HOS/Applets/PlayerSelect/PlayerSelectApplet.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Applets/PlayerSelect/PlayerSelectResult.cs (renamed from Ryujinx.HLE/HOS/Applets/PlayerSelect/PlayerSelectResult.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/InitialCursorPosition.cs (renamed from Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/InitialCursorPosition.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/InlineKeyboardRequest.cs (renamed from Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/InlineKeyboardRequest.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/InlineKeyboardResponse.cs (renamed from Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/InlineKeyboardResponse.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/InlineKeyboardState.cs (renamed from Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/InlineKeyboardState.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/InlineResponses.cs (renamed from Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/InlineResponses.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/InputFormMode.cs (renamed from Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/InputFormMode.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/InvalidButtonFlags.cs (renamed from Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/InvalidButtonFlags.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/InvalidCharFlags.cs (renamed from Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/InvalidCharFlags.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/KeyboardCalcFlags.cs (renamed from Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/KeyboardCalcFlags.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/KeyboardInputMode.cs (renamed from Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/KeyboardInputMode.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/KeyboardMiniaturizationMode.cs (renamed from Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/KeyboardMiniaturizationMode.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/KeyboardMode.cs (renamed from Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/KeyboardMode.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/KeyboardResult.cs (renamed from Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/KeyboardResult.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/PasswordMode.cs (renamed from Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/PasswordMode.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/Resources/Icon_BtnA.png (renamed from Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/Resources/Icon_BtnA.png)bin1074 -> 1074 bytes
-rw-r--r--src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/Resources/Icon_BtnA.svg (renamed from Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/Resources/Icon_BtnA.svg)0
-rw-r--r--src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/Resources/Icon_BtnB.png (renamed from Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/Resources/Icon_BtnB.png)bin992 -> 992 bytes
-rw-r--r--src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/Resources/Icon_BtnB.svg (renamed from Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/Resources/Icon_BtnB.svg)0
-rw-r--r--src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/Resources/Icon_KeyF6.png (renamed from Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/Resources/Icon_KeyF6.png)bin842 -> 842 bytes
-rw-r--r--src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/Resources/Icon_KeyF6.svg (renamed from Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/Resources/Icon_KeyF6.svg)0
-rw-r--r--src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/Resources/Logo_Ryujinx.png (renamed from Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/Resources/Logo_Ryujinx.png)bin52972 -> 52972 bytes
-rw-r--r--src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/SoftwareKeyboardAppear.cs (renamed from Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/SoftwareKeyboardAppear.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/SoftwareKeyboardAppearEx.cs (renamed from Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/SoftwareKeyboardAppearEx.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/SoftwareKeyboardApplet.cs (renamed from Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/SoftwareKeyboardApplet.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/SoftwareKeyboardCalc.cs (renamed from Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/SoftwareKeyboardCalc.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/SoftwareKeyboardCalcEx.cs (renamed from Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/SoftwareKeyboardCalcEx.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/SoftwareKeyboardConfig.cs (renamed from Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/SoftwareKeyboardConfig.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/SoftwareKeyboardCustomizeDic.cs (renamed from Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/SoftwareKeyboardCustomizeDic.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/SoftwareKeyboardDictSet.cs (renamed from Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/SoftwareKeyboardDictSet.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/SoftwareKeyboardInitialize.cs (renamed from Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/SoftwareKeyboardInitialize.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/SoftwareKeyboardRenderer.cs (renamed from Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/SoftwareKeyboardRenderer.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/SoftwareKeyboardRendererBase.cs (renamed from Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/SoftwareKeyboardRendererBase.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/SoftwareKeyboardState.cs (renamed from Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/SoftwareKeyboardState.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/SoftwareKeyboardUiArgs.cs (renamed from Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/SoftwareKeyboardUiArgs.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/SoftwareKeyboardUiState.cs (renamed from Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/SoftwareKeyboardUiState.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/SoftwareKeyboardUserWord.cs (renamed from Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/SoftwareKeyboardUserWord.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/TRef.cs (renamed from Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/TRef.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/TimedAction.cs (renamed from Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/TimedAction.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/ArmProcessContext.cs (renamed from Ryujinx.HLE/HOS/ArmProcessContext.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/ArmProcessContextFactory.cs (renamed from Ryujinx.HLE/HOS/ArmProcessContextFactory.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/ArraySubscriptingExpression.cs (renamed from Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/ArraySubscriptingExpression.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/ArrayType.cs (renamed from Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/ArrayType.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/BaseNode.cs (renamed from Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/BaseNode.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/BinaryExpression.cs (renamed from Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/BinaryExpression.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/BracedExpression.cs (renamed from Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/BracedExpression.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/BracedRangeExpression.cs (renamed from Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/BracedRangeExpression.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/CallExpression.cs (renamed from Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/CallExpression.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/CastExpression.cs (renamed from Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/CastExpression.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/ConditionalExpression.cs (renamed from Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/ConditionalExpression.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/ConversionExpression.cs (renamed from Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/ConversionExpression.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/ConversionOperatorType.cs (renamed from Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/ConversionOperatorType.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/CtorDtorNameType.cs (renamed from Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/CtorDtorNameType.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/CtorVtableSpecialName.cs (renamed from Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/CtorVtableSpecialName.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/DeleteExpression.cs (renamed from Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/DeleteExpression.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/DtorName.cs (renamed from Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/DtorName.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/DynamicExceptionSpec.cs (renamed from Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/DynamicExceptionSpec.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/ElaboratedType.cs (renamed from Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/ElaboratedType.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/EnclosedExpression.cs (renamed from Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/EnclosedExpression.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/EncodedFunction.cs (renamed from Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/EncodedFunction.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/FoldExpression.cs (renamed from Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/FoldExpression.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/ForwardTemplateReference.cs (renamed from Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/ForwardTemplateReference.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/FunctionParameter.cs (renamed from Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/FunctionParameter.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/FunctionType.cs (renamed from Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/FunctionType.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/GlobalQualifiedName.cs (renamed from Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/GlobalQualifiedName.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/InitListExpression.cs (renamed from Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/InitListExpression.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/IntegerCastExpression.cs (renamed from Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/IntegerCastExpression.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/IntegerLiteral.cs (renamed from Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/IntegerLiteral.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/LiteralOperator.cs (renamed from Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/LiteralOperator.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/LocalName.cs (renamed from Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/LocalName.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/MemberExpression.cs (renamed from Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/MemberExpression.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/NameType.cs (renamed from Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/NameType.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/NameTypeWithTemplateArguments.cs (renamed from Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/NameTypeWithTemplateArguments.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/NestedName.cs (renamed from Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/NestedName.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/NewExpression.cs (renamed from Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/NewExpression.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/NodeArray.cs (renamed from Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/NodeArray.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/NoexceptSpec.cs (renamed from Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/NoexceptSpec.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/PackedTemplateParameter.cs (renamed from Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/PackedTemplateParameter.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/PackedTemplateParameterExpansion.cs (renamed from Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/PackedTemplateParameterExpansion.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/ParentNode.cs (renamed from Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/ParentNode.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/PointerType.cs (renamed from Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/PointerType.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/PostfixExpression.cs (renamed from Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/PostfixExpression.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/PostfixQualifiedType.cs (renamed from Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/PostfixQualifiedType.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/PrefixExpression.cs (renamed from Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/PrefixExpression.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/QualifiedName.cs (renamed from Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/QualifiedName.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/Qualifier.cs (renamed from Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/Qualifier.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/ReferenceType.cs (renamed from Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/ReferenceType.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/SpecialName.cs (renamed from Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/SpecialName.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/SpecialSubstitution.cs (renamed from Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/SpecialSubstitution.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/StdQualifiedName.cs (renamed from Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/StdQualifiedName.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/TemplateArguments.cs (renamed from Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/TemplateArguments.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/ThrowExpression.cs (renamed from Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/ThrowExpression.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Demangler.cs (renamed from Ryujinx.HLE/HOS/Diagnostics/Demangler/Demangler.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/HomebrewRomFsStream.cs (renamed from Ryujinx.HLE/HOS/HomebrewRomFsStream.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Horizon.cs (renamed from Ryujinx.HLE/HOS/Horizon.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/IdDictionary.cs (renamed from Ryujinx.HLE/HOS/IdDictionary.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Ipc/IpcBuffDesc.cs (renamed from Ryujinx.HLE/HOS/Ipc/IpcBuffDesc.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Ipc/IpcHandleDesc.cs (renamed from Ryujinx.HLE/HOS/Ipc/IpcHandleDesc.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Ipc/IpcMagic.cs (renamed from Ryujinx.HLE/HOS/Ipc/IpcMagic.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Ipc/IpcMessage.cs (renamed from Ryujinx.HLE/HOS/Ipc/IpcMessage.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Ipc/IpcMessageType.cs (renamed from Ryujinx.HLE/HOS/Ipc/IpcMessageType.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Ipc/IpcPtrBuffDesc.cs (renamed from Ryujinx.HLE/HOS/Ipc/IpcPtrBuffDesc.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Ipc/IpcRecvListBuffDesc.cs (renamed from Ryujinx.HLE/HOS/Ipc/IpcRecvListBuffDesc.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Ipc/ServiceProcessRequest.cs (renamed from Ryujinx.HLE/HOS/Ipc/ServiceProcessRequest.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Kernel/Common/IKFutureSchedulerObject.cs (renamed from Ryujinx.HLE/HOS/Kernel/Common/IKFutureSchedulerObject.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Kernel/Common/KAutoObject.cs (renamed from Ryujinx.HLE/HOS/Kernel/Common/KAutoObject.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Kernel/Common/KResourceLimit.cs (renamed from Ryujinx.HLE/HOS/Kernel/Common/KResourceLimit.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Kernel/Common/KSynchronizationObject.cs (renamed from Ryujinx.HLE/HOS/Kernel/Common/KSynchronizationObject.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Kernel/Common/KSystemControl.cs (renamed from Ryujinx.HLE/HOS/Kernel/Common/KSystemControl.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Kernel/Common/KTimeManager.cs (renamed from Ryujinx.HLE/HOS/Kernel/Common/KTimeManager.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Kernel/Common/KernelInit.cs (renamed from Ryujinx.HLE/HOS/Kernel/Common/KernelInit.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Kernel/Common/KernelTransfer.cs (renamed from Ryujinx.HLE/HOS/Kernel/Common/KernelTransfer.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Kernel/Common/LimitableResource.cs (renamed from Ryujinx.HLE/HOS/Kernel/Common/LimitableResource.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Kernel/Common/MemoryArrange.cs (renamed from Ryujinx.HLE/HOS/Kernel/Common/MemoryArrange.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Kernel/Common/MemroySize.cs (renamed from Ryujinx.HLE/HOS/Kernel/Common/MemroySize.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Kernel/Common/MersenneTwister.cs (renamed from Ryujinx.HLE/HOS/Kernel/Common/MersenneTwister.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Kernel/Ipc/ChannelState.cs (renamed from Ryujinx.HLE/HOS/Kernel/Ipc/ChannelState.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Kernel/Ipc/KBufferDescriptor.cs (renamed from Ryujinx.HLE/HOS/Kernel/Ipc/KBufferDescriptor.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Kernel/Ipc/KBufferDescriptorTable.cs (renamed from Ryujinx.HLE/HOS/Kernel/Ipc/KBufferDescriptorTable.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Kernel/Ipc/KClientPort.cs (renamed from Ryujinx.HLE/HOS/Kernel/Ipc/KClientPort.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Kernel/Ipc/KClientSession.cs (renamed from Ryujinx.HLE/HOS/Kernel/Ipc/KClientSession.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Kernel/Ipc/KLightClientSession.cs (renamed from Ryujinx.HLE/HOS/Kernel/Ipc/KLightClientSession.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Kernel/Ipc/KLightServerSession.cs (renamed from Ryujinx.HLE/HOS/Kernel/Ipc/KLightServerSession.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Kernel/Ipc/KLightSession.cs (renamed from Ryujinx.HLE/HOS/Kernel/Ipc/KLightSession.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Kernel/Ipc/KPort.cs (renamed from Ryujinx.HLE/HOS/Kernel/Ipc/KPort.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Kernel/Ipc/KServerPort.cs (renamed from Ryujinx.HLE/HOS/Kernel/Ipc/KServerPort.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Kernel/Ipc/KServerSession.cs (renamed from Ryujinx.HLE/HOS/Kernel/Ipc/KServerSession.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Kernel/Ipc/KSession.cs (renamed from Ryujinx.HLE/HOS/Kernel/Ipc/KSession.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Kernel/Ipc/KSessionRequest.cs (renamed from Ryujinx.HLE/HOS/Kernel/Ipc/KSessionRequest.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Kernel/KernelConstants.cs (renamed from Ryujinx.HLE/HOS/Kernel/KernelConstants.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Kernel/KernelContext.cs (renamed from Ryujinx.HLE/HOS/Kernel/KernelContext.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Kernel/KernelStatic.cs (renamed from Ryujinx.HLE/HOS/Kernel/KernelStatic.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Kernel/Memory/AddressSpaceType.cs (renamed from Ryujinx.HLE/HOS/Kernel/Memory/AddressSpaceType.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Kernel/Memory/DramMemoryMap.cs (renamed from Ryujinx.HLE/HOS/Kernel/Memory/DramMemoryMap.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Kernel/Memory/KCodeMemory.cs (renamed from Ryujinx.HLE/HOS/Kernel/Memory/KCodeMemory.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Kernel/Memory/KMemoryBlock.cs (renamed from Ryujinx.HLE/HOS/Kernel/Memory/KMemoryBlock.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Kernel/Memory/KMemoryBlockManager.cs (renamed from Ryujinx.HLE/HOS/Kernel/Memory/KMemoryBlockManager.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Kernel/Memory/KMemoryBlockSlabManager.cs (renamed from Ryujinx.HLE/HOS/Kernel/Memory/KMemoryBlockSlabManager.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Kernel/Memory/KMemoryInfo.cs (renamed from Ryujinx.HLE/HOS/Kernel/Memory/KMemoryInfo.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Kernel/Memory/KMemoryManager.cs (renamed from Ryujinx.HLE/HOS/Kernel/Memory/KMemoryManager.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Kernel/Memory/KMemoryRegionManager.cs (renamed from Ryujinx.HLE/HOS/Kernel/Memory/KMemoryRegionManager.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Kernel/Memory/KPageBitmap.cs (renamed from Ryujinx.HLE/HOS/Kernel/Memory/KPageBitmap.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Kernel/Memory/KPageHeap.cs (renamed from Ryujinx.HLE/HOS/Kernel/Memory/KPageHeap.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Kernel/Memory/KPageList.cs (renamed from Ryujinx.HLE/HOS/Kernel/Memory/KPageList.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Kernel/Memory/KPageNode.cs (renamed from Ryujinx.HLE/HOS/Kernel/Memory/KPageNode.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Kernel/Memory/KPageTable.cs (renamed from Ryujinx.HLE/HOS/Kernel/Memory/KPageTable.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Kernel/Memory/KPageTableBase.cs (renamed from Ryujinx.HLE/HOS/Kernel/Memory/KPageTableBase.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Kernel/Memory/KScopedPageList.cs (renamed from Ryujinx.HLE/HOS/Kernel/Memory/KScopedPageList.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Kernel/Memory/KSharedMemory.cs (renamed from Ryujinx.HLE/HOS/Kernel/Memory/KSharedMemory.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Kernel/Memory/KSlabHeap.cs (renamed from Ryujinx.HLE/HOS/Kernel/Memory/KSlabHeap.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Kernel/Memory/KTransferMemory.cs (renamed from Ryujinx.HLE/HOS/Kernel/Memory/KTransferMemory.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Kernel/Memory/MemoryAttribute.cs (renamed from Ryujinx.HLE/HOS/Kernel/Memory/MemoryAttribute.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Kernel/Memory/MemoryFillValue.cs (renamed from Ryujinx.HLE/HOS/Kernel/Memory/MemoryFillValue.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Kernel/Memory/MemoryPermission.cs (renamed from Ryujinx.HLE/HOS/Kernel/Memory/MemoryPermission.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Kernel/Memory/MemoryRegion.cs (renamed from Ryujinx.HLE/HOS/Kernel/Memory/MemoryRegion.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Kernel/Memory/MemoryState.cs (renamed from Ryujinx.HLE/HOS/Kernel/Memory/MemoryState.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Kernel/Memory/SharedMemoryStorage.cs (renamed from Ryujinx.HLE/HOS/Kernel/Memory/SharedMemoryStorage.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Kernel/Process/CapabilityExtensions.cs (renamed from Ryujinx.HLE/HOS/Kernel/Process/CapabilityExtensions.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Kernel/Process/CapabilityType.cs (renamed from Ryujinx.HLE/HOS/Kernel/Process/CapabilityType.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Kernel/Process/HleProcessDebugger.cs (renamed from Ryujinx.HLE/HOS/Kernel/Process/HleProcessDebugger.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Kernel/Process/IProcessContext.cs (renamed from Ryujinx.HLE/HOS/Kernel/Process/IProcessContext.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Kernel/Process/IProcessContextFactory.cs (renamed from Ryujinx.HLE/HOS/Kernel/Process/IProcessContextFactory.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Kernel/Process/KContextIdManager.cs (renamed from Ryujinx.HLE/HOS/Kernel/Process/KContextIdManager.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Kernel/Process/KHandleEntry.cs (renamed from Ryujinx.HLE/HOS/Kernel/Process/KHandleEntry.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Kernel/Process/KHandleTable.cs (renamed from Ryujinx.HLE/HOS/Kernel/Process/KHandleTable.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Kernel/Process/KProcess.cs (renamed from Ryujinx.HLE/HOS/Kernel/Process/KProcess.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Kernel/Process/KProcessCapabilities.cs (renamed from Ryujinx.HLE/HOS/Kernel/Process/KProcessCapabilities.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Kernel/Process/KTlsPageInfo.cs (renamed from Ryujinx.HLE/HOS/Kernel/Process/KTlsPageInfo.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Kernel/Process/KTlsPageManager.cs (renamed from Ryujinx.HLE/HOS/Kernel/Process/KTlsPageManager.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Kernel/Process/ProcessContext.cs (renamed from Ryujinx.HLE/HOS/Kernel/Process/ProcessContext.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Kernel/Process/ProcessContextFactory.cs (renamed from Ryujinx.HLE/HOS/Kernel/Process/ProcessContextFactory.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Kernel/Process/ProcessCreationFlags.cs (renamed from Ryujinx.HLE/HOS/Kernel/Process/ProcessCreationFlags.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Kernel/Process/ProcessCreationInfo.cs (renamed from Ryujinx.HLE/HOS/Kernel/Process/ProcessCreationInfo.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Kernel/Process/ProcessExecutionContext.cs (renamed from Ryujinx.HLE/HOS/Kernel/Process/ProcessExecutionContext.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Kernel/Process/ProcessState.cs (renamed from Ryujinx.HLE/HOS/Kernel/Process/ProcessState.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Kernel/Process/ProcessTamperInfo.cs (renamed from Ryujinx.HLE/HOS/Kernel/Process/ProcessTamperInfo.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Kernel/SupervisorCall/CodeMemoryOperation.cs (renamed from Ryujinx.HLE/HOS/Kernel/SupervisorCall/CodeMemoryOperation.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Kernel/SupervisorCall/InfoType.cs (renamed from Ryujinx.HLE/HOS/Kernel/SupervisorCall/InfoType.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Kernel/SupervisorCall/MemoryInfo.cs (renamed from Ryujinx.HLE/HOS/Kernel/SupervisorCall/MemoryInfo.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Kernel/SupervisorCall/PointerSizedAttribute.cs (renamed from Ryujinx.HLE/HOS/Kernel/SupervisorCall/PointerSizedAttribute.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Kernel/SupervisorCall/SvcAttribute.cs (renamed from Ryujinx.HLE/HOS/Kernel/SupervisorCall/SvcAttribute.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Kernel/SupervisorCall/SvcImplAttribute.cs (renamed from Ryujinx.HLE/HOS/Kernel/SupervisorCall/SvcImplAttribute.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Kernel/SupervisorCall/Syscall.cs (renamed from Ryujinx.HLE/HOS/Kernel/SupervisorCall/Syscall.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Kernel/SupervisorCall/SyscallHandler.cs (renamed from Ryujinx.HLE/HOS/Kernel/SupervisorCall/SyscallHandler.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Kernel/SupervisorCall/ThreadContext.cs (renamed from Ryujinx.HLE/HOS/Kernel/SupervisorCall/ThreadContext.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Kernel/Threading/ArbitrationType.cs (renamed from Ryujinx.HLE/HOS/Kernel/Threading/ArbitrationType.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Kernel/Threading/KAddressArbiter.cs (renamed from Ryujinx.HLE/HOS/Kernel/Threading/KAddressArbiter.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Kernel/Threading/KConditionVariable.cs (renamed from Ryujinx.HLE/HOS/Kernel/Threading/KConditionVariable.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Kernel/Threading/KCriticalSection.cs (renamed from Ryujinx.HLE/HOS/Kernel/Threading/KCriticalSection.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Kernel/Threading/KEvent.cs (renamed from Ryujinx.HLE/HOS/Kernel/Threading/KEvent.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Kernel/Threading/KPriorityQueue.cs (renamed from Ryujinx.HLE/HOS/Kernel/Threading/KPriorityQueue.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Kernel/Threading/KReadableEvent.cs (renamed from Ryujinx.HLE/HOS/Kernel/Threading/KReadableEvent.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Kernel/Threading/KScheduler.cs (renamed from Ryujinx.HLE/HOS/Kernel/Threading/KScheduler.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Kernel/Threading/KSynchronization.cs (renamed from Ryujinx.HLE/HOS/Kernel/Threading/KSynchronization.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Kernel/Threading/KThread.cs (renamed from Ryujinx.HLE/HOS/Kernel/Threading/KThread.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Kernel/Threading/KThreadContext.cs (renamed from Ryujinx.HLE/HOS/Kernel/Threading/KThreadContext.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Kernel/Threading/KWritableEvent.cs (renamed from Ryujinx.HLE/HOS/Kernel/Threading/KWritableEvent.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Kernel/Threading/SignalType.cs (renamed from Ryujinx.HLE/HOS/Kernel/Threading/SignalType.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Kernel/Threading/ThreadSchedState.cs (renamed from Ryujinx.HLE/HOS/Kernel/Threading/ThreadSchedState.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Kernel/Threading/ThreadType.cs (renamed from Ryujinx.HLE/HOS/Kernel/Threading/ThreadType.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/LibHacHorizonManager.cs (renamed from Ryujinx.HLE/HOS/LibHacHorizonManager.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/ModLoader.cs (renamed from Ryujinx.HLE/HOS/ModLoader.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/ResultCode.cs (renamed from Ryujinx.HLE/HOS/ResultCode.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/ServiceCtx.cs (renamed from Ryujinx.HLE/HOS/ServiceCtx.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Account/Acc/AccountManager.cs (renamed from Ryujinx.HLE/HOS/Services/Account/Acc/AccountManager.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Account/Acc/AccountSaveDataManager.cs (renamed from Ryujinx.HLE/HOS/Services/Account/Acc/AccountSaveDataManager.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Account/Acc/AccountService/IManagerForApplication.cs (renamed from Ryujinx.HLE/HOS/Services/Account/Acc/AccountService/IManagerForApplication.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Account/Acc/AccountService/IManagerForSystemService.cs (renamed from Ryujinx.HLE/HOS/Services/Account/Acc/AccountService/IManagerForSystemService.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Account/Acc/AccountService/IProfile.cs (renamed from Ryujinx.HLE/HOS/Services/Account/Acc/AccountService/IProfile.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Account/Acc/AccountService/IProfileEditor.cs (renamed from Ryujinx.HLE/HOS/Services/Account/Acc/AccountService/IProfileEditor.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Account/Acc/AccountService/ManagerServer.cs (renamed from Ryujinx.HLE/HOS/Services/Account/Acc/AccountService/ManagerServer.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Account/Acc/AccountService/ProfileServer.cs (renamed from Ryujinx.HLE/HOS/Services/Account/Acc/AccountService/ProfileServer.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Account/Acc/ApplicationServiceServer.cs (renamed from Ryujinx.HLE/HOS/Services/Account/Acc/ApplicationServiceServer.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Account/Acc/AsyncContext/AsyncExecution.cs (renamed from Ryujinx.HLE/HOS/Services/Account/Acc/AsyncContext/AsyncExecution.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Account/Acc/DefaultUserImage.jpg (renamed from Ryujinx.HLE/HOS/Services/Account/Acc/DefaultUserImage.jpg)bin49000 -> 49000 bytes
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Account/Acc/IAccountServiceForAdministrator.cs (renamed from Ryujinx.HLE/HOS/Services/Account/Acc/IAccountServiceForAdministrator.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Account/Acc/IAccountServiceForApplication.cs (renamed from Ryujinx.HLE/HOS/Services/Account/Acc/IAccountServiceForApplication.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Account/Acc/IAccountServiceForSystemService.cs (renamed from Ryujinx.HLE/HOS/Services/Account/Acc/IAccountServiceForSystemService.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Account/Acc/IAsyncContext.cs (renamed from Ryujinx.HLE/HOS/Services/Account/Acc/IAsyncContext.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Account/Acc/IAsyncNetworkServiceLicenseKindContext.cs (renamed from Ryujinx.HLE/HOS/Services/Account/Acc/IAsyncNetworkServiceLicenseKindContext.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Account/Acc/IBaasAccessTokenAccessor.cs (renamed from Ryujinx.HLE/HOS/Services/Account/Acc/IBaasAccessTokenAccessor.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Account/Acc/ProfilesJsonSerializerContext.cs (renamed from Ryujinx.HLE/HOS/Services/Account/Acc/ProfilesJsonSerializerContext.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Account/Acc/Types/AccountServiceFlag.cs (renamed from Ryujinx.HLE/HOS/Services/Account/Acc/Types/AccountServiceFlag.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Account/Acc/Types/AccountState.cs (renamed from Ryujinx.HLE/HOS/Services/Account/Acc/Types/AccountState.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Account/Acc/Types/NetworkServiceLicenseKind.cs (renamed from Ryujinx.HLE/HOS/Services/Account/Acc/Types/NetworkServiceLicenseKind.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Account/Acc/Types/ProfilesJson.cs (renamed from Ryujinx.HLE/HOS/Services/Account/Acc/Types/ProfilesJson.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Account/Acc/Types/UserId.cs (renamed from Ryujinx.HLE/HOS/Services/Account/Acc/Types/UserId.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Account/Acc/Types/UserProfile.cs (renamed from Ryujinx.HLE/HOS/Services/Account/Acc/Types/UserProfile.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Account/Acc/Types/UserProfileJson.cs (renamed from Ryujinx.HLE/HOS/Services/Account/Acc/Types/UserProfileJson.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Account/Dauth/IService.cs (renamed from Ryujinx.HLE/HOS/Services/Account/Dauth/IService.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Account/ResultCode.cs (renamed from Ryujinx.HLE/HOS/Services/Account/ResultCode.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/ILibraryAppletProxy.cs (renamed from Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/ILibraryAppletProxy.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/ISystemAppletProxy.cs (renamed from Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/ISystemAppletProxy.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/LibraryAppletCreator/ILibraryAppletAccessor.cs (renamed from Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/LibraryAppletCreator/ILibraryAppletAccessor.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/LibraryAppletProxy/AppletStandalone.cs (renamed from Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/LibraryAppletProxy/AppletStandalone.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/LibraryAppletProxy/ILibraryAppletSelfAccessor.cs (renamed from Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/LibraryAppletProxy/ILibraryAppletSelfAccessor.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/LibraryAppletProxy/IProcessWindingController.cs (renamed from Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/LibraryAppletProxy/IProcessWindingController.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/SystemAppletProxy/IAppletCommonFunctions.cs (renamed from Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/SystemAppletProxy/IAppletCommonFunctions.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/SystemAppletProxy/IApplicationCreator.cs (renamed from Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/SystemAppletProxy/IApplicationCreator.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/SystemAppletProxy/IAudioController.cs (renamed from Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/SystemAppletProxy/IAudioController.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/SystemAppletProxy/ICommonStateGetter.cs (renamed from Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/SystemAppletProxy/ICommonStateGetter.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/SystemAppletProxy/IDebugFunctions.cs (renamed from Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/SystemAppletProxy/IDebugFunctions.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/SystemAppletProxy/IDisplayController.cs (renamed from Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/SystemAppletProxy/IDisplayController.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/SystemAppletProxy/IGlobalStateController.cs (renamed from Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/SystemAppletProxy/IGlobalStateController.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/SystemAppletProxy/IHomeMenuFunctions.cs (renamed from Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/SystemAppletProxy/IHomeMenuFunctions.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/SystemAppletProxy/ILibraryAppletCreator.cs (renamed from Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/SystemAppletProxy/ILibraryAppletCreator.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/SystemAppletProxy/ISelfController.cs (renamed from Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/SystemAppletProxy/ISelfController.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/SystemAppletProxy/IWindowController.cs (renamed from Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/SystemAppletProxy/IWindowController.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/SystemAppletProxy/Types/AlbumReportOption.cs (renamed from Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/SystemAppletProxy/Types/AlbumReportOption.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/SystemAppletProxy/Types/AppletMessage.cs (renamed from Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/SystemAppletProxy/Types/AppletMessage.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/SystemAppletProxy/Types/FocusState.cs (renamed from Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/SystemAppletProxy/Types/FocusState.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/SystemAppletProxy/Types/OperationMode.cs (renamed from Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/SystemAppletProxy/Types/OperationMode.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/SystemAppletProxy/Types/WirelessPriorityMode.cs (renamed from Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/SystemAppletProxy/Types/WirelessPriorityMode.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Am/AppletAE/AppletFifo.cs (renamed from Ryujinx.HLE/HOS/Services/Am/AppletAE/AppletFifo.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Am/AppletAE/AppletSession.cs (renamed from Ryujinx.HLE/HOS/Services/Am/AppletAE/AppletSession.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Am/AppletAE/IAllSystemAppletProxiesService.cs (renamed from Ryujinx.HLE/HOS/Services/Am/AppletAE/IAllSystemAppletProxiesService.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Am/AppletAE/IAppletFifo.cs (renamed from Ryujinx.HLE/HOS/Services/Am/AppletAE/IAppletFifo.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Am/AppletAE/IStorage.cs (renamed from Ryujinx.HLE/HOS/Services/Am/AppletAE/IStorage.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Am/AppletAE/IStorageAccessor.cs (renamed from Ryujinx.HLE/HOS/Services/Am/AppletAE/IStorageAccessor.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Am/AppletAE/Storage/StorageHelper.cs (renamed from Ryujinx.HLE/HOS/Services/Am/AppletAE/Storage/StorageHelper.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Am/AppletAE/Types/AppletId.cs (renamed from Ryujinx.HLE/HOS/Services/Am/AppletAE/Types/AppletId.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Am/AppletAE/Types/AppletIdentityInfo.cs (renamed from Ryujinx.HLE/HOS/Services/Am/AppletAE/Types/AppletIdentityInfo.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Am/AppletAE/Types/AppletProcessLaunchReason.cs (renamed from Ryujinx.HLE/HOS/Services/Am/AppletAE/Types/AppletProcessLaunchReason.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Am/AppletAE/Types/LibraryAppletInfo.cs (renamed from Ryujinx.HLE/HOS/Services/Am/AppletAE/Types/LibraryAppletInfo.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Am/AppletAE/Types/LibraryAppletMode.cs (renamed from Ryujinx.HLE/HOS/Services/Am/AppletAE/Types/LibraryAppletMode.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Am/AppletOE/ApplicationProxyService/ApplicationProxy/IApplicationFunctions.cs (renamed from Ryujinx.HLE/HOS/Services/Am/AppletOE/ApplicationProxyService/ApplicationProxy/IApplicationFunctions.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Am/AppletOE/ApplicationProxyService/ApplicationProxy/Types/LaunchParameterKind.cs (renamed from Ryujinx.HLE/HOS/Services/Am/AppletOE/ApplicationProxyService/ApplicationProxy/Types/LaunchParameterKind.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Am/AppletOE/ApplicationProxyService/ApplicationProxy/Types/ProgramSpecifyKind.cs (renamed from Ryujinx.HLE/HOS/Services/Am/AppletOE/ApplicationProxyService/ApplicationProxy/Types/ProgramSpecifyKind.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Am/AppletOE/ApplicationProxyService/IApplicationProxy.cs (renamed from Ryujinx.HLE/HOS/Services/Am/AppletOE/ApplicationProxyService/IApplicationProxy.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Am/AppletOE/IApplicationProxyService.cs (renamed from Ryujinx.HLE/HOS/Services/Am/AppletOE/IApplicationProxyService.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Am/Idle/IPolicyManagerSystem.cs (renamed from Ryujinx.HLE/HOS/Services/Am/Idle/IPolicyManagerSystem.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Am/Omm/IOperationModeManager.cs (renamed from Ryujinx.HLE/HOS/Services/Am/Omm/IOperationModeManager.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Am/ResultCode.cs (renamed from Ryujinx.HLE/HOS/Services/Am/ResultCode.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Am/Spsm/IPowerStateInterface.cs (renamed from Ryujinx.HLE/HOS/Services/Am/Spsm/IPowerStateInterface.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Am/Tcap/IManager.cs (renamed from Ryujinx.HLE/HOS/Services/Am/Tcap/IManager.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Apm/IManager.cs (renamed from Ryujinx.HLE/HOS/Services/Apm/IManager.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Apm/IManagerPrivileged.cs (renamed from Ryujinx.HLE/HOS/Services/Apm/IManagerPrivileged.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Apm/ISession.cs (renamed from Ryujinx.HLE/HOS/Services/Apm/ISession.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Apm/ISystemManager.cs (renamed from Ryujinx.HLE/HOS/Services/Apm/ISystemManager.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Apm/ManagerServer.cs (renamed from Ryujinx.HLE/HOS/Services/Apm/ManagerServer.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Apm/PerformanceState.cs (renamed from Ryujinx.HLE/HOS/Services/Apm/PerformanceState.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Apm/ResultCode.cs (renamed from Ryujinx.HLE/HOS/Services/Apm/ResultCode.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Apm/SessionServer.cs (renamed from Ryujinx.HLE/HOS/Services/Apm/SessionServer.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Apm/SystemManagerServer.cs (renamed from Ryujinx.HLE/HOS/Services/Apm/SystemManagerServer.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Apm/Types/CpuBoostMode.cs (renamed from Ryujinx.HLE/HOS/Services/Apm/Types/CpuBoostMode.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Apm/Types/PerformanceConfiguration.cs (renamed from Ryujinx.HLE/HOS/Services/Apm/Types/PerformanceConfiguration.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Apm/Types/PerformanceMode.cs (renamed from Ryujinx.HLE/HOS/Services/Apm/Types/PerformanceMode.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Arp/ApplicationLaunchProperty.cs (renamed from Ryujinx.HLE/HOS/Services/Arp/ApplicationLaunchProperty.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Arp/IReader.cs (renamed from Ryujinx.HLE/HOS/Services/Arp/IReader.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Arp/IWriter.cs (renamed from Ryujinx.HLE/HOS/Services/Arp/IWriter.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Arp/LibHacIReader.cs (renamed from Ryujinx.HLE/HOS/Services/Arp/LibHacIReader.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Audio/AudioIn/AudioIn.cs (renamed from Ryujinx.HLE/HOS/Services/Audio/AudioIn/AudioIn.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Audio/AudioIn/AudioInServer.cs (renamed from Ryujinx.HLE/HOS/Services/Audio/AudioIn/AudioInServer.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Audio/AudioIn/IAudioIn.cs (renamed from Ryujinx.HLE/HOS/Services/Audio/AudioIn/IAudioIn.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Audio/AudioInManager.cs (renamed from Ryujinx.HLE/HOS/Services/Audio/AudioInManager.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Audio/AudioInManagerServer.cs (renamed from Ryujinx.HLE/HOS/Services/Audio/AudioInManagerServer.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Audio/AudioOut/AudioOut.cs (renamed from Ryujinx.HLE/HOS/Services/Audio/AudioOut/AudioOut.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Audio/AudioOut/AudioOutServer.cs (renamed from Ryujinx.HLE/HOS/Services/Audio/AudioOut/AudioOutServer.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Audio/AudioOut/IAudioOut.cs (renamed from Ryujinx.HLE/HOS/Services/Audio/AudioOut/IAudioOut.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Audio/AudioOutManager.cs (renamed from Ryujinx.HLE/HOS/Services/Audio/AudioOutManager.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Audio/AudioOutManagerServer.cs (renamed from Ryujinx.HLE/HOS/Services/Audio/AudioOutManagerServer.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Audio/AudioRenderer/AudioDevice.cs (renamed from Ryujinx.HLE/HOS/Services/Audio/AudioRenderer/AudioDevice.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Audio/AudioRenderer/AudioDeviceServer.cs (renamed from Ryujinx.HLE/HOS/Services/Audio/AudioRenderer/AudioDeviceServer.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Audio/AudioRenderer/AudioKernelEvent.cs (renamed from Ryujinx.HLE/HOS/Services/Audio/AudioRenderer/AudioKernelEvent.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Audio/AudioRenderer/AudioRenderer.cs (renamed from Ryujinx.HLE/HOS/Services/Audio/AudioRenderer/AudioRenderer.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Audio/AudioRenderer/AudioRendererServer.cs (renamed from Ryujinx.HLE/HOS/Services/Audio/AudioRenderer/AudioRendererServer.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Audio/AudioRenderer/IAudioDevice.cs (renamed from Ryujinx.HLE/HOS/Services/Audio/AudioRenderer/IAudioDevice.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Audio/AudioRenderer/IAudioRenderer.cs (renamed from Ryujinx.HLE/HOS/Services/Audio/AudioRenderer/IAudioRenderer.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Audio/AudioRendererManager.cs (renamed from Ryujinx.HLE/HOS/Services/Audio/AudioRendererManager.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Audio/AudioRendererManagerServer.cs (renamed from Ryujinx.HLE/HOS/Services/Audio/AudioRendererManagerServer.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Audio/HardwareOpusDecoderManager/Decoder.cs (renamed from Ryujinx.HLE/HOS/Services/Audio/HardwareOpusDecoderManager/Decoder.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Audio/HardwareOpusDecoderManager/DecoderCommon.cs (renamed from Ryujinx.HLE/HOS/Services/Audio/HardwareOpusDecoderManager/DecoderCommon.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Audio/HardwareOpusDecoderManager/IDecoder.cs (renamed from Ryujinx.HLE/HOS/Services/Audio/HardwareOpusDecoderManager/IDecoder.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Audio/HardwareOpusDecoderManager/IHardwareOpusDecoder.cs (renamed from Ryujinx.HLE/HOS/Services/Audio/HardwareOpusDecoderManager/IHardwareOpusDecoder.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Audio/HardwareOpusDecoderManager/MultiSampleDecoder.cs (renamed from Ryujinx.HLE/HOS/Services/Audio/HardwareOpusDecoderManager/MultiSampleDecoder.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Audio/IAudioController.cs (renamed from Ryujinx.HLE/HOS/Services/Audio/IAudioController.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Audio/IAudioInManager.cs (renamed from Ryujinx.HLE/HOS/Services/Audio/IAudioInManager.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Audio/IAudioInManagerForApplet.cs (renamed from Ryujinx.HLE/HOS/Services/Audio/IAudioInManagerForApplet.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Audio/IAudioInManagerForDebugger.cs (renamed from Ryujinx.HLE/HOS/Services/Audio/IAudioInManagerForDebugger.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Audio/IAudioOutManager.cs (renamed from Ryujinx.HLE/HOS/Services/Audio/IAudioOutManager.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Audio/IAudioOutManagerForApplet.cs (renamed from Ryujinx.HLE/HOS/Services/Audio/IAudioOutManagerForApplet.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Audio/IAudioOutManagerForDebugger.cs (renamed from Ryujinx.HLE/HOS/Services/Audio/IAudioOutManagerForDebugger.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Audio/IAudioRendererManager.cs (renamed from Ryujinx.HLE/HOS/Services/Audio/IAudioRendererManager.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Audio/IAudioRendererManagerForApplet.cs (renamed from Ryujinx.HLE/HOS/Services/Audio/IAudioRendererManagerForApplet.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Audio/IAudioRendererManagerForDebugger.cs (renamed from Ryujinx.HLE/HOS/Services/Audio/IAudioRendererManagerForDebugger.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Audio/IAudioSnoopManager.cs (renamed from Ryujinx.HLE/HOS/Services/Audio/IAudioSnoopManager.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Audio/IFinalOutputRecorderManager.cs (renamed from Ryujinx.HLE/HOS/Services/Audio/IFinalOutputRecorderManager.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Audio/IFinalOutputRecorderManagerForApplet.cs (renamed from Ryujinx.HLE/HOS/Services/Audio/IFinalOutputRecorderManagerForApplet.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Audio/IFinalOutputRecorderManagerForDebugger.cs (renamed from Ryujinx.HLE/HOS/Services/Audio/IFinalOutputRecorderManagerForDebugger.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Audio/IHardwareOpusDecoderManager.cs (renamed from Ryujinx.HLE/HOS/Services/Audio/IHardwareOpusDecoderManager.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Audio/ResultCode.cs (renamed from Ryujinx.HLE/HOS/Services/Audio/ResultCode.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Audio/Types/OpusDecoderFlags.cs (renamed from Ryujinx.HLE/HOS/Services/Audio/Types/OpusDecoderFlags.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Audio/Types/OpusMultiStreamParameters.cs (renamed from Ryujinx.HLE/HOS/Services/Audio/Types/OpusMultiStreamParameters.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Audio/Types/OpusMultiStreamParametersEx.cs (renamed from Ryujinx.HLE/HOS/Services/Audio/Types/OpusMultiStreamParametersEx.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Audio/Types/OpusPacketHeader.cs (renamed from Ryujinx.HLE/HOS/Services/Audio/Types/OpusPacketHeader.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Audio/Types/OpusParametersEx.cs (renamed from Ryujinx.HLE/HOS/Services/Audio/Types/OpusParametersEx.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Bcat/IServiceCreator.cs (renamed from Ryujinx.HLE/HOS/Services/Bcat/IServiceCreator.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Bcat/ResultCode.cs (renamed from Ryujinx.HLE/HOS/Services/Bcat/ResultCode.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Bcat/ServiceCreator/IBcatService.cs (renamed from Ryujinx.HLE/HOS/Services/Bcat/ServiceCreator/IBcatService.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Bcat/ServiceCreator/IDeliveryCacheDirectoryService.cs (renamed from Ryujinx.HLE/HOS/Services/Bcat/ServiceCreator/IDeliveryCacheDirectoryService.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Bcat/ServiceCreator/IDeliveryCacheFileService.cs (renamed from Ryujinx.HLE/HOS/Services/Bcat/ServiceCreator/IDeliveryCacheFileService.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Bcat/ServiceCreator/IDeliveryCacheProgressService.cs (renamed from Ryujinx.HLE/HOS/Services/Bcat/ServiceCreator/IDeliveryCacheProgressService.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Bcat/ServiceCreator/IDeliveryCacheStorageService.cs (renamed from Ryujinx.HLE/HOS/Services/Bcat/ServiceCreator/IDeliveryCacheStorageService.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Bcat/ServiceCreator/Types/DeliveryCacheProgressImpl.cs (renamed from Ryujinx.HLE/HOS/Services/Bcat/ServiceCreator/Types/DeliveryCacheProgressImpl.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Bgtc/IStateControlService.cs (renamed from Ryujinx.HLE/HOS/Services/Bgtc/IStateControlService.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Bgtc/ITaskService.cs (renamed from Ryujinx.HLE/HOS/Services/Bgtc/ITaskService.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Bluetooth/BluetoothDriver/BluetoothEventManager.cs (renamed from Ryujinx.HLE/HOS/Services/Bluetooth/BluetoothDriver/BluetoothEventManager.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Bluetooth/IBluetoothDriver.cs (renamed from Ryujinx.HLE/HOS/Services/Bluetooth/IBluetoothDriver.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Bluetooth/IBluetoothUser.cs (renamed from Ryujinx.HLE/HOS/Services/Bluetooth/IBluetoothUser.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/BluetoothManager/BtmUser/IBtmUserCore.cs (renamed from Ryujinx.HLE/HOS/Services/BluetoothManager/BtmUser/IBtmUserCore.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/BluetoothManager/IBtm.cs (renamed from Ryujinx.HLE/HOS/Services/BluetoothManager/IBtm.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/BluetoothManager/IBtmDebug.cs (renamed from Ryujinx.HLE/HOS/Services/BluetoothManager/IBtmDebug.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/BluetoothManager/IBtmSystem.cs (renamed from Ryujinx.HLE/HOS/Services/BluetoothManager/IBtmSystem.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/BluetoothManager/IBtmUser.cs (renamed from Ryujinx.HLE/HOS/Services/BluetoothManager/IBtmUser.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/BluetoothManager/ResultCode.cs (renamed from Ryujinx.HLE/HOS/Services/BluetoothManager/ResultCode.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Caps/CaptureManager.cs (renamed from Ryujinx.HLE/HOS/Services/Caps/CaptureManager.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Caps/IAlbumAccessorService.cs (renamed from Ryujinx.HLE/HOS/Services/Caps/IAlbumAccessorService.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Caps/IAlbumApplicationService.cs (renamed from Ryujinx.HLE/HOS/Services/Caps/IAlbumApplicationService.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Caps/IAlbumControlService.cs (renamed from Ryujinx.HLE/HOS/Services/Caps/IAlbumControlService.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Caps/IScreenShotApplicationService.cs (renamed from Ryujinx.HLE/HOS/Services/Caps/IScreenShotApplicationService.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Caps/IScreenShotControlService.cs (renamed from Ryujinx.HLE/HOS/Services/Caps/IScreenShotControlService.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Caps/IScreenshotService.cs (renamed from Ryujinx.HLE/HOS/Services/Caps/IScreenshotService.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Caps/ResultCode.cs (renamed from Ryujinx.HLE/HOS/Services/Caps/ResultCode.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Caps/Types/AlbumFileDateTime.cs (renamed from Ryujinx.HLE/HOS/Services/Caps/Types/AlbumFileDateTime.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Caps/Types/AlbumImageOrientation.cs (renamed from Ryujinx.HLE/HOS/Services/Caps/Types/AlbumImageOrientation.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Caps/Types/AlbumStorage.cs (renamed from Ryujinx.HLE/HOS/Services/Caps/Types/AlbumStorage.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Caps/Types/ApplicationAlbumEntry.cs (renamed from Ryujinx.HLE/HOS/Services/Caps/Types/ApplicationAlbumEntry.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Caps/Types/ContentType.cs (renamed from Ryujinx.HLE/HOS/Services/Caps/Types/ContentType.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Caps/Types/ScreenShotAttribute.cs (renamed from Ryujinx.HLE/HOS/Services/Caps/Types/ScreenShotAttribute.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Cec/ICecManager.cs (renamed from Ryujinx.HLE/HOS/Services/Cec/ICecManager.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/CommandCmifAttribute.cs (renamed from Ryujinx.HLE/HOS/Services/CommandCmifAttribute.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/CommandTIpcAttribute.cs (renamed from Ryujinx.HLE/HOS/Services/CommandTIpcAttribute.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/DisposableIpcService.cs (renamed from Ryujinx.HLE/HOS/Services/DisposableIpcService.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/DummyService.cs (renamed from Ryujinx.HLE/HOS/Services/DummyService.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Ectx/IReaderForSystem.cs (renamed from Ryujinx.HLE/HOS/Services/Ectx/IReaderForSystem.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Ectx/IWriterForApplication.cs (renamed from Ryujinx.HLE/HOS/Services/Ectx/IWriterForApplication.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Ectx/IWriterForSystem.cs (renamed from Ryujinx.HLE/HOS/Services/Ectx/IWriterForSystem.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Erpt/IContext.cs (renamed from Ryujinx.HLE/HOS/Services/Erpt/IContext.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Erpt/ISession.cs (renamed from Ryujinx.HLE/HOS/Services/Erpt/ISession.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Es/IETicketService.cs (renamed from Ryujinx.HLE/HOS/Services/Es/IETicketService.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Eupld/IControl.cs (renamed from Ryujinx.HLE/HOS/Services/Eupld/IControl.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Eupld/IRequest.cs (renamed from Ryujinx.HLE/HOS/Services/Eupld/IRequest.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Fatal/IPrivateService.cs (renamed from Ryujinx.HLE/HOS/Services/Fatal/IPrivateService.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Fatal/IService.cs (renamed from Ryujinx.HLE/HOS/Services/Fatal/IService.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Fatal/Types/CpuContext32.cs (renamed from Ryujinx.HLE/HOS/Services/Fatal/Types/CpuContext32.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Fatal/Types/CpuContext64.cs (renamed from Ryujinx.HLE/HOS/Services/Fatal/Types/CpuContext64.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Fatal/Types/FatalPolicy.cs (renamed from Ryujinx.HLE/HOS/Services/Fatal/Types/FatalPolicy.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Friend/IServiceCreator.cs (renamed from Ryujinx.HLE/HOS/Services/Friend/IServiceCreator.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Friend/ResultCode.cs (renamed from Ryujinx.HLE/HOS/Services/Friend/ResultCode.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Friend/ServiceCreator/FriendService/Types/Friend.cs (renamed from Ryujinx.HLE/HOS/Services/Friend/ServiceCreator/FriendService/Types/Friend.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Friend/ServiceCreator/FriendService/Types/FriendFilter.cs (renamed from Ryujinx.HLE/HOS/Services/Friend/ServiceCreator/FriendService/Types/FriendFilter.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Friend/ServiceCreator/FriendService/Types/PresenceStatus.cs (renamed from Ryujinx.HLE/HOS/Services/Friend/ServiceCreator/FriendService/Types/PresenceStatus.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Friend/ServiceCreator/FriendService/Types/PresenceStatusFilter.cs (renamed from Ryujinx.HLE/HOS/Services/Friend/ServiceCreator/FriendService/Types/PresenceStatusFilter.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Friend/ServiceCreator/FriendService/Types/UserPresence.cs (renamed from Ryujinx.HLE/HOS/Services/Friend/ServiceCreator/FriendService/Types/UserPresence.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Friend/ServiceCreator/IDaemonSuspendSessionService.cs (renamed from Ryujinx.HLE/HOS/Services/Friend/ServiceCreator/IDaemonSuspendSessionService.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Friend/ServiceCreator/IFriendService.cs (renamed from Ryujinx.HLE/HOS/Services/Friend/ServiceCreator/IFriendService.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Friend/ServiceCreator/INotificationService.cs (renamed from Ryujinx.HLE/HOS/Services/Friend/ServiceCreator/INotificationService.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Friend/ServiceCreator/NotificationService/NotificationEventHandler.cs (renamed from Ryujinx.HLE/HOS/Services/Friend/ServiceCreator/NotificationService/NotificationEventHandler.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Friend/ServiceCreator/NotificationService/Types/NotificationEventType.cs (renamed from Ryujinx.HLE/HOS/Services/Friend/ServiceCreator/NotificationService/Types/NotificationEventType.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Friend/ServiceCreator/NotificationService/Types/NotificationInfo.cs (renamed from Ryujinx.HLE/HOS/Services/Friend/ServiceCreator/NotificationService/Types/NotificationInfo.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Friend/ServiceCreator/Types/FriendServicePermissionLevel.cs (renamed from Ryujinx.HLE/HOS/Services/Friend/ServiceCreator/Types/FriendServicePermissionLevel.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Friend/ServiceCreator/Types/PlayHistoryRegistrationKey.cs (renamed from Ryujinx.HLE/HOS/Services/Friend/ServiceCreator/Types/PlayHistoryRegistrationKey.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Fs/FileSystemProxy/FileSystemProxyHelper.cs (renamed from Ryujinx.HLE/HOS/Services/Fs/FileSystemProxy/FileSystemProxyHelper.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Fs/FileSystemProxy/IDirectory.cs (renamed from Ryujinx.HLE/HOS/Services/Fs/FileSystemProxy/IDirectory.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Fs/FileSystemProxy/IFile.cs (renamed from Ryujinx.HLE/HOS/Services/Fs/FileSystemProxy/IFile.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Fs/FileSystemProxy/IFileSystem.cs (renamed from Ryujinx.HLE/HOS/Services/Fs/FileSystemProxy/IFileSystem.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Fs/FileSystemProxy/IStorage.cs (renamed from Ryujinx.HLE/HOS/Services/Fs/FileSystemProxy/IStorage.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Fs/IDeviceOperator.cs (renamed from Ryujinx.HLE/HOS/Services/Fs/IDeviceOperator.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Fs/IFileSystemProxy.cs (renamed from Ryujinx.HLE/HOS/Services/Fs/IFileSystemProxy.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Fs/IFileSystemProxyForLoader.cs (renamed from Ryujinx.HLE/HOS/Services/Fs/IFileSystemProxyForLoader.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Fs/IMultiCommitManager.cs (renamed from Ryujinx.HLE/HOS/Services/Fs/IMultiCommitManager.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Fs/IProgramRegistry.cs (renamed from Ryujinx.HLE/HOS/Services/Fs/IProgramRegistry.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Fs/ISaveDataInfoReader.cs (renamed from Ryujinx.HLE/HOS/Services/Fs/ISaveDataInfoReader.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Fs/ResultCode.cs (renamed from Ryujinx.HLE/HOS/Services/Fs/ResultCode.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Fs/Types/FileSystemType.cs (renamed from Ryujinx.HLE/HOS/Services/Fs/Types/FileSystemType.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Grc/IGrcService.cs (renamed from Ryujinx.HLE/HOS/Services/Grc/IGrcService.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Grc/IRemoteVideoTransfer.cs (renamed from Ryujinx.HLE/HOS/Services/Grc/IRemoteVideoTransfer.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Hid/Hid.cs (renamed from Ryujinx.HLE/HOS/Services/Hid/Hid.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Hid/HidDevices/BaseDevice.cs (renamed from Ryujinx.HLE/HOS/Services/Hid/HidDevices/BaseDevice.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Hid/HidDevices/DebugPadDevice.cs (renamed from Ryujinx.HLE/HOS/Services/Hid/HidDevices/DebugPadDevice.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Hid/HidDevices/KeyboardDevice.cs (renamed from Ryujinx.HLE/HOS/Services/Hid/HidDevices/KeyboardDevice.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Hid/HidDevices/MouseDevice.cs (renamed from Ryujinx.HLE/HOS/Services/Hid/HidDevices/MouseDevice.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Hid/HidDevices/NpadDevices.cs (renamed from Ryujinx.HLE/HOS/Services/Hid/HidDevices/NpadDevices.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Hid/HidDevices/TouchDevice.cs (renamed from Ryujinx.HLE/HOS/Services/Hid/HidDevices/TouchDevice.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Hid/HidDevices/Types/ControllerConfig.cs (renamed from Ryujinx.HLE/HOS/Services/Hid/HidDevices/Types/ControllerConfig.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Hid/HidDevices/Types/GamepadInput.cs (renamed from Ryujinx.HLE/HOS/Services/Hid/HidDevices/Types/GamepadInput.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Hid/HidDevices/Types/JoystickPosition.cs (renamed from Ryujinx.HLE/HOS/Services/Hid/HidDevices/Types/JoystickPosition.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Hid/HidDevices/Types/KeyboardInput.cs (renamed from Ryujinx.HLE/HOS/Services/Hid/HidDevices/Types/KeyboardInput.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Hid/HidDevices/Types/SixAxisInput.cs (renamed from Ryujinx.HLE/HOS/Services/Hid/HidDevices/Types/SixAxisInput.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Hid/HidDevices/Types/TouchPoint.cs (renamed from Ryujinx.HLE/HOS/Services/Hid/HidDevices/Types/TouchPoint.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Hid/HidServer/HidUtils.cs (renamed from Ryujinx.HLE/HOS/Services/Hid/HidServer/HidUtils.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Hid/HidServer/IActiveVibrationDeviceList.cs (renamed from Ryujinx.HLE/HOS/Services/Hid/HidServer/IActiveVibrationDeviceList.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Hid/HidServer/IAppletResource.cs (renamed from Ryujinx.HLE/HOS/Services/Hid/HidServer/IAppletResource.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Hid/HidServer/Types/Npad/NpadHandheldActivationMode.cs (renamed from Ryujinx.HLE/HOS/Services/Hid/HidServer/Types/Npad/NpadHandheldActivationMode.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Hid/HidServer/Types/Npad/NpadJoyDeviceType.cs (renamed from Ryujinx.HLE/HOS/Services/Hid/HidServer/Types/Npad/NpadJoyDeviceType.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Hid/HidServer/Types/SixAxis/AccelerometerParameters.cs (renamed from Ryujinx.HLE/HOS/Services/Hid/HidServer/Types/SixAxis/AccelerometerParameters.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Hid/HidServer/Types/SixAxis/GyroscopeZeroDriftMode.cs (renamed from Ryujinx.HLE/HOS/Services/Hid/HidServer/Types/SixAxis/GyroscopeZeroDriftMode.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Hid/HidServer/Types/SixAxis/SensorFusionParameters.cs (renamed from Ryujinx.HLE/HOS/Services/Hid/HidServer/Types/SixAxis/SensorFusionParameters.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Hid/HidServer/Types/Vibration/VibrationDeviceHandle.cs (renamed from Ryujinx.HLE/HOS/Services/Hid/HidServer/Types/Vibration/VibrationDeviceHandle.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Hid/HidServer/Types/Vibration/VibrationDevicePosition.cs (renamed from Ryujinx.HLE/HOS/Services/Hid/HidServer/Types/Vibration/VibrationDevicePosition.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Hid/HidServer/Types/Vibration/VibrationDeviceType.cs (renamed from Ryujinx.HLE/HOS/Services/Hid/HidServer/Types/Vibration/VibrationDeviceType.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Hid/HidServer/Types/Vibration/VibrationDeviceValue.cs (renamed from Ryujinx.HLE/HOS/Services/Hid/HidServer/Types/Vibration/VibrationDeviceValue.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Hid/HidServer/Types/Vibration/VibrationValue.cs (renamed from Ryujinx.HLE/HOS/Services/Hid/HidServer/Types/Vibration/VibrationValue.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Hid/IHidDebugServer.cs (renamed from Ryujinx.HLE/HOS/Services/Hid/IHidDebugServer.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Hid/IHidServer.cs (renamed from Ryujinx.HLE/HOS/Services/Hid/IHidServer.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Hid/IHidSystemServer.cs (renamed from Ryujinx.HLE/HOS/Services/Hid/IHidSystemServer.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Hid/IHidbusServer.cs (renamed from Ryujinx.HLE/HOS/Services/Hid/IHidbusServer.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Hid/ISystemServer.cs (renamed from Ryujinx.HLE/HOS/Services/Hid/ISystemServer.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Hid/Irs/IIrSensorServer.cs (renamed from Ryujinx.HLE/HOS/Services/Hid/Irs/IIrSensorServer.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Hid/Irs/IIrSensorSystemServer.cs (renamed from Ryujinx.HLE/HOS/Services/Hid/Irs/IIrSensorSystemServer.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Hid/Irs/ResultCode.cs (renamed from Ryujinx.HLE/HOS/Services/Hid/Irs/ResultCode.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Hid/Irs/Types/ImageTransferProcessorState.cs (renamed from Ryujinx.HLE/HOS/Services/Hid/Irs/Types/ImageTransferProcessorState.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Hid/Irs/Types/IrCameraHandle.cs (renamed from Ryujinx.HLE/HOS/Services/Hid/Irs/Types/IrCameraHandle.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Hid/Irs/Types/PackedClusteringProcessorConfig.cs (renamed from Ryujinx.HLE/HOS/Services/Hid/Irs/Types/PackedClusteringProcessorConfig.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Hid/Irs/Types/PackedImageTransferProcessorConfig.cs (renamed from Ryujinx.HLE/HOS/Services/Hid/Irs/Types/PackedImageTransferProcessorConfig.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Hid/Irs/Types/PackedMomentProcessorConfig.cs (renamed from Ryujinx.HLE/HOS/Services/Hid/Irs/Types/PackedMomentProcessorConfig.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Hid/Irs/Types/PackedTeraPluginProcessorConfig.cs (renamed from Ryujinx.HLE/HOS/Services/Hid/Irs/Types/PackedTeraPluginProcessorConfig.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Hid/ResultCode.cs (renamed from Ryujinx.HLE/HOS/Services/Hid/ResultCode.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Hid/Types/AppletFooterUiType.cs (renamed from Ryujinx.HLE/HOS/Services/Hid/Types/AppletFooterUiType.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Hid/Types/HidVector.cs (renamed from Ryujinx.HLE/HOS/Services/Hid/Types/HidVector.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Hid/Types/Npad/ControllerKeys.cs (renamed from Ryujinx.HLE/HOS/Services/Hid/Types/Npad/ControllerKeys.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Hid/Types/Npad/ControllerType.cs (renamed from Ryujinx.HLE/HOS/Services/Hid/Types/Npad/ControllerType.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Hid/Types/Npad/NpadColor.cs (renamed from Ryujinx.HLE/HOS/Services/Hid/Types/Npad/NpadColor.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Hid/Types/Npad/NpadIdType.cs (renamed from Ryujinx.HLE/HOS/Services/Hid/Types/Npad/NpadIdType.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Hid/Types/Npad/NpadStyleIndex.cs (renamed from Ryujinx.HLE/HOS/Services/Hid/Types/Npad/NpadStyleIndex.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Hid/Types/Npad/PlayerIndex.cs (renamed from Ryujinx.HLE/HOS/Services/Hid/Types/Npad/PlayerIndex.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Hid/Types/NpadJoyHoldType.cs (renamed from Ryujinx.HLE/HOS/Services/Hid/Types/NpadJoyHoldType.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Common/AnalogStickState.cs (renamed from Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Common/AnalogStickState.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Common/AtomicStorage.cs (renamed from Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Common/AtomicStorage.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Common/ISampledDataStruct.cs (renamed from Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Common/ISampledDataStruct.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Common/RingLifo.cs (renamed from Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Common/RingLifo.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/DebugPad/DebugPadAttribute.cs (renamed from Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/DebugPad/DebugPadAttribute.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/DebugPad/DebugPadButton.cs (renamed from Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/DebugPad/DebugPadButton.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/DebugPad/DebugPadState.cs (renamed from Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/DebugPad/DebugPadState.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Keyboard/KeyboardKey.cs (renamed from Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Keyboard/KeyboardKey.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Keyboard/KeyboardKeyShift.cs (renamed from Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Keyboard/KeyboardKeyShift.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Keyboard/KeyboardModifier.cs (renamed from Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Keyboard/KeyboardModifier.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Keyboard/KeyboardState.cs (renamed from Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Keyboard/KeyboardState.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Mouse/MouseAttribute.cs (renamed from Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Mouse/MouseAttribute.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Mouse/MouseButton.cs (renamed from Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Mouse/MouseButton.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Mouse/MouseState.cs (renamed from Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Mouse/MouseState.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Npad/DeviceType.cs (renamed from Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Npad/DeviceType.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Npad/NpadAttribute.cs (renamed from Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Npad/NpadAttribute.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Npad/NpadBatteryLevel.cs (renamed from Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Npad/NpadBatteryLevel.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Npad/NpadButton.cs (renamed from Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Npad/NpadButton.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Npad/NpadColorAttribute.cs (renamed from Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Npad/NpadColorAttribute.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Npad/NpadCommonState.cs (renamed from Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Npad/NpadCommonState.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Npad/NpadFullKeyColorState.cs (renamed from Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Npad/NpadFullKeyColorState.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Npad/NpadGcTriggerState.cs (renamed from Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Npad/NpadGcTriggerState.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Npad/NpadInternalState.cs (renamed from Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Npad/NpadInternalState.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Npad/NpadJoyAssignmentMode.cs (renamed from Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Npad/NpadJoyAssignmentMode.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Npad/NpadJoyColorState.cs (renamed from Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Npad/NpadJoyColorState.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Npad/NpadLarkType.cs (renamed from Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Npad/NpadLarkType.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Npad/NpadLuciaType.cs (renamed from Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Npad/NpadLuciaType.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Npad/NpadState.cs (renamed from Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Npad/NpadState.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Npad/NpadStyleTag.cs (renamed from Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Npad/NpadStyleTag.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Npad/NpadSystemButtonProperties.cs (renamed from Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Npad/NpadSystemButtonProperties.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Npad/NpadSystemProperties.cs (renamed from Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Npad/NpadSystemProperties.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Npad/SixAxisSensorAttribute.cs (renamed from Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Npad/SixAxisSensorAttribute.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Npad/SixAxisSensorState.cs (renamed from Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Npad/SixAxisSensorState.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/SharedMemory.cs (renamed from Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/SharedMemory.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/TouchScreen/TouchAttribute.cs (renamed from Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/TouchScreen/TouchAttribute.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/TouchScreen/TouchScreenState.cs (renamed from Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/TouchScreen/TouchScreenState.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/TouchScreen/TouchState.cs (renamed from Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/TouchScreen/TouchState.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Ins/IReceiverManager.cs (renamed from Ryujinx.HLE/HOS/Services/Ins/IReceiverManager.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Ins/ISenderManager.cs (renamed from Ryujinx.HLE/HOS/Services/Ins/ISenderManager.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/IpcService.cs (renamed from Ryujinx.HLE/HOS/Services/IpcService.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Lbl/ILblController.cs (renamed from Ryujinx.HLE/HOS/Services/Lbl/ILblController.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Lbl/LblControllerServer.cs (renamed from Ryujinx.HLE/HOS/Services/Lbl/LblControllerServer.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Ldn/IMonitorServiceCreator.cs (renamed from Ryujinx.HLE/HOS/Services/Ldn/IMonitorServiceCreator.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Ldn/ISystemServiceCreator.cs (renamed from Ryujinx.HLE/HOS/Services/Ldn/ISystemServiceCreator.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Ldn/IUserServiceCreator.cs (renamed from Ryujinx.HLE/HOS/Services/Ldn/IUserServiceCreator.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Ldn/Lp2p/IServiceCreator.cs (renamed from Ryujinx.HLE/HOS/Services/Ldn/Lp2p/IServiceCreator.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Ldn/NetworkInterface.cs (renamed from Ryujinx.HLE/HOS/Services/Ldn/NetworkInterface.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Ldn/ResultCode.cs (renamed from Ryujinx.HLE/HOS/Services/Ldn/ResultCode.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Ldn/Types/NetworkState.cs (renamed from Ryujinx.HLE/HOS/Services/Ldn/Types/NetworkState.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Ldn/UserServiceCreator/IUserLocalCommunicationService.cs (renamed from Ryujinx.HLE/HOS/Services/Ldn/UserServiceCreator/IUserLocalCommunicationService.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Loader/IDebugMonitorInterface.cs (renamed from Ryujinx.HLE/HOS/Services/Loader/IDebugMonitorInterface.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Loader/IProcessManagerInterface.cs (renamed from Ryujinx.HLE/HOS/Services/Loader/IProcessManagerInterface.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Loader/IShellInterface.cs (renamed from Ryujinx.HLE/HOS/Services/Loader/IShellInterface.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Loader/ResultCode.cs (renamed from Ryujinx.HLE/HOS/Services/Loader/ResultCode.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Mig/IService.cs (renamed from Ryujinx.HLE/HOS/Services/Mig/IService.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Mii/DatabaseImpl.cs (renamed from Ryujinx.HLE/HOS/Services/Mii/DatabaseImpl.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Mii/DatabaseSessionMetadata.cs (renamed from Ryujinx.HLE/HOS/Services/Mii/DatabaseSessionMetadata.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Mii/Helper.cs (renamed from Ryujinx.HLE/HOS/Services/Mii/Helper.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Mii/IImageDatabaseService.cs (renamed from Ryujinx.HLE/HOS/Services/Mii/IImageDatabaseService.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Mii/IStaticService.cs (renamed from Ryujinx.HLE/HOS/Services/Mii/IStaticService.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Mii/MiiDatabaseManager.cs (renamed from Ryujinx.HLE/HOS/Services/Mii/MiiDatabaseManager.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Mii/ResultCode.cs (renamed from Ryujinx.HLE/HOS/Services/Mii/ResultCode.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Mii/StaticService/DatabaseServiceImpl.cs (renamed from Ryujinx.HLE/HOS/Services/Mii/StaticService/DatabaseServiceImpl.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Mii/StaticService/IDatabaseService.cs (renamed from Ryujinx.HLE/HOS/Services/Mii/StaticService/IDatabaseService.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Mii/Types/Age.cs (renamed from Ryujinx.HLE/HOS/Services/Mii/Types/Age.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Mii/Types/BeardType.cs (renamed from Ryujinx.HLE/HOS/Services/Mii/Types/BeardType.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Mii/Types/CharInfo.cs (renamed from Ryujinx.HLE/HOS/Services/Mii/Types/CharInfo.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Mii/Types/CharInfoElement.cs (renamed from Ryujinx.HLE/HOS/Services/Mii/Types/CharInfoElement.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Mii/Types/CommonColor.cs (renamed from Ryujinx.HLE/HOS/Services/Mii/Types/CommonColor.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Mii/Types/CoreData.cs (renamed from Ryujinx.HLE/HOS/Services/Mii/Types/CoreData.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Mii/Types/CreateId.cs (renamed from Ryujinx.HLE/HOS/Services/Mii/Types/CreateId.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Mii/Types/DefaultMii.cs (renamed from Ryujinx.HLE/HOS/Services/Mii/Types/DefaultMii.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Mii/Types/EyeType.cs (renamed from Ryujinx.HLE/HOS/Services/Mii/Types/EyeType.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Mii/Types/EyebrowType.cs (renamed from Ryujinx.HLE/HOS/Services/Mii/Types/EyebrowType.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Mii/Types/FacelineColor.cs (renamed from Ryujinx.HLE/HOS/Services/Mii/Types/FacelineColor.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Mii/Types/FacelineMake.cs (renamed from Ryujinx.HLE/HOS/Services/Mii/Types/FacelineMake.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Mii/Types/FacelineType.cs (renamed from Ryujinx.HLE/HOS/Services/Mii/Types/FacelineType.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Mii/Types/FacelineWrinkle.cs (renamed from Ryujinx.HLE/HOS/Services/Mii/Types/FacelineWrinkle.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Mii/Types/FontRegion.cs (renamed from Ryujinx.HLE/HOS/Services/Mii/Types/FontRegion.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Mii/Types/Gender.cs (renamed from Ryujinx.HLE/HOS/Services/Mii/Types/Gender.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Mii/Types/GlassType.cs (renamed from Ryujinx.HLE/HOS/Services/Mii/Types/GlassType.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Mii/Types/HairFlip.cs (renamed from Ryujinx.HLE/HOS/Services/Mii/Types/HairFlip.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Mii/Types/HairType.cs (renamed from Ryujinx.HLE/HOS/Services/Mii/Types/HairType.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Mii/Types/IElement.cs (renamed from Ryujinx.HLE/HOS/Services/Mii/Types/IElement.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Mii/Types/IStoredData.cs (renamed from Ryujinx.HLE/HOS/Services/Mii/Types/IStoredData.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Mii/Types/MoleType.cs (renamed from Ryujinx.HLE/HOS/Services/Mii/Types/MoleType.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Mii/Types/MouthType.cs (renamed from Ryujinx.HLE/HOS/Services/Mii/Types/MouthType.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Mii/Types/MustacheType.cs (renamed from Ryujinx.HLE/HOS/Services/Mii/Types/MustacheType.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Mii/Types/Nickname.cs (renamed from Ryujinx.HLE/HOS/Services/Mii/Types/Nickname.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Mii/Types/NintendoFigurineDatabase.cs (renamed from Ryujinx.HLE/HOS/Services/Mii/Types/NintendoFigurineDatabase.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Mii/Types/NoseType.cs (renamed from Ryujinx.HLE/HOS/Services/Mii/Types/NoseType.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Mii/Types/Race.cs (renamed from Ryujinx.HLE/HOS/Services/Mii/Types/Race.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Mii/Types/RandomMiiConstants.cs (renamed from Ryujinx.HLE/HOS/Services/Mii/Types/RandomMiiConstants.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Mii/Types/Source.cs (renamed from Ryujinx.HLE/HOS/Services/Mii/Types/Source.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Mii/Types/SourceFlag.cs (renamed from Ryujinx.HLE/HOS/Services/Mii/Types/SourceFlag.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Mii/Types/SpecialMiiKeyCode.cs (renamed from Ryujinx.HLE/HOS/Services/Mii/Types/SpecialMiiKeyCode.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Mii/Types/StoreData.cs (renamed from Ryujinx.HLE/HOS/Services/Mii/Types/StoreData.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Mii/Types/StoreDataElement.cs (renamed from Ryujinx.HLE/HOS/Services/Mii/Types/StoreDataElement.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Mii/Types/Ver3StoreData.cs (renamed from Ryujinx.HLE/HOS/Services/Mii/Types/Ver3StoreData.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Mii/UtilityImpl.cs (renamed from Ryujinx.HLE/HOS/Services/Mii/UtilityImpl.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Mm/IRequest.cs (renamed from Ryujinx.HLE/HOS/Services/Mm/IRequest.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Mm/Types/MultiMediaOperationType.cs (renamed from Ryujinx.HLE/HOS/Services/Mm/Types/MultiMediaOperationType.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Mm/Types/MultiMediaSession.cs (renamed from Ryujinx.HLE/HOS/Services/Mm/Types/MultiMediaSession.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Mnpp/IServiceForApplication.cs (renamed from Ryujinx.HLE/HOS/Services/Mnpp/IServiceForApplication.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Mnpp/ResultCode.cs (renamed from Ryujinx.HLE/HOS/Services/Mnpp/ResultCode.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Ncm/IContentManager.cs (renamed from Ryujinx.HLE/HOS/Services/Ncm/IContentManager.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Ncm/Lr/ILocationResolverManager.cs (renamed from Ryujinx.HLE/HOS/Services/Ncm/Lr/ILocationResolverManager.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Ncm/Lr/LocationResolverManager/ILocationResolver.cs (renamed from Ryujinx.HLE/HOS/Services/Ncm/Lr/LocationResolverManager/ILocationResolver.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Ncm/Lr/ResultCode.cs (renamed from Ryujinx.HLE/HOS/Services/Ncm/Lr/ResultCode.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/News/IServiceCreator.cs (renamed from Ryujinx.HLE/HOS/Services/News/IServiceCreator.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Nfc/IAmManager.cs (renamed from Ryujinx.HLE/HOS/Services/Nfc/IAmManager.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Nfc/ISystemManager.cs (renamed from Ryujinx.HLE/HOS/Services/Nfc/ISystemManager.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Nfc/IUserManager.cs (renamed from Ryujinx.HLE/HOS/Services/Nfc/IUserManager.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Nfc/Mifare/IUserManager.cs (renamed from Ryujinx.HLE/HOS/Services/Nfc/Mifare/IUserManager.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Nfc/NfcManager/INfc.cs (renamed from Ryujinx.HLE/HOS/Services/Nfc/NfcManager/INfc.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Nfc/NfcManager/Types/NfcPermissionLevel.cs (renamed from Ryujinx.HLE/HOS/Services/Nfc/NfcManager/Types/NfcPermissionLevel.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Nfc/NfcManager/Types/State.cs (renamed from Ryujinx.HLE/HOS/Services/Nfc/NfcManager/Types/State.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Nfc/Nfp/AmiiboJsonSerializerContext.cs (renamed from Ryujinx.HLE/HOS/Services/Nfc/Nfp/AmiiboJsonSerializerContext.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Nfc/Nfp/IDebugManager.cs (renamed from Ryujinx.HLE/HOS/Services/Nfc/Nfp/IDebugManager.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Nfc/Nfp/ISystemManager.cs (renamed from Ryujinx.HLE/HOS/Services/Nfc/Nfp/ISystemManager.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Nfc/Nfp/IUserManager.cs (renamed from Ryujinx.HLE/HOS/Services/Nfc/Nfp/IUserManager.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Nfc/Nfp/NfpManager/INfp.cs (renamed from Ryujinx.HLE/HOS/Services/Nfc/Nfp/NfpManager/INfp.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Nfc/Nfp/NfpManager/Types/AmiiboConstants.cs (renamed from Ryujinx.HLE/HOS/Services/Nfc/Nfp/NfpManager/Types/AmiiboConstants.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Nfc/Nfp/NfpManager/Types/CommonInfo.cs (renamed from Ryujinx.HLE/HOS/Services/Nfc/Nfp/NfpManager/Types/CommonInfo.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Nfc/Nfp/NfpManager/Types/DeviceType.cs (renamed from Ryujinx.HLE/HOS/Services/Nfc/Nfp/NfpManager/Types/DeviceType.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Nfc/Nfp/NfpManager/Types/ModelInfo.cs (renamed from Ryujinx.HLE/HOS/Services/Nfc/Nfp/NfpManager/Types/ModelInfo.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Nfc/Nfp/NfpManager/Types/MountTarget.cs (renamed from Ryujinx.HLE/HOS/Services/Nfc/Nfp/NfpManager/Types/MountTarget.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Nfc/Nfp/NfpManager/Types/NfpDevice.cs (renamed from Ryujinx.HLE/HOS/Services/Nfc/Nfp/NfpManager/Types/NfpDevice.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Nfc/Nfp/NfpManager/Types/NfpDeviceState.cs (renamed from Ryujinx.HLE/HOS/Services/Nfc/Nfp/NfpManager/Types/NfpDeviceState.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Nfc/Nfp/NfpManager/Types/NfpPermissionLevel.cs (renamed from Ryujinx.HLE/HOS/Services/Nfc/Nfp/NfpManager/Types/NfpPermissionLevel.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Nfc/Nfp/NfpManager/Types/RegisterInfo.cs (renamed from Ryujinx.HLE/HOS/Services/Nfc/Nfp/NfpManager/Types/RegisterInfo.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Nfc/Nfp/NfpManager/Types/State.cs (renamed from Ryujinx.HLE/HOS/Services/Nfc/Nfp/NfpManager/Types/State.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Nfc/Nfp/NfpManager/Types/TagInfo.cs (renamed from Ryujinx.HLE/HOS/Services/Nfc/Nfp/NfpManager/Types/TagInfo.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Nfc/Nfp/NfpManager/Types/VirtualAmiiboFile.cs (renamed from Ryujinx.HLE/HOS/Services/Nfc/Nfp/NfpManager/Types/VirtualAmiiboFile.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Nfc/Nfp/ResultCode.cs (renamed from Ryujinx.HLE/HOS/Services/Nfc/Nfp/ResultCode.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Nfc/Nfp/VirtualAmiibo.cs (renamed from Ryujinx.HLE/HOS/Services/Nfc/Nfp/VirtualAmiibo.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Ngct/IService.cs (renamed from Ryujinx.HLE/HOS/Services/Ngct/IService.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Ngct/IServiceWithManagementApi.cs (renamed from Ryujinx.HLE/HOS/Services/Ngct/IServiceWithManagementApi.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Ngct/NgctServer.cs (renamed from Ryujinx.HLE/HOS/Services/Ngct/NgctServer.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Nifm/IStaticService.cs (renamed from Ryujinx.HLE/HOS/Services/Nifm/IStaticService.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Nifm/ResultCode.cs (renamed from Ryujinx.HLE/HOS/Services/Nifm/ResultCode.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Nifm/StaticService/GeneralService/GeneralServiceManager.cs (renamed from Ryujinx.HLE/HOS/Services/Nifm/StaticService/GeneralService/GeneralServiceManager.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Nifm/StaticService/GeneralService/Types/GeneralServiceDetail.cs (renamed from Ryujinx.HLE/HOS/Services/Nifm/StaticService/GeneralService/Types/GeneralServiceDetail.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Nifm/StaticService/IGeneralService.cs (renamed from Ryujinx.HLE/HOS/Services/Nifm/StaticService/IGeneralService.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Nifm/StaticService/IRequest.cs (renamed from Ryujinx.HLE/HOS/Services/Nifm/StaticService/IRequest.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Nifm/StaticService/Types/DnsSetting.cs (renamed from Ryujinx.HLE/HOS/Services/Nifm/StaticService/Types/DnsSetting.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Nifm/StaticService/Types/InternetConnectionState.cs (renamed from Ryujinx.HLE/HOS/Services/Nifm/StaticService/Types/InternetConnectionState.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Nifm/StaticService/Types/InternetConnectionStatus.cs (renamed from Ryujinx.HLE/HOS/Services/Nifm/StaticService/Types/InternetConnectionStatus.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Nifm/StaticService/Types/InternetConnectionType.cs (renamed from Ryujinx.HLE/HOS/Services/Nifm/StaticService/Types/InternetConnectionType.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Nifm/StaticService/Types/IpAddressSetting.cs (renamed from Ryujinx.HLE/HOS/Services/Nifm/StaticService/Types/IpAddressSetting.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Nifm/StaticService/Types/IpSettingData.cs (renamed from Ryujinx.HLE/HOS/Services/Nifm/StaticService/Types/IpSettingData.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Nifm/StaticService/Types/IpV4Address.cs (renamed from Ryujinx.HLE/HOS/Services/Nifm/StaticService/Types/IpV4Address.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Nifm/StaticService/Types/NetworkProfileData.cs (renamed from Ryujinx.HLE/HOS/Services/Nifm/StaticService/Types/NetworkProfileData.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Nifm/StaticService/Types/ProxySetting.cs (renamed from Ryujinx.HLE/HOS/Services/Nifm/StaticService/Types/ProxySetting.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Nifm/StaticService/Types/WirelessSettingData.cs (renamed from Ryujinx.HLE/HOS/Services/Nifm/StaticService/Types/WirelessSettingData.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Nim/INetworkInstallManager.cs (renamed from Ryujinx.HLE/HOS/Services/Nim/INetworkInstallManager.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Nim/IShopServiceAccessServer.cs (renamed from Ryujinx.HLE/HOS/Services/Nim/IShopServiceAccessServer.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Nim/IShopServiceAccessServerInterface.cs (renamed from Ryujinx.HLE/HOS/Services/Nim/IShopServiceAccessServerInterface.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Nim/IShopServiceAccessSystemInterface.cs (renamed from Ryujinx.HLE/HOS/Services/Nim/IShopServiceAccessSystemInterface.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Nim/IShopServiceAccessor.cs (renamed from Ryujinx.HLE/HOS/Services/Nim/IShopServiceAccessor.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Nim/IShopServiceAsync.cs (renamed from Ryujinx.HLE/HOS/Services/Nim/IShopServiceAsync.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Nim/IShopServiceManager.cs (renamed from Ryujinx.HLE/HOS/Services/Nim/IShopServiceManager.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Nim/Ntc/IStaticService.cs (renamed from Ryujinx.HLE/HOS/Services/Nim/Ntc/IStaticService.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Nim/Ntc/StaticService/IEnsureNetworkClockAvailabilityService.cs (renamed from Ryujinx.HLE/HOS/Services/Nim/Ntc/StaticService/IEnsureNetworkClockAvailabilityService.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Nim/ResultCode.cs (renamed from Ryujinx.HLE/HOS/Services/Nim/ResultCode.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Notification/INotificationServicesForApplication.cs (renamed from Ryujinx.HLE/HOS/Services/Notification/INotificationServicesForApplication.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Notification/INotificationServicesForSystem.cs (renamed from Ryujinx.HLE/HOS/Services/Notification/INotificationServicesForSystem.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Npns/INpnsSystem.cs (renamed from Ryujinx.HLE/HOS/Services/Npns/INpnsSystem.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Npns/INpnsUser.cs (renamed from Ryujinx.HLE/HOS/Services/Npns/INpnsUser.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Ns/Aoc/IAddOnContentManager.cs (renamed from Ryujinx.HLE/HOS/Services/Ns/Aoc/IAddOnContentManager.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Ns/Aoc/IContentsServiceManager.cs (renamed from Ryujinx.HLE/HOS/Services/Ns/Aoc/IContentsServiceManager.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Ns/Aoc/IPurchaseEventManager.cs (renamed from Ryujinx.HLE/HOS/Services/Ns/Aoc/IPurchaseEventManager.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Ns/Aoc/ResultCode.cs (renamed from Ryujinx.HLE/HOS/Services/Ns/Aoc/ResultCode.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Ns/IApplicationManagerInterface.cs (renamed from Ryujinx.HLE/HOS/Services/Ns/IApplicationManagerInterface.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Ns/IDevelopInterface.cs (renamed from Ryujinx.HLE/HOS/Services/Ns/IDevelopInterface.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Ns/IReadOnlyApplicationControlDataInterface.cs (renamed from Ryujinx.HLE/HOS/Services/Ns/IReadOnlyApplicationControlDataInterface.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Ns/IServiceGetterInterface.cs (renamed from Ryujinx.HLE/HOS/Services/Ns/IServiceGetterInterface.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Ns/ISystemUpdateInterface.cs (renamed from Ryujinx.HLE/HOS/Services/Ns/ISystemUpdateInterface.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Ns/IVulnerabilityManagerInterface.cs (renamed from Ryujinx.HLE/HOS/Services/Ns/IVulnerabilityManagerInterface.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Nv/Host1xContext.cs (renamed from Ryujinx.HLE/HOS/Services/Nv/Host1xContext.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Nv/INvDrvDebugFSServices.cs (renamed from Ryujinx.HLE/HOS/Services/Nv/INvDrvDebugFSServices.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Nv/INvDrvServices.cs (renamed from Ryujinx.HLE/HOS/Services/Nv/INvDrvServices.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Nv/INvGemControl.cs (renamed from Ryujinx.HLE/HOS/Services/Nv/INvGemControl.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Nv/INvGemCoreDump.cs (renamed from Ryujinx.HLE/HOS/Services/Nv/INvGemCoreDump.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvDeviceFile.cs (renamed from Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvDeviceFile.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostAsGpu/NvHostAsGpuDeviceFile.cs (renamed from Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostAsGpu/NvHostAsGpuDeviceFile.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostAsGpu/Types/AddressSpaceContext.cs (renamed from Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostAsGpu/Types/AddressSpaceContext.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostAsGpu/Types/AddressSpaceFlags.cs (renamed from Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostAsGpu/Types/AddressSpaceFlags.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostAsGpu/Types/AllocSpaceArguments.cs (renamed from Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostAsGpu/Types/AllocSpaceArguments.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostAsGpu/Types/BindChannelArguments.cs (renamed from Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostAsGpu/Types/BindChannelArguments.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostAsGpu/Types/FreeSpaceArguments.cs (renamed from Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostAsGpu/Types/FreeSpaceArguments.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostAsGpu/Types/GetVaRegionsArguments.cs (renamed from Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostAsGpu/Types/GetVaRegionsArguments.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostAsGpu/Types/InitializeExArguments.cs (renamed from Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostAsGpu/Types/InitializeExArguments.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostAsGpu/Types/MapBufferExArguments.cs (renamed from Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostAsGpu/Types/MapBufferExArguments.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostAsGpu/Types/RemapArguments.cs (renamed from Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostAsGpu/Types/RemapArguments.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostAsGpu/Types/UnmapBufferArguments.cs (renamed from Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostAsGpu/Types/UnmapBufferArguments.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostChannel/ChannelInitialization.cs (renamed from Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostChannel/ChannelInitialization.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostChannel/NvHostChannelDeviceFile.cs (renamed from Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostChannel/NvHostChannelDeviceFile.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostChannel/NvHostGpuDeviceFile.cs (renamed from Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostChannel/NvHostGpuDeviceFile.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostChannel/Types/AllocGpfifoExArguments.cs (renamed from Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostChannel/Types/AllocGpfifoExArguments.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostChannel/Types/AllocObjCtxArguments.cs (renamed from Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostChannel/Types/AllocObjCtxArguments.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostChannel/Types/GetParameterArguments.cs (renamed from Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostChannel/Types/GetParameterArguments.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostChannel/Types/MapCommandBufferArguments.cs (renamed from Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostChannel/Types/MapCommandBufferArguments.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostChannel/Types/NvChannel.cs (renamed from Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostChannel/Types/NvChannel.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostChannel/Types/NvChannelPriority.cs (renamed from Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostChannel/Types/NvChannelPriority.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostChannel/Types/SetErrorNotifierArguments.cs (renamed from Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostChannel/Types/SetErrorNotifierArguments.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostChannel/Types/SubmitArguments.cs (renamed from Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostChannel/Types/SubmitArguments.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostChannel/Types/SubmitGpfifoArguments.cs (renamed from Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostChannel/Types/SubmitGpfifoArguments.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostChannel/Types/SubmitGpfifoFlags.cs (renamed from Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostChannel/Types/SubmitGpfifoFlags.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostChannel/Types/ZcullBindArguments.cs (renamed from Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostChannel/Types/ZcullBindArguments.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostCtrl/NvHostCtrlDeviceFile.cs (renamed from Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostCtrl/NvHostCtrlDeviceFile.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostCtrl/Types/EventWaitArguments.cs (renamed from Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostCtrl/Types/EventWaitArguments.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostCtrl/Types/GetConfigurationArguments.cs (renamed from Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostCtrl/Types/GetConfigurationArguments.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostCtrl/Types/NvHostEvent.cs (renamed from Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostCtrl/Types/NvHostEvent.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostCtrl/Types/NvHostEventState.cs (renamed from Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostCtrl/Types/NvHostEventState.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostCtrl/Types/NvHostSyncPt.cs (renamed from Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostCtrl/Types/NvHostSyncPt.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostCtrl/Types/SyncptWaitArguments.cs (renamed from Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostCtrl/Types/SyncptWaitArguments.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostCtrl/Types/SyncptWaitExArguments.cs (renamed from Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostCtrl/Types/SyncptWaitExArguments.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostCtrlGpu/NvHostCtrlGpuDeviceFile.cs (renamed from Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostCtrlGpu/NvHostCtrlGpuDeviceFile.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostCtrlGpu/Types/GetActiveSlotMaskArguments.cs (renamed from Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostCtrlGpu/Types/GetActiveSlotMaskArguments.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostCtrlGpu/Types/GetCharacteristicsArguments.cs (renamed from Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostCtrlGpu/Types/GetCharacteristicsArguments.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostCtrlGpu/Types/GetGpuTimeArguments.cs (renamed from Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostCtrlGpu/Types/GetGpuTimeArguments.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostCtrlGpu/Types/GetTpcMasksArguments.cs (renamed from Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostCtrlGpu/Types/GetTpcMasksArguments.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostCtrlGpu/Types/ZbcSetTableArguments.cs (renamed from Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostCtrlGpu/Types/ZbcSetTableArguments.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostCtrlGpu/Types/ZcullGetCtxSizeArguments.cs (renamed from Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostCtrlGpu/Types/ZcullGetCtxSizeArguments.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostCtrlGpu/Types/ZcullGetInfoArguments.cs (renamed from Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostCtrlGpu/Types/ZcullGetInfoArguments.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostDbgGpu/NvHostDbgGpuDeviceFile.cs (renamed from Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostDbgGpu/NvHostDbgGpuDeviceFile.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostProfGpu/NvHostProfGpuDeviceFile.cs (renamed from Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostProfGpu/NvHostProfGpuDeviceFile.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvInternalResult.cs (renamed from Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvInternalResult.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvMap/NvMapDeviceFile.cs (renamed from Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvMap/NvMapDeviceFile.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvMap/Types/NvMapAlloc.cs (renamed from Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvMap/Types/NvMapAlloc.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvMap/Types/NvMapCreate.cs (renamed from Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvMap/Types/NvMapCreate.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvMap/Types/NvMapFree.cs (renamed from Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvMap/Types/NvMapFree.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvMap/Types/NvMapFromId.cs (renamed from Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvMap/Types/NvMapFromId.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvMap/Types/NvMapGetId.cs (renamed from Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvMap/Types/NvMapGetId.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvMap/Types/NvMapHandle.cs (renamed from Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvMap/Types/NvMapHandle.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvMap/Types/NvMapHandleParam.cs (renamed from Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvMap/Types/NvMapHandleParam.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvMap/Types/NvMapIdDictionary.cs (renamed from Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvMap/Types/NvMapIdDictionary.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvMap/Types/NvMapParam.cs (renamed from Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvMap/Types/NvMapParam.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Nv/NvIoctl.cs (renamed from Ryujinx.HLE/HOS/Services/Nv/NvIoctl.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Nv/NvMemoryAllocator.cs (renamed from Ryujinx.HLE/HOS/Services/Nv/NvMemoryAllocator.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Nv/Types/NvFence.cs (renamed from Ryujinx.HLE/HOS/Services/Nv/Types/NvFence.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Nv/Types/NvIoctlNotImplementedException.cs (renamed from Ryujinx.HLE/HOS/Services/Nv/Types/NvIoctlNotImplementedException.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Nv/Types/NvQueryEventNotImplementedException.cs (renamed from Ryujinx.HLE/HOS/Services/Nv/Types/NvQueryEventNotImplementedException.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Nv/Types/NvResult.cs (renamed from Ryujinx.HLE/HOS/Services/Nv/Types/NvResult.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Nv/Types/NvStatus.cs (renamed from Ryujinx.HLE/HOS/Services/Nv/Types/NvStatus.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Olsc/IOlscServiceForApplication.cs (renamed from Ryujinx.HLE/HOS/Services/Olsc/IOlscServiceForApplication.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Olsc/IOlscServiceForSystemService.cs (renamed from Ryujinx.HLE/HOS/Services/Olsc/IOlscServiceForSystemService.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Olsc/ResultCode.cs (renamed from Ryujinx.HLE/HOS/Services/Olsc/ResultCode.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Ovln/IReceiverService.cs (renamed from Ryujinx.HLE/HOS/Services/Ovln/IReceiverService.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Ovln/ISenderService.cs (renamed from Ryujinx.HLE/HOS/Services/Ovln/ISenderService.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Pcie/ILogManager.cs (renamed from Ryujinx.HLE/HOS/Services/Pcie/ILogManager.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Pcie/IManager.cs (renamed from Ryujinx.HLE/HOS/Services/Pcie/IManager.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Pctl/IParentalControlServiceFactory.cs (renamed from Ryujinx.HLE/HOS/Services/Pctl/IParentalControlServiceFactory.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Pctl/ParentalControlServiceFactory/IParentalControlService.cs (renamed from Ryujinx.HLE/HOS/Services/Pctl/ParentalControlServiceFactory/IParentalControlService.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Pctl/ResultCode.cs (renamed from Ryujinx.HLE/HOS/Services/Pctl/ResultCode.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Pcv/Bpc/IBoardPowerControlManager.cs (renamed from Ryujinx.HLE/HOS/Services/Pcv/Bpc/IBoardPowerControlManager.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Pcv/Bpc/IRtcManager.cs (renamed from Ryujinx.HLE/HOS/Services/Pcv/Bpc/IRtcManager.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Pcv/Clkrst/ClkrstManager/IClkrstSession.cs (renamed from Ryujinx.HLE/HOS/Services/Pcv/Clkrst/ClkrstManager/IClkrstSession.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Pcv/Clkrst/IArbitrationManager.cs (renamed from Ryujinx.HLE/HOS/Services/Pcv/Clkrst/IArbitrationManager.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Pcv/Clkrst/IClkrstManager.cs (renamed from Ryujinx.HLE/HOS/Services/Pcv/Clkrst/IClkrstManager.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Pcv/IPcvService.cs (renamed from Ryujinx.HLE/HOS/Services/Pcv/IPcvService.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Pcv/ResultCode.cs (renamed from Ryujinx.HLE/HOS/Services/Pcv/ResultCode.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Pcv/Rgltr/IRegulatorManager.cs (renamed from Ryujinx.HLE/HOS/Services/Pcv/Rgltr/IRegulatorManager.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Pcv/Rtc/IRtcManager.cs (renamed from Ryujinx.HLE/HOS/Services/Pcv/Rtc/IRtcManager.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Pcv/Types/DeviceCode.cs (renamed from Ryujinx.HLE/HOS/Services/Pcv/Types/DeviceCode.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Pm/IBootModeInterface.cs (renamed from Ryujinx.HLE/HOS/Services/Pm/IBootModeInterface.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Pm/IDebugMonitorInterface.cs (renamed from Ryujinx.HLE/HOS/Services/Pm/IDebugMonitorInterface.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Pm/IInformationInterface.cs (renamed from Ryujinx.HLE/HOS/Services/Pm/IInformationInterface.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Pm/IShellInterface.cs (renamed from Ryujinx.HLE/HOS/Services/Pm/IShellInterface.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Pm/ResultCode.cs (renamed from Ryujinx.HLE/HOS/Services/Pm/ResultCode.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Psc/IPmControl.cs (renamed from Ryujinx.HLE/HOS/Services/Psc/IPmControl.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Psc/IPmService.cs (renamed from Ryujinx.HLE/HOS/Services/Psc/IPmService.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Psc/IPmUnknown.cs (renamed from Ryujinx.HLE/HOS/Services/Psc/IPmUnknown.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Ptm/Fan/IManager.cs (renamed from Ryujinx.HLE/HOS/Services/Ptm/Fan/IManager.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Ptm/Fgm/IDebugger.cs (renamed from Ryujinx.HLE/HOS/Services/Ptm/Fgm/IDebugger.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Ptm/Fgm/ISession.cs (renamed from Ryujinx.HLE/HOS/Services/Ptm/Fgm/ISession.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Ptm/Pcm/IManager.cs (renamed from Ryujinx.HLE/HOS/Services/Ptm/Pcm/IManager.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Ptm/Psm/IPsmServer.cs (renamed from Ryujinx.HLE/HOS/Services/Ptm/Psm/IPsmServer.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Ptm/Psm/IPsmSession.cs (renamed from Ryujinx.HLE/HOS/Services/Ptm/Psm/IPsmSession.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Ptm/Psm/Types/ChargerType.cs (renamed from Ryujinx.HLE/HOS/Services/Ptm/Psm/Types/ChargerType.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Ptm/Tc/IManager.cs (renamed from Ryujinx.HLE/HOS/Services/Ptm/Tc/IManager.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Ptm/Ts/IMeasurementServer.cs (renamed from Ryujinx.HLE/HOS/Services/Ptm/Ts/IMeasurementServer.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Ptm/Ts/Types/Location.cs (renamed from Ryujinx.HLE/HOS/Services/Ptm/Ts/Types/Location.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Ro/IRoInterface.cs (renamed from Ryujinx.HLE/HOS/Services/Ro/IRoInterface.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Ro/ResultCode.cs (renamed from Ryujinx.HLE/HOS/Services/Ro/ResultCode.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Ro/Types/NRRCertification.cs (renamed from Ryujinx.HLE/HOS/Services/Ro/Types/NRRCertification.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Ro/Types/NroInfo.cs (renamed from Ryujinx.HLE/HOS/Services/Ro/Types/NroInfo.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Ro/Types/NrrHeader.cs (renamed from Ryujinx.HLE/HOS/Services/Ro/Types/NrrHeader.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Ro/Types/NrrInfo.cs (renamed from Ryujinx.HLE/HOS/Services/Ro/Types/NrrInfo.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Sdb/Avm/IAvmService.cs (renamed from Ryujinx.HLE/HOS/Services/Sdb/Avm/IAvmService.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Sdb/Pdm/INotifyService.cs (renamed from Ryujinx.HLE/HOS/Services/Sdb/Pdm/INotifyService.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Sdb/Pdm/IQueryService.cs (renamed from Ryujinx.HLE/HOS/Services/Sdb/Pdm/IQueryService.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Sdb/Pdm/QueryService/QueryPlayStatisticsManager.cs (renamed from Ryujinx.HLE/HOS/Services/Sdb/Pdm/QueryService/QueryPlayStatisticsManager.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Sdb/Pdm/QueryService/Types/ApplicationPlayStatistics.cs (renamed from Ryujinx.HLE/HOS/Services/Sdb/Pdm/QueryService/Types/ApplicationPlayStatistics.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Sdb/Pdm/QueryService/Types/PlayLogQueryCapability.cs (renamed from Ryujinx.HLE/HOS/Services/Sdb/Pdm/QueryService/Types/PlayLogQueryCapability.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Sdb/Pdm/ResultCode.cs (renamed from Ryujinx.HLE/HOS/Services/Sdb/Pdm/ResultCode.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Sdb/Pl/ISharedFontManager.cs (renamed from Ryujinx.HLE/HOS/Services/Sdb/Pl/ISharedFontManager.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Sdb/Pl/SharedFontManager.cs (renamed from Ryujinx.HLE/HOS/Services/Sdb/Pl/SharedFontManager.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Sdb/Pl/Types/SharedFontType.cs (renamed from Ryujinx.HLE/HOS/Services/Sdb/Pl/Types/SharedFontType.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/ServerBase.cs (renamed from Ryujinx.HLE/HOS/Services/ServerBase.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/ServiceAttributes.cs (renamed from Ryujinx.HLE/HOS/Services/ServiceAttributes.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Settings/IFactorySettingsServer.cs (renamed from Ryujinx.HLE/HOS/Services/Settings/IFactorySettingsServer.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Settings/IFirmwareDebugSettingsServer.cs (renamed from Ryujinx.HLE/HOS/Services/Settings/IFirmwareDebugSettingsServer.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Settings/ISettingsServer.cs (renamed from Ryujinx.HLE/HOS/Services/Settings/ISettingsServer.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Settings/ISystemSettingsServer.cs (renamed from Ryujinx.HLE/HOS/Services/Settings/ISystemSettingsServer.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Settings/KeyCodeMaps.cs (renamed from Ryujinx.HLE/HOS/Services/Settings/KeyCodeMaps.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Settings/NxSettings.cs (renamed from Ryujinx.HLE/HOS/Services/Settings/NxSettings.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Settings/ResultCode.cs (renamed from Ryujinx.HLE/HOS/Services/Settings/ResultCode.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Settings/Types/PlatformRegion.cs (renamed from Ryujinx.HLE/HOS/Services/Settings/Types/PlatformRegion.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Sm/IManagerInterface.cs (renamed from Ryujinx.HLE/HOS/Services/Sm/IManagerInterface.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Sm/IUserInterface.cs (renamed from Ryujinx.HLE/HOS/Services/Sm/IUserInterface.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Sm/ResultCode.cs (renamed from Ryujinx.HLE/HOS/Services/Sm/ResultCode.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Sm/SmRegistry.cs (renamed from Ryujinx.HLE/HOS/Services/Sm/SmRegistry.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Sockets/Bsd/BsdContext.cs (renamed from Ryujinx.HLE/HOS/Services/Sockets/Bsd/BsdContext.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Sockets/Bsd/IClient.cs (renamed from Ryujinx.HLE/HOS/Services/Sockets/Bsd/IClient.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Sockets/Bsd/IFileDescriptor.cs (renamed from Ryujinx.HLE/HOS/Services/Sockets/Bsd/IFileDescriptor.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Sockets/Bsd/ISocket.cs (renamed from Ryujinx.HLE/HOS/Services/Sockets/Bsd/ISocket.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Sockets/Bsd/Impl/EventFileDescriptor.cs (renamed from Ryujinx.HLE/HOS/Services/Sockets/Bsd/Impl/EventFileDescriptor.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Sockets/Bsd/Impl/EventFileDescriptorPollManager.cs (renamed from Ryujinx.HLE/HOS/Services/Sockets/Bsd/Impl/EventFileDescriptorPollManager.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Sockets/Bsd/Impl/ManagedSocket.cs (renamed from Ryujinx.HLE/HOS/Services/Sockets/Bsd/Impl/ManagedSocket.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Sockets/Bsd/Impl/ManagedSocketPollManager.cs (renamed from Ryujinx.HLE/HOS/Services/Sockets/Bsd/Impl/ManagedSocketPollManager.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Sockets/Bsd/Impl/WSAError.cs (renamed from Ryujinx.HLE/HOS/Services/Sockets/Bsd/Impl/WSAError.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Sockets/Bsd/Impl/WinSockHelper.cs (renamed from Ryujinx.HLE/HOS/Services/Sockets/Bsd/Impl/WinSockHelper.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Sockets/Bsd/ServerInterface.cs (renamed from Ryujinx.HLE/HOS/Services/Sockets/Bsd/ServerInterface.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Sockets/Bsd/Types/BsdAddressFamily.cs (renamed from Ryujinx.HLE/HOS/Services/Sockets/Bsd/Types/BsdAddressFamily.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Sockets/Bsd/Types/BsdIoctl.cs (renamed from Ryujinx.HLE/HOS/Services/Sockets/Bsd/Types/BsdIoctl.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Sockets/Bsd/Types/BsdMMsgHdr.cs (renamed from Ryujinx.HLE/HOS/Services/Sockets/Bsd/Types/BsdMMsgHdr.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Sockets/Bsd/Types/BsdMsgHdr.cs (renamed from Ryujinx.HLE/HOS/Services/Sockets/Bsd/Types/BsdMsgHdr.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Sockets/Bsd/Types/BsdSockAddr.cs (renamed from Ryujinx.HLE/HOS/Services/Sockets/Bsd/Types/BsdSockAddr.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Sockets/Bsd/Types/BsdSocketCreationFlags.cs (renamed from Ryujinx.HLE/HOS/Services/Sockets/Bsd/Types/BsdSocketCreationFlags.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Sockets/Bsd/Types/BsdSocketFlags.cs (renamed from Ryujinx.HLE/HOS/Services/Sockets/Bsd/Types/BsdSocketFlags.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Sockets/Bsd/Types/BsdSocketOption.cs (renamed from Ryujinx.HLE/HOS/Services/Sockets/Bsd/Types/BsdSocketOption.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Sockets/Bsd/Types/BsdSocketShutdownFlags.cs (renamed from Ryujinx.HLE/HOS/Services/Sockets/Bsd/Types/BsdSocketShutdownFlags.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Sockets/Bsd/Types/BsdSocketType.cs (renamed from Ryujinx.HLE/HOS/Services/Sockets/Bsd/Types/BsdSocketType.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Sockets/Bsd/Types/EventFdFlags.cs (renamed from Ryujinx.HLE/HOS/Services/Sockets/Bsd/Types/EventFdFlags.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Sockets/Bsd/Types/IPollManager.cs (renamed from Ryujinx.HLE/HOS/Services/Sockets/Bsd/Types/IPollManager.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Sockets/Bsd/Types/LinuxError.cs (renamed from Ryujinx.HLE/HOS/Services/Sockets/Bsd/Types/LinuxError.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Sockets/Bsd/Types/PollEvent.cs (renamed from Ryujinx.HLE/HOS/Services/Sockets/Bsd/Types/PollEvent.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Sockets/Bsd/Types/PollEventData.cs (renamed from Ryujinx.HLE/HOS/Services/Sockets/Bsd/Types/PollEventData.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Sockets/Bsd/Types/PollEventTypeMask.cs (renamed from Ryujinx.HLE/HOS/Services/Sockets/Bsd/Types/PollEventTypeMask.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Sockets/Bsd/Types/TimeVal.cs (renamed from Ryujinx.HLE/HOS/Services/Sockets/Bsd/Types/TimeVal.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Sockets/Ethc/IEthInterface.cs (renamed from Ryujinx.HLE/HOS/Services/Sockets/Ethc/IEthInterface.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Sockets/Ethc/IEthInterfaceGroup.cs (renamed from Ryujinx.HLE/HOS/Services/Sockets/Ethc/IEthInterfaceGroup.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Sockets/Nsd/IManager.cs (renamed from Ryujinx.HLE/HOS/Services/Sockets/Nsd/IManager.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Sockets/Nsd/Manager/FqdnResolver.cs (renamed from Ryujinx.HLE/HOS/Services/Sockets/Nsd/Manager/FqdnResolver.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Sockets/Nsd/ResultCode.cs (renamed from Ryujinx.HLE/HOS/Services/Sockets/Nsd/ResultCode.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Sockets/Nsd/Types/ApplicationServerEnvironmentType.cs (renamed from Ryujinx.HLE/HOS/Services/Sockets/Nsd/Types/ApplicationServerEnvironmentType.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Sockets/Nsd/Types/NsdSettings.cs (renamed from Ryujinx.HLE/HOS/Services/Sockets/Nsd/Types/NsdSettings.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Sockets/Sfdnsres/IResolver.cs (renamed from Ryujinx.HLE/HOS/Services/Sockets/Sfdnsres/IResolver.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Sockets/Sfdnsres/Proxy/DnsBlacklist.cs (renamed from Ryujinx.HLE/HOS/Services/Sockets/Sfdnsres/Proxy/DnsBlacklist.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Sockets/Sfdnsres/Proxy/DnsMitmResolver.cs (renamed from Ryujinx.HLE/HOS/Services/Sockets/Sfdnsres/Proxy/DnsMitmResolver.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Sockets/Sfdnsres/Types/AddrInfo4.cs (renamed from Ryujinx.HLE/HOS/Services/Sockets/Sfdnsres/Types/AddrInfo4.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Sockets/Sfdnsres/Types/AddrInfoSerialized.cs (renamed from Ryujinx.HLE/HOS/Services/Sockets/Sfdnsres/Types/AddrInfoSerialized.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Sockets/Sfdnsres/Types/AddrInfoSerializedHeader.cs (renamed from Ryujinx.HLE/HOS/Services/Sockets/Sfdnsres/Types/AddrInfoSerializedHeader.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Sockets/Sfdnsres/Types/GaiError.cs (renamed from Ryujinx.HLE/HOS/Services/Sockets/Sfdnsres/Types/GaiError.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Sockets/Sfdnsres/Types/NetDBError.cs (renamed from Ryujinx.HLE/HOS/Services/Sockets/Sfdnsres/Types/NetDBError.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Sockets/Sfdnsres/Types/SfdnsresContants.cs (renamed from Ryujinx.HLE/HOS/Services/Sockets/Sfdnsres/Types/SfdnsresContants.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Spl/IGeneralInterface.cs (renamed from Ryujinx.HLE/HOS/Services/Spl/IGeneralInterface.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Spl/IRandomInterface.cs (renamed from Ryujinx.HLE/HOS/Services/Spl/IRandomInterface.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Spl/ResultCode.cs (renamed from Ryujinx.HLE/HOS/Services/Spl/ResultCode.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Spl/Types/ConfigItem.cs (renamed from Ryujinx.HLE/HOS/Services/Spl/Types/ConfigItem.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Spl/Types/DramId.cs (renamed from Ryujinx.HLE/HOS/Services/Spl/Types/DramId.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Spl/Types/HardwareState.cs (renamed from Ryujinx.HLE/HOS/Services/Spl/Types/HardwareState.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Spl/Types/HardwareType.cs (renamed from Ryujinx.HLE/HOS/Services/Spl/Types/HardwareType.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Spl/Types/SmcResult.cs (renamed from Ryujinx.HLE/HOS/Services/Spl/Types/SmcResult.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Srepo/ISrepoService.cs (renamed from Ryujinx.HLE/HOS/Services/Srepo/ISrepoService.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Ssl/BuiltInCertificateManager.cs (renamed from Ryujinx.HLE/HOS/Services/Ssl/BuiltInCertificateManager.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Ssl/ISslService.cs (renamed from Ryujinx.HLE/HOS/Services/Ssl/ISslService.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Ssl/ResultCode.cs (renamed from Ryujinx.HLE/HOS/Services/Ssl/ResultCode.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Ssl/SslService/ISslConnection.cs (renamed from Ryujinx.HLE/HOS/Services/Ssl/SslService/ISslConnection.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Ssl/SslService/ISslConnectionBase.cs (renamed from Ryujinx.HLE/HOS/Services/Ssl/SslService/ISslConnectionBase.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Ssl/SslService/ISslContext.cs (renamed from Ryujinx.HLE/HOS/Services/Ssl/SslService/ISslContext.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Ssl/SslService/SslManagedSocketConnection.cs (renamed from Ryujinx.HLE/HOS/Services/Ssl/SslService/SslManagedSocketConnection.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Ssl/Types/BuiltInCertificateInfo.cs (renamed from Ryujinx.HLE/HOS/Services/Ssl/Types/BuiltInCertificateInfo.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Ssl/Types/CaCertificateId.cs (renamed from Ryujinx.HLE/HOS/Services/Ssl/Types/CaCertificateId.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Ssl/Types/CertificateFormat.cs (renamed from Ryujinx.HLE/HOS/Services/Ssl/Types/CertificateFormat.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Ssl/Types/IoMode.cs (renamed from Ryujinx.HLE/HOS/Services/Ssl/Types/IoMode.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Ssl/Types/OptionType.cs (renamed from Ryujinx.HLE/HOS/Services/Ssl/Types/OptionType.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Ssl/Types/SessionCacheMode.cs (renamed from Ryujinx.HLE/HOS/Services/Ssl/Types/SessionCacheMode.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Ssl/Types/SslVersion.cs (renamed from Ryujinx.HLE/HOS/Services/Ssl/Types/SslVersion.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Ssl/Types/TrustedCertStatus.cs (renamed from Ryujinx.HLE/HOS/Services/Ssl/Types/TrustedCertStatus.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Ssl/Types/VerifyOption.cs (renamed from Ryujinx.HLE/HOS/Services/Ssl/Types/VerifyOption.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/SurfaceFlinger/BufferItemConsumer.cs (renamed from Ryujinx.HLE/HOS/Services/SurfaceFlinger/BufferItemConsumer.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/SurfaceFlinger/BufferQueue.cs (renamed from Ryujinx.HLE/HOS/Services/SurfaceFlinger/BufferQueue.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/SurfaceFlinger/BufferQueueConsumer.cs (renamed from Ryujinx.HLE/HOS/Services/SurfaceFlinger/BufferQueueConsumer.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/SurfaceFlinger/BufferQueueCore.cs (renamed from Ryujinx.HLE/HOS/Services/SurfaceFlinger/BufferQueueCore.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/SurfaceFlinger/BufferQueueProducer.cs (renamed from Ryujinx.HLE/HOS/Services/SurfaceFlinger/BufferQueueProducer.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/SurfaceFlinger/BufferSlot.cs (renamed from Ryujinx.HLE/HOS/Services/SurfaceFlinger/BufferSlot.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/SurfaceFlinger/BufferSlotArray.cs (renamed from Ryujinx.HLE/HOS/Services/SurfaceFlinger/BufferSlotArray.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/SurfaceFlinger/ConsumerBase.cs (renamed from Ryujinx.HLE/HOS/Services/SurfaceFlinger/ConsumerBase.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/SurfaceFlinger/HOSBinderDriverServer.cs (renamed from Ryujinx.HLE/HOS/Services/SurfaceFlinger/HOSBinderDriverServer.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/SurfaceFlinger/IBinder.cs (renamed from Ryujinx.HLE/HOS/Services/SurfaceFlinger/IBinder.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/SurfaceFlinger/IConsumerListener.cs (renamed from Ryujinx.HLE/HOS/Services/SurfaceFlinger/IConsumerListener.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/SurfaceFlinger/IFlattenable.cs (renamed from Ryujinx.HLE/HOS/Services/SurfaceFlinger/IFlattenable.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/SurfaceFlinger/IGraphicBufferProducer.cs (renamed from Ryujinx.HLE/HOS/Services/SurfaceFlinger/IGraphicBufferProducer.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/SurfaceFlinger/IHOSBinderDriver.cs (renamed from Ryujinx.HLE/HOS/Services/SurfaceFlinger/IHOSBinderDriver.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/SurfaceFlinger/IProducerListener.cs (renamed from Ryujinx.HLE/HOS/Services/SurfaceFlinger/IProducerListener.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/SurfaceFlinger/LayerState.cs (renamed from Ryujinx.HLE/HOS/Services/SurfaceFlinger/LayerState.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/SurfaceFlinger/NativeWindowApi.cs (renamed from Ryujinx.HLE/HOS/Services/SurfaceFlinger/NativeWindowApi.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/SurfaceFlinger/NativeWindowAttribute.cs (renamed from Ryujinx.HLE/HOS/Services/SurfaceFlinger/NativeWindowAttribute.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/SurfaceFlinger/NativeWindowScalingMode.cs (renamed from Ryujinx.HLE/HOS/Services/SurfaceFlinger/NativeWindowScalingMode.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/SurfaceFlinger/NativeWindowTransform.cs (renamed from Ryujinx.HLE/HOS/Services/SurfaceFlinger/NativeWindowTransform.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/SurfaceFlinger/Parcel.cs (renamed from Ryujinx.HLE/HOS/Services/SurfaceFlinger/Parcel.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/SurfaceFlinger/ParcelHeader.cs (renamed from Ryujinx.HLE/HOS/Services/SurfaceFlinger/ParcelHeader.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/SurfaceFlinger/PixelFormat.cs (renamed from Ryujinx.HLE/HOS/Services/SurfaceFlinger/PixelFormat.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/SurfaceFlinger/Status.cs (renamed from Ryujinx.HLE/HOS/Services/SurfaceFlinger/Status.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/SurfaceFlinger/SurfaceFlinger.cs (renamed from Ryujinx.HLE/HOS/Services/SurfaceFlinger/SurfaceFlinger.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/SurfaceFlinger/Types/AndroidFence.cs (renamed from Ryujinx.HLE/HOS/Services/SurfaceFlinger/Types/AndroidFence.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/SurfaceFlinger/Types/AndroidStrongPointer.cs (renamed from Ryujinx.HLE/HOS/Services/SurfaceFlinger/Types/AndroidStrongPointer.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/SurfaceFlinger/Types/BufferInfo.cs (renamed from Ryujinx.HLE/HOS/Services/SurfaceFlinger/Types/BufferInfo.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/SurfaceFlinger/Types/BufferItem.cs (renamed from Ryujinx.HLE/HOS/Services/SurfaceFlinger/Types/BufferItem.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/SurfaceFlinger/Types/BufferState.cs (renamed from Ryujinx.HLE/HOS/Services/SurfaceFlinger/Types/BufferState.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/SurfaceFlinger/Types/Color/ColorBytePerPixel.cs (renamed from Ryujinx.HLE/HOS/Services/SurfaceFlinger/Types/Color/ColorBytePerPixel.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/SurfaceFlinger/Types/Color/ColorComponent.cs (renamed from Ryujinx.HLE/HOS/Services/SurfaceFlinger/Types/Color/ColorComponent.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/SurfaceFlinger/Types/Color/ColorDataType.cs (renamed from Ryujinx.HLE/HOS/Services/SurfaceFlinger/Types/Color/ColorDataType.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/SurfaceFlinger/Types/Color/ColorFormat.cs (renamed from Ryujinx.HLE/HOS/Services/SurfaceFlinger/Types/Color/ColorFormat.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/SurfaceFlinger/Types/Color/ColorShift.cs (renamed from Ryujinx.HLE/HOS/Services/SurfaceFlinger/Types/Color/ColorShift.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/SurfaceFlinger/Types/Color/ColorSpace.cs (renamed from Ryujinx.HLE/HOS/Services/SurfaceFlinger/Types/Color/ColorSpace.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/SurfaceFlinger/Types/Color/ColorSwizzle.cs (renamed from Ryujinx.HLE/HOS/Services/SurfaceFlinger/Types/Color/ColorSwizzle.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/SurfaceFlinger/Types/GraphicBuffer.cs (renamed from Ryujinx.HLE/HOS/Services/SurfaceFlinger/Types/GraphicBuffer.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/SurfaceFlinger/Types/GraphicBufferHeader.cs (renamed from Ryujinx.HLE/HOS/Services/SurfaceFlinger/Types/GraphicBufferHeader.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/SurfaceFlinger/Types/NvGraphicBuffer.cs (renamed from Ryujinx.HLE/HOS/Services/SurfaceFlinger/Types/NvGraphicBuffer.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/SurfaceFlinger/Types/NvGraphicBufferSurface.cs (renamed from Ryujinx.HLE/HOS/Services/SurfaceFlinger/Types/NvGraphicBufferSurface.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/SurfaceFlinger/Types/NvGraphicBufferSurfaceArray.cs (renamed from Ryujinx.HLE/HOS/Services/SurfaceFlinger/Types/NvGraphicBufferSurfaceArray.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/SurfaceFlinger/Types/Rect.cs (renamed from Ryujinx.HLE/HOS/Services/SurfaceFlinger/Types/Rect.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Time/Clock/EphemeralNetworkSystemClockContextWriter.cs (renamed from Ryujinx.HLE/HOS/Services/Time/Clock/EphemeralNetworkSystemClockContextWriter.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Time/Clock/EphemeralNetworkSystemClockCore.cs (renamed from Ryujinx.HLE/HOS/Services/Time/Clock/EphemeralNetworkSystemClockCore.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Time/Clock/LocalSystemClockContextWriter.cs (renamed from Ryujinx.HLE/HOS/Services/Time/Clock/LocalSystemClockContextWriter.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Time/Clock/NetworkSystemClockContextWriter.cs (renamed from Ryujinx.HLE/HOS/Services/Time/Clock/NetworkSystemClockContextWriter.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Time/Clock/StandardLocalSystemClockCore.cs (renamed from Ryujinx.HLE/HOS/Services/Time/Clock/StandardLocalSystemClockCore.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Time/Clock/StandardNetworkSystemClockCore.cs (renamed from Ryujinx.HLE/HOS/Services/Time/Clock/StandardNetworkSystemClockCore.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Time/Clock/StandardSteadyClockCore.cs (renamed from Ryujinx.HLE/HOS/Services/Time/Clock/StandardSteadyClockCore.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Time/Clock/StandardUserSystemClockCore.cs (renamed from Ryujinx.HLE/HOS/Services/Time/Clock/StandardUserSystemClockCore.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Time/Clock/SteadyClockCore.cs (renamed from Ryujinx.HLE/HOS/Services/Time/Clock/SteadyClockCore.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Time/Clock/SystemClockContextUpdateCallback.cs (renamed from Ryujinx.HLE/HOS/Services/Time/Clock/SystemClockContextUpdateCallback.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Time/Clock/SystemClockCore.cs (renamed from Ryujinx.HLE/HOS/Services/Time/Clock/SystemClockCore.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Time/Clock/TickBasedSteadyClockCore.cs (renamed from Ryujinx.HLE/HOS/Services/Time/Clock/TickBasedSteadyClockCore.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Time/Clock/Types/ClockSnapshot.cs (renamed from Ryujinx.HLE/HOS/Services/Time/Clock/Types/ClockSnapshot.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Time/Clock/Types/SteadyClockTimePoint.cs (renamed from Ryujinx.HLE/HOS/Services/Time/Clock/Types/SteadyClockTimePoint.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Time/Clock/Types/SystemClockContext.cs (renamed from Ryujinx.HLE/HOS/Services/Time/Clock/Types/SystemClockContext.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Time/Clock/Types/TimeSpanType.cs (renamed from Ryujinx.HLE/HOS/Services/Time/Clock/Types/TimeSpanType.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Time/IAlarmService.cs (renamed from Ryujinx.HLE/HOS/Services/Time/IAlarmService.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Time/IPowerStateRequestHandler.cs (renamed from Ryujinx.HLE/HOS/Services/Time/IPowerStateRequestHandler.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Time/IStaticServiceForGlue.cs (renamed from Ryujinx.HLE/HOS/Services/Time/IStaticServiceForGlue.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Time/IStaticServiceForPsc.cs (renamed from Ryujinx.HLE/HOS/Services/Time/IStaticServiceForPsc.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Time/ITimeServiceManager.cs (renamed from Ryujinx.HLE/HOS/Services/Time/ITimeServiceManager.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Time/ResultCode.cs (renamed from Ryujinx.HLE/HOS/Services/Time/ResultCode.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Time/StaticService/ISteadyClock.cs (renamed from Ryujinx.HLE/HOS/Services/Time/StaticService/ISteadyClock.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Time/StaticService/ISystemClock.cs (renamed from Ryujinx.HLE/HOS/Services/Time/StaticService/ISystemClock.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Time/StaticService/ITimeZoneServiceForGlue.cs (renamed from Ryujinx.HLE/HOS/Services/Time/StaticService/ITimeZoneServiceForGlue.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Time/StaticService/ITimeZoneServiceForPsc.cs (renamed from Ryujinx.HLE/HOS/Services/Time/StaticService/ITimeZoneServiceForPsc.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Time/TimeManager.cs (renamed from Ryujinx.HLE/HOS/Services/Time/TimeManager.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Time/TimeSharedMemory.cs (renamed from Ryujinx.HLE/HOS/Services/Time/TimeSharedMemory.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Time/TimeZone/TimeZone.cs (renamed from Ryujinx.HLE/HOS/Services/Time/TimeZone/TimeZone.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Time/TimeZone/TimeZoneContentManager.cs (renamed from Ryujinx.HLE/HOS/Services/Time/TimeZone/TimeZoneContentManager.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Time/TimeZone/TimeZoneManager.cs (renamed from Ryujinx.HLE/HOS/Services/Time/TimeZone/TimeZoneManager.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Time/TimeZone/Types/CalendarAdditionalInfo.cs (renamed from Ryujinx.HLE/HOS/Services/Time/TimeZone/Types/CalendarAdditionalInfo.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Time/TimeZone/Types/CalendarInfo.cs (renamed from Ryujinx.HLE/HOS/Services/Time/TimeZone/Types/CalendarInfo.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Time/TimeZone/Types/CalendarTime.cs (renamed from Ryujinx.HLE/HOS/Services/Time/TimeZone/Types/CalendarTime.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Time/TimeZone/Types/TimeTypeInfo.cs (renamed from Ryujinx.HLE/HOS/Services/Time/TimeZone/Types/TimeTypeInfo.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Time/TimeZone/Types/TimeZoneRule.cs (renamed from Ryujinx.HLE/HOS/Services/Time/TimeZone/Types/TimeZoneRule.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Time/TimeZone/Types/TzifHeader.cs (renamed from Ryujinx.HLE/HOS/Services/Time/TimeZone/Types/TzifHeader.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Time/Types/SteadyClockContext.cs (renamed from Ryujinx.HLE/HOS/Services/Time/Types/SteadyClockContext.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Time/Types/TimePermissions.cs (renamed from Ryujinx.HLE/HOS/Services/Time/Types/TimePermissions.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Usb/IClientRootSession.cs (renamed from Ryujinx.HLE/HOS/Services/Usb/IClientRootSession.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Usb/IDsService.cs (renamed from Ryujinx.HLE/HOS/Services/Usb/IDsService.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Usb/IPdCradleManager.cs (renamed from Ryujinx.HLE/HOS/Services/Usb/IPdCradleManager.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Usb/IPdManager.cs (renamed from Ryujinx.HLE/HOS/Services/Usb/IPdManager.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Usb/IPmService.cs (renamed from Ryujinx.HLE/HOS/Services/Usb/IPmService.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Usb/IUnknown1.cs (renamed from Ryujinx.HLE/HOS/Services/Usb/IUnknown1.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Usb/IUnknown2.cs (renamed from Ryujinx.HLE/HOS/Services/Usb/IUnknown2.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Vi/IApplicationRootService.cs (renamed from Ryujinx.HLE/HOS/Services/Vi/IApplicationRootService.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Vi/IManagerRootService.cs (renamed from Ryujinx.HLE/HOS/Services/Vi/IManagerRootService.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Vi/ISystemRootService.cs (renamed from Ryujinx.HLE/HOS/Services/Vi/ISystemRootService.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Vi/ResultCode.cs (renamed from Ryujinx.HLE/HOS/Services/Vi/ResultCode.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Vi/RootService/ApplicationDisplayService/AndroidSurfaceComposerClient.cs (renamed from Ryujinx.HLE/HOS/Services/Vi/RootService/ApplicationDisplayService/AndroidSurfaceComposerClient.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Vi/RootService/ApplicationDisplayService/IManagerDisplayService.cs (renamed from Ryujinx.HLE/HOS/Services/Vi/RootService/ApplicationDisplayService/IManagerDisplayService.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Vi/RootService/ApplicationDisplayService/ISystemDisplayService.cs (renamed from Ryujinx.HLE/HOS/Services/Vi/RootService/ApplicationDisplayService/ISystemDisplayService.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Vi/RootService/ApplicationDisplayService/Types/DestinationScalingMode.cs (renamed from Ryujinx.HLE/HOS/Services/Vi/RootService/ApplicationDisplayService/Types/DestinationScalingMode.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Vi/RootService/ApplicationDisplayService/Types/DisplayInfo.cs (renamed from Ryujinx.HLE/HOS/Services/Vi/RootService/ApplicationDisplayService/Types/DisplayInfo.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Vi/RootService/ApplicationDisplayService/Types/SourceScalingMode.cs (renamed from Ryujinx.HLE/HOS/Services/Vi/RootService/ApplicationDisplayService/Types/SourceScalingMode.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Vi/RootService/IApplicationDisplayService.cs (renamed from Ryujinx.HLE/HOS/Services/Vi/RootService/IApplicationDisplayService.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Vi/Types/ViServiceType.cs (renamed from Ryujinx.HLE/HOS/Services/Vi/Types/ViServiceType.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Wlan/IInfraManager.cs (renamed from Ryujinx.HLE/HOS/Services/Wlan/IInfraManager.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Wlan/ILocalGetActionFrame.cs (renamed from Ryujinx.HLE/HOS/Services/Wlan/ILocalGetActionFrame.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Wlan/ILocalGetFrame.cs (renamed from Ryujinx.HLE/HOS/Services/Wlan/ILocalGetFrame.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Wlan/ILocalManager.cs (renamed from Ryujinx.HLE/HOS/Services/Wlan/ILocalManager.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Wlan/ISocketGetFrame.cs (renamed from Ryujinx.HLE/HOS/Services/Wlan/ISocketGetFrame.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Wlan/ISocketManager.cs (renamed from Ryujinx.HLE/HOS/Services/Wlan/ISocketManager.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Wlan/IUnknown1.cs (renamed from Ryujinx.HLE/HOS/Services/Wlan/IUnknown1.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/SystemState/AppletStateMgr.cs (renamed from Ryujinx.HLE/HOS/SystemState/AppletStateMgr.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/SystemState/ColorSet.cs (renamed from Ryujinx.HLE/HOS/SystemState/ColorSet.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/SystemState/KeyboardLayout.cs (renamed from Ryujinx.HLE/HOS/SystemState/KeyboardLayout.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/SystemState/RegionCode.cs (renamed from Ryujinx.HLE/HOS/SystemState/RegionCode.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/SystemState/SystemLanguage.cs (renamed from Ryujinx.HLE/HOS/SystemState/SystemLanguage.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/SystemState/SystemStateMgr.cs (renamed from Ryujinx.HLE/HOS/SystemState/SystemStateMgr.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/SystemState/TitleLanguage.cs (renamed from Ryujinx.HLE/HOS/SystemState/TitleLanguage.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Tamper/AtmosphereCompiler.cs (renamed from Ryujinx.HLE/HOS/Tamper/AtmosphereCompiler.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Tamper/AtmosphereProgram.cs (renamed from Ryujinx.HLE/HOS/Tamper/AtmosphereProgram.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Tamper/CodeEmitters/Arithmetic.cs (renamed from Ryujinx.HLE/HOS/Tamper/CodeEmitters/Arithmetic.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Tamper/CodeEmitters/BeginConditionalBlock.cs (renamed from Ryujinx.HLE/HOS/Tamper/CodeEmitters/BeginConditionalBlock.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Tamper/CodeEmitters/DebugLog.cs (renamed from Ryujinx.HLE/HOS/Tamper/CodeEmitters/DebugLog.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Tamper/CodeEmitters/EndConditionalBlock.cs (renamed from Ryujinx.HLE/HOS/Tamper/CodeEmitters/EndConditionalBlock.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Tamper/CodeEmitters/KeyPressConditional.cs (renamed from Ryujinx.HLE/HOS/Tamper/CodeEmitters/KeyPressConditional.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Tamper/CodeEmitters/LegacyArithmetic.cs (renamed from Ryujinx.HLE/HOS/Tamper/CodeEmitters/LegacyArithmetic.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Tamper/CodeEmitters/LoadRegisterWithConstant.cs (renamed from Ryujinx.HLE/HOS/Tamper/CodeEmitters/LoadRegisterWithConstant.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Tamper/CodeEmitters/LoadRegisterWithMemory.cs (renamed from Ryujinx.HLE/HOS/Tamper/CodeEmitters/LoadRegisterWithMemory.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Tamper/CodeEmitters/MemoryConditional.cs (renamed from Ryujinx.HLE/HOS/Tamper/CodeEmitters/MemoryConditional.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Tamper/CodeEmitters/PauseProcess.cs (renamed from Ryujinx.HLE/HOS/Tamper/CodeEmitters/PauseProcess.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Tamper/CodeEmitters/ReadOrWriteStaticRegister.cs (renamed from Ryujinx.HLE/HOS/Tamper/CodeEmitters/ReadOrWriteStaticRegister.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Tamper/CodeEmitters/RegisterConditional.cs (renamed from Ryujinx.HLE/HOS/Tamper/CodeEmitters/RegisterConditional.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Tamper/CodeEmitters/ResumeProcess.cs (renamed from Ryujinx.HLE/HOS/Tamper/CodeEmitters/ResumeProcess.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Tamper/CodeEmitters/SaveOrRestoreRegister.cs (renamed from Ryujinx.HLE/HOS/Tamper/CodeEmitters/SaveOrRestoreRegister.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Tamper/CodeEmitters/SaveOrRestoreRegisterWithMask.cs (renamed from Ryujinx.HLE/HOS/Tamper/CodeEmitters/SaveOrRestoreRegisterWithMask.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Tamper/CodeEmitters/StartEndLoop.cs (renamed from Ryujinx.HLE/HOS/Tamper/CodeEmitters/StartEndLoop.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Tamper/CodeEmitters/StoreConstantToAddress.cs (renamed from Ryujinx.HLE/HOS/Tamper/CodeEmitters/StoreConstantToAddress.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Tamper/CodeEmitters/StoreConstantToMemory.cs (renamed from Ryujinx.HLE/HOS/Tamper/CodeEmitters/StoreConstantToMemory.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Tamper/CodeEmitters/StoreRegisterToMemory.cs (renamed from Ryujinx.HLE/HOS/Tamper/CodeEmitters/StoreRegisterToMemory.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Tamper/CodeType.cs (renamed from Ryujinx.HLE/HOS/Tamper/CodeType.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Tamper/Comparison.cs (renamed from Ryujinx.HLE/HOS/Tamper/Comparison.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Tamper/CompilationContext.cs (renamed from Ryujinx.HLE/HOS/Tamper/CompilationContext.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Tamper/Conditions/CondEQ.cs (renamed from Ryujinx.HLE/HOS/Tamper/Conditions/CondEQ.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Tamper/Conditions/CondGE.cs (renamed from Ryujinx.HLE/HOS/Tamper/Conditions/CondGE.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Tamper/Conditions/CondGT.cs (renamed from Ryujinx.HLE/HOS/Tamper/Conditions/CondGT.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Tamper/Conditions/CondLE.cs (renamed from Ryujinx.HLE/HOS/Tamper/Conditions/CondLE.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Tamper/Conditions/CondLT.cs (renamed from Ryujinx.HLE/HOS/Tamper/Conditions/CondLT.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Tamper/Conditions/CondNE.cs (renamed from Ryujinx.HLE/HOS/Tamper/Conditions/CondNE.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Tamper/Conditions/ICondition.cs (renamed from Ryujinx.HLE/HOS/Tamper/Conditions/ICondition.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Tamper/Conditions/InputMask.cs (renamed from Ryujinx.HLE/HOS/Tamper/Conditions/InputMask.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Tamper/ITamperProgram.cs (renamed from Ryujinx.HLE/HOS/Tamper/ITamperProgram.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Tamper/ITamperedProcess.cs (renamed from Ryujinx.HLE/HOS/Tamper/ITamperedProcess.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Tamper/InstructionHelper.cs (renamed from Ryujinx.HLE/HOS/Tamper/InstructionHelper.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Tamper/MemoryHelper.cs (renamed from Ryujinx.HLE/HOS/Tamper/MemoryHelper.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Tamper/MemoryRegion.cs (renamed from Ryujinx.HLE/HOS/Tamper/MemoryRegion.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Tamper/OperationBlock.cs (renamed from Ryujinx.HLE/HOS/Tamper/OperationBlock.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Tamper/Operations/Block.cs (renamed from Ryujinx.HLE/HOS/Tamper/Operations/Block.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Tamper/Operations/ForBlock.cs (renamed from Ryujinx.HLE/HOS/Tamper/Operations/ForBlock.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Tamper/Operations/IOperand.cs (renamed from Ryujinx.HLE/HOS/Tamper/Operations/IOperand.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Tamper/Operations/IOperation.cs (renamed from Ryujinx.HLE/HOS/Tamper/Operations/IOperation.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Tamper/Operations/IfBlock.cs (renamed from Ryujinx.HLE/HOS/Tamper/Operations/IfBlock.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Tamper/Operations/OpAdd.cs (renamed from Ryujinx.HLE/HOS/Tamper/Operations/OpAdd.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Tamper/Operations/OpAnd.cs (renamed from Ryujinx.HLE/HOS/Tamper/Operations/OpAnd.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Tamper/Operations/OpLog.cs (renamed from Ryujinx.HLE/HOS/Tamper/Operations/OpLog.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Tamper/Operations/OpLsh.cs (renamed from Ryujinx.HLE/HOS/Tamper/Operations/OpLsh.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Tamper/Operations/OpMov.cs (renamed from Ryujinx.HLE/HOS/Tamper/Operations/OpMov.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Tamper/Operations/OpMul.cs (renamed from Ryujinx.HLE/HOS/Tamper/Operations/OpMul.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Tamper/Operations/OpNot.cs (renamed from Ryujinx.HLE/HOS/Tamper/Operations/OpNot.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Tamper/Operations/OpOr.cs (renamed from Ryujinx.HLE/HOS/Tamper/Operations/OpOr.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Tamper/Operations/OpProcCtrl.cs (renamed from Ryujinx.HLE/HOS/Tamper/Operations/OpProcCtrl.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Tamper/Operations/OpRsh.cs (renamed from Ryujinx.HLE/HOS/Tamper/Operations/OpRsh.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Tamper/Operations/OpSub.cs (renamed from Ryujinx.HLE/HOS/Tamper/Operations/OpSub.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Tamper/Operations/OpXor.cs (renamed from Ryujinx.HLE/HOS/Tamper/Operations/OpXor.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Tamper/Parameter.cs (renamed from Ryujinx.HLE/HOS/Tamper/Parameter.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Tamper/Pointer.cs (renamed from Ryujinx.HLE/HOS/Tamper/Pointer.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Tamper/Register.cs (renamed from Ryujinx.HLE/HOS/Tamper/Register.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Tamper/TamperedKProcess.cs (renamed from Ryujinx.HLE/HOS/Tamper/TamperedKProcess.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/Tamper/Value.cs (renamed from Ryujinx.HLE/HOS/Tamper/Value.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/TamperMachine.cs (renamed from Ryujinx.HLE/HOS/TamperMachine.cs)0
-rw-r--r--src/Ryujinx.HLE/HOS/UserChannelPersistence.cs (renamed from Ryujinx.HLE/HOS/UserChannelPersistence.cs)0
-rw-r--r--src/Ryujinx.HLE/Homebrew.npdm (renamed from Ryujinx.HLE/Homebrew.npdm)bin972 -> 972 bytes
-rw-r--r--src/Ryujinx.HLE/Loaders/Elf/ElfDynamic.cs (renamed from Ryujinx.HLE/Loaders/Elf/ElfDynamic.cs)0
-rw-r--r--src/Ryujinx.HLE/Loaders/Elf/ElfDynamicTag.cs (renamed from Ryujinx.HLE/Loaders/Elf/ElfDynamicTag.cs)0
-rw-r--r--src/Ryujinx.HLE/Loaders/Elf/ElfSymbol.cs (renamed from Ryujinx.HLE/Loaders/Elf/ElfSymbol.cs)0
-rw-r--r--src/Ryujinx.HLE/Loaders/Elf/ElfSymbol32.cs (renamed from Ryujinx.HLE/Loaders/Elf/ElfSymbol32.cs)0
-rw-r--r--src/Ryujinx.HLE/Loaders/Elf/ElfSymbol64.cs (renamed from Ryujinx.HLE/Loaders/Elf/ElfSymbol64.cs)0
-rw-r--r--src/Ryujinx.HLE/Loaders/Elf/ElfSymbolBinding.cs (renamed from Ryujinx.HLE/Loaders/Elf/ElfSymbolBinding.cs)0
-rw-r--r--src/Ryujinx.HLE/Loaders/Elf/ElfSymbolType.cs (renamed from Ryujinx.HLE/Loaders/Elf/ElfSymbolType.cs)0
-rw-r--r--src/Ryujinx.HLE/Loaders/Elf/ElfSymbolVisibility.cs (renamed from Ryujinx.HLE/Loaders/Elf/ElfSymbolVisibility.cs)0
-rw-r--r--src/Ryujinx.HLE/Loaders/Executables/IExecutable.cs (renamed from Ryujinx.HLE/Loaders/Executables/IExecutable.cs)0
-rw-r--r--src/Ryujinx.HLE/Loaders/Executables/KipExecutable.cs (renamed from Ryujinx.HLE/Loaders/Executables/KipExecutable.cs)0
-rw-r--r--src/Ryujinx.HLE/Loaders/Executables/NroExecutable.cs (renamed from Ryujinx.HLE/Loaders/Executables/NroExecutable.cs)0
-rw-r--r--src/Ryujinx.HLE/Loaders/Executables/NsoExecutable.cs (renamed from Ryujinx.HLE/Loaders/Executables/NsoExecutable.cs)0
-rw-r--r--src/Ryujinx.HLE/Loaders/Mods/IPSPatcher.cs (renamed from Ryujinx.HLE/Loaders/Mods/IPSPatcher.cs)0
-rw-r--r--src/Ryujinx.HLE/Loaders/Mods/IPSwitchPatcher.cs (renamed from Ryujinx.HLE/Loaders/Mods/IPSwitchPatcher.cs)0
-rw-r--r--src/Ryujinx.HLE/Loaders/Mods/MemPatch.cs (renamed from Ryujinx.HLE/Loaders/Mods/MemPatch.cs)0
-rw-r--r--src/Ryujinx.HLE/Loaders/Npdm/ACI0.cs (renamed from Ryujinx.HLE/Loaders/Npdm/ACI0.cs)0
-rw-r--r--src/Ryujinx.HLE/Loaders/Npdm/ACID.cs (renamed from Ryujinx.HLE/Loaders/Npdm/ACID.cs)0
-rw-r--r--src/Ryujinx.HLE/Loaders/Npdm/FsAccessControl.cs (renamed from Ryujinx.HLE/Loaders/Npdm/FsAccessControl.cs)0
-rw-r--r--src/Ryujinx.HLE/Loaders/Npdm/FsAccessHeader.cs (renamed from Ryujinx.HLE/Loaders/Npdm/FsAccessHeader.cs)0
-rw-r--r--src/Ryujinx.HLE/Loaders/Npdm/KernelAccessControl.cs (renamed from Ryujinx.HLE/Loaders/Npdm/KernelAccessControl.cs)0
-rw-r--r--src/Ryujinx.HLE/Loaders/Npdm/Npdm.cs (renamed from Ryujinx.HLE/Loaders/Npdm/Npdm.cs)0
-rw-r--r--src/Ryujinx.HLE/Loaders/Npdm/ServiceAccessControl.cs (renamed from Ryujinx.HLE/Loaders/Npdm/ServiceAccessControl.cs)0
-rw-r--r--src/Ryujinx.HLE/Loaders/Processes/Extensions/FileSystemExtensions.cs (renamed from Ryujinx.HLE/Loaders/Processes/Extensions/FileSystemExtensions.cs)0
-rw-r--r--src/Ryujinx.HLE/Loaders/Processes/Extensions/LocalFileSystemExtensions.cs (renamed from Ryujinx.HLE/Loaders/Processes/Extensions/LocalFileSystemExtensions.cs)0
-rw-r--r--src/Ryujinx.HLE/Loaders/Processes/Extensions/MetaLoaderExtensions.cs (renamed from Ryujinx.HLE/Loaders/Processes/Extensions/MetaLoaderExtensions.cs)0
-rw-r--r--src/Ryujinx.HLE/Loaders/Processes/Extensions/NcaExtensions.cs (renamed from Ryujinx.HLE/Loaders/Processes/Extensions/NcaExtensions.cs)0
-rw-r--r--src/Ryujinx.HLE/Loaders/Processes/Extensions/PartitionFileSystemExtensions.cs (renamed from Ryujinx.HLE/Loaders/Processes/Extensions/PartitionFileSystemExtensions.cs)0
-rw-r--r--src/Ryujinx.HLE/Loaders/Processes/ProcessConst.cs (renamed from Ryujinx.HLE/Loaders/Processes/ProcessConst.cs)0
-rw-r--r--src/Ryujinx.HLE/Loaders/Processes/ProcessLoader.cs (renamed from Ryujinx.HLE/Loaders/Processes/ProcessLoader.cs)0
-rw-r--r--src/Ryujinx.HLE/Loaders/Processes/ProcessLoaderHelper.cs (renamed from Ryujinx.HLE/Loaders/Processes/ProcessLoaderHelper.cs)0
-rw-r--r--src/Ryujinx.HLE/Loaders/Processes/ProcessResult.cs (renamed from Ryujinx.HLE/Loaders/Processes/ProcessResult.cs)0
-rw-r--r--src/Ryujinx.HLE/MemoryConfiguration.cs (renamed from Ryujinx.HLE/MemoryConfiguration.cs)0
-rw-r--r--src/Ryujinx.HLE/PerformanceStatistics.cs (renamed from Ryujinx.HLE/PerformanceStatistics.cs)0
-rw-r--r--src/Ryujinx.HLE/Ryujinx.HLE.csproj (renamed from Ryujinx.HLE/Ryujinx.HLE.csproj)0
-rw-r--r--src/Ryujinx.HLE/Switch.cs (renamed from Ryujinx.HLE/Switch.cs)0
-rw-r--r--src/Ryujinx.HLE/Ui/DynamicTextChangedHandler.cs (renamed from Ryujinx.HLE/Ui/DynamicTextChangedHandler.cs)0
-rw-r--r--src/Ryujinx.HLE/Ui/IDynamicTextInputHandler.cs (renamed from Ryujinx.HLE/Ui/IDynamicTextInputHandler.cs)0
-rw-r--r--src/Ryujinx.HLE/Ui/IHostUiHandler.cs (renamed from Ryujinx.HLE/Ui/IHostUiHandler.cs)0
-rw-r--r--src/Ryujinx.HLE/Ui/IHostUiTheme.cs (renamed from Ryujinx.HLE/Ui/IHostUiTheme.cs)0
-rw-r--r--src/Ryujinx.HLE/Ui/Input/NpadButtonHandler.cs (renamed from Ryujinx.HLE/Ui/Input/NpadButtonHandler.cs)0
-rw-r--r--src/Ryujinx.HLE/Ui/Input/NpadReader.cs (renamed from Ryujinx.HLE/Ui/Input/NpadReader.cs)0
-rw-r--r--src/Ryujinx.HLE/Ui/KeyPressedHandler.cs (renamed from Ryujinx.HLE/Ui/KeyPressedHandler.cs)0
-rw-r--r--src/Ryujinx.HLE/Ui/KeyReleasedHandler.cs (renamed from Ryujinx.HLE/Ui/KeyReleasedHandler.cs)0
-rw-r--r--src/Ryujinx.HLE/Ui/RenderingSurfaceInfo.cs (renamed from Ryujinx.HLE/Ui/RenderingSurfaceInfo.cs)0
-rw-r--r--src/Ryujinx.HLE/Ui/ThemeColor.cs (renamed from Ryujinx.HLE/Ui/ThemeColor.cs)0
-rw-r--r--src/Ryujinx.HLE/Utilities/StringUtils.cs (renamed from Ryujinx.HLE/Utilities/StringUtils.cs)0
-rw-r--r--src/Ryujinx.Headless.SDL2/HeadlessDynamicTextInputHandler.cs (renamed from Ryujinx.Headless.SDL2/HeadlessDynamicTextInputHandler.cs)0
-rw-r--r--src/Ryujinx.Headless.SDL2/HeadlessHostUiTheme.cs (renamed from Ryujinx.Headless.SDL2/HeadlessHostUiTheme.cs)0
-rw-r--r--src/Ryujinx.Headless.SDL2/HideCursor.cs (renamed from Ryujinx.Headless.SDL2/HideCursor.cs)0
-rw-r--r--src/Ryujinx.Headless.SDL2/OpenGL/OpenGLWindow.cs (renamed from Ryujinx.Headless.SDL2/OpenGL/OpenGLWindow.cs)0
-rw-r--r--src/Ryujinx.Headless.SDL2/Options.cs (renamed from Ryujinx.Headless.SDL2/Options.cs)0
-rw-r--r--src/Ryujinx.Headless.SDL2/Program.cs (renamed from Ryujinx.Headless.SDL2/Program.cs)0
-rw-r--r--src/Ryujinx.Headless.SDL2/Ryujinx.Headless.SDL2.csproj (renamed from Ryujinx.Headless.SDL2/Ryujinx.Headless.SDL2.csproj)6
-rw-r--r--src/Ryujinx.Headless.SDL2/Ryujinx.bmp (renamed from Ryujinx.Headless.SDL2/Ryujinx.bmp)bin9354 -> 9354 bytes
-rw-r--r--src/Ryujinx.Headless.SDL2/SDL2Mouse.cs (renamed from Ryujinx.Headless.SDL2/SDL2Mouse.cs)0
-rw-r--r--src/Ryujinx.Headless.SDL2/SDL2MouseDriver.cs (renamed from Ryujinx.Headless.SDL2/SDL2MouseDriver.cs)0
-rw-r--r--src/Ryujinx.Headless.SDL2/StatusUpdatedEventArgs.cs (renamed from Ryujinx.Headless.SDL2/StatusUpdatedEventArgs.cs)0
-rw-r--r--src/Ryujinx.Headless.SDL2/Vulkan/VulkanWindow.cs (renamed from Ryujinx.Headless.SDL2/Vulkan/VulkanWindow.cs)0
-rw-r--r--src/Ryujinx.Headless.SDL2/WindowBase.cs (renamed from Ryujinx.Headless.SDL2/WindowBase.cs)0
-rw-r--r--src/Ryujinx.Horizon.Common/ISyscallApi.cs (renamed from Ryujinx.Horizon.Common/ISyscallApi.cs)0
-rw-r--r--src/Ryujinx.Horizon.Common/IThreadContext.cs (renamed from Ryujinx.Horizon.Common/IThreadContext.cs)0
-rw-r--r--src/Ryujinx.Horizon.Common/InvalidResultException.cs (renamed from Ryujinx.Horizon.Common/InvalidResultException.cs)0
-rw-r--r--src/Ryujinx.Horizon.Common/KernelResult.cs (renamed from Ryujinx.Horizon.Common/KernelResult.cs)0
-rw-r--r--src/Ryujinx.Horizon.Common/OnScopeExit.cs (renamed from Ryujinx.Horizon.Common/OnScopeExit.cs)0
-rw-r--r--src/Ryujinx.Horizon.Common/Result.cs (renamed from Ryujinx.Horizon.Common/Result.cs)0
-rw-r--r--src/Ryujinx.Horizon.Common/ResultNames.cs (renamed from Ryujinx.Horizon.Common/ResultNames.cs)0
-rw-r--r--src/Ryujinx.Horizon.Common/Ryujinx.Horizon.Common.csproj (renamed from Ryujinx.Horizon.Common/Ryujinx.Horizon.Common.csproj)0
-rw-r--r--src/Ryujinx.Horizon.Common/ThreadTerminatedException.cs (renamed from Ryujinx.Horizon.Common/ThreadTerminatedException.cs)0
-rw-r--r--src/Ryujinx.Horizon.Generators/CodeGenerator.cs (renamed from Ryujinx.Horizon.Generators/CodeGenerator.cs)0
-rw-r--r--src/Ryujinx.Horizon.Generators/Hipc/CommandArgType.cs (renamed from Ryujinx.Horizon.Generators/Hipc/CommandArgType.cs)0
-rw-r--r--src/Ryujinx.Horizon.Generators/Hipc/CommandInterface.cs (renamed from Ryujinx.Horizon.Generators/Hipc/CommandInterface.cs)0
-rw-r--r--src/Ryujinx.Horizon.Generators/Hipc/HipcGenerator.cs (renamed from Ryujinx.Horizon.Generators/Hipc/HipcGenerator.cs)0
-rw-r--r--src/Ryujinx.Horizon.Generators/Hipc/HipcSyntaxReceiver.cs (renamed from Ryujinx.Horizon.Generators/Hipc/HipcSyntaxReceiver.cs)0
-rw-r--r--src/Ryujinx.Horizon.Generators/Ryujinx.Horizon.Generators.csproj (renamed from Ryujinx.Horizon.Generators/Ryujinx.Horizon.Generators.csproj)0
-rw-r--r--src/Ryujinx.Horizon.Kernel.Generators/CodeGenerator.cs (renamed from Ryujinx.Horizon.Kernel.Generators/CodeGenerator.cs)0
-rw-r--r--src/Ryujinx.Horizon.Kernel.Generators/Kernel/SyscallGenerator.cs (renamed from Ryujinx.Horizon.Kernel.Generators/Kernel/SyscallGenerator.cs)0
-rw-r--r--src/Ryujinx.Horizon.Kernel.Generators/Kernel/SyscallSyntaxReceiver.cs (renamed from Ryujinx.Horizon.Kernel.Generators/Kernel/SyscallSyntaxReceiver.cs)0
-rw-r--r--src/Ryujinx.Horizon.Kernel.Generators/Ryujinx.Horizon.Kernel.Generators.csproj (renamed from Ryujinx.Horizon.Kernel.Generators/Ryujinx.Horizon.Kernel.Generators.csproj)0
-rw-r--r--src/Ryujinx.Horizon/HeapAllocator.cs (renamed from Ryujinx.Horizon/HeapAllocator.cs)0
-rw-r--r--src/Ryujinx.Horizon/HorizonOptions.cs (renamed from Ryujinx.Horizon/HorizonOptions.cs)0
-rw-r--r--src/Ryujinx.Horizon/HorizonStatic.cs (renamed from Ryujinx.Horizon/HorizonStatic.cs)0
-rw-r--r--src/Ryujinx.Horizon/IService.cs (renamed from Ryujinx.Horizon/IService.cs)0
-rw-r--r--src/Ryujinx.Horizon/LogManager/Ipc/LmLogger.cs (renamed from Ryujinx.Horizon/LogManager/Ipc/LmLogger.cs)0
-rw-r--r--src/Ryujinx.Horizon/LogManager/Ipc/LogService.cs (renamed from Ryujinx.Horizon/LogManager/Ipc/LogService.cs)0
-rw-r--r--src/Ryujinx.Horizon/LogManager/LmIpcServer.cs (renamed from Ryujinx.Horizon/LogManager/LmIpcServer.cs)0
-rw-r--r--src/Ryujinx.Horizon/LogManager/LmMain.cs (renamed from Ryujinx.Horizon/LogManager/LmMain.cs)0
-rw-r--r--src/Ryujinx.Horizon/LogManager/Types/LogPacket.cs (renamed from Ryujinx.Horizon/LogManager/Types/LogPacket.cs)0
-rw-r--r--src/Ryujinx.Horizon/Prepo/Ipc/PrepoService.cs (renamed from Ryujinx.Horizon/Prepo/Ipc/PrepoService.cs)0
-rw-r--r--src/Ryujinx.Horizon/Prepo/PrepoIpcServer.cs (renamed from Ryujinx.Horizon/Prepo/PrepoIpcServer.cs)0
-rw-r--r--src/Ryujinx.Horizon/Prepo/PrepoMain.cs (renamed from Ryujinx.Horizon/Prepo/PrepoMain.cs)0
-rw-r--r--src/Ryujinx.Horizon/Prepo/PrepoResult.cs (renamed from Ryujinx.Horizon/Prepo/PrepoResult.cs)0
-rw-r--r--src/Ryujinx.Horizon/Prepo/PrepoServerManager.cs (renamed from Ryujinx.Horizon/Prepo/PrepoServerManager.cs)0
-rw-r--r--src/Ryujinx.Horizon/Prepo/Types/PrepoPortIndex.cs (renamed from Ryujinx.Horizon/Prepo/Types/PrepoPortIndex.cs)0
-rw-r--r--src/Ryujinx.Horizon/Prepo/Types/PrepoServicePermissionLevel.cs (renamed from Ryujinx.Horizon/Prepo/Types/PrepoServicePermissionLevel.cs)0
-rw-r--r--src/Ryujinx.Horizon/Ryujinx.Horizon.csproj (renamed from Ryujinx.Horizon/Ryujinx.Horizon.csproj)0
-rw-r--r--src/Ryujinx.Horizon/Sdk/Account/Uid.cs (renamed from Ryujinx.Horizon/Sdk/Account/Uid.cs)0
-rw-r--r--src/Ryujinx.Horizon/Sdk/DebugUtil.cs (renamed from Ryujinx.Horizon/Sdk/DebugUtil.cs)0
-rw-r--r--src/Ryujinx.Horizon/Sdk/Diag/LogSeverity.cs (renamed from Ryujinx.Horizon/Sdk/Diag/LogSeverity.cs)0
-rw-r--r--src/Ryujinx.Horizon/Sdk/Lm/ILmLogger.cs (renamed from Ryujinx.Horizon/Sdk/Lm/ILmLogger.cs)0
-rw-r--r--src/Ryujinx.Horizon/Sdk/Lm/ILogService.cs (renamed from Ryujinx.Horizon/Sdk/Lm/ILogService.cs)0
-rw-r--r--src/Ryujinx.Horizon/Sdk/Lm/LogDataChunkKey.cs (renamed from Ryujinx.Horizon/Sdk/Lm/LogDataChunkKey.cs)0
-rw-r--r--src/Ryujinx.Horizon/Sdk/Lm/LogDestination.cs (renamed from Ryujinx.Horizon/Sdk/Lm/LogDestination.cs)0
-rw-r--r--src/Ryujinx.Horizon/Sdk/Lm/LogPacketFlags.cs (renamed from Ryujinx.Horizon/Sdk/Lm/LogPacketFlags.cs)0
-rw-r--r--src/Ryujinx.Horizon/Sdk/Lm/LogPacketHeader.cs (renamed from Ryujinx.Horizon/Sdk/Lm/LogPacketHeader.cs)0
-rw-r--r--src/Ryujinx.Horizon/Sdk/Ncm/ApplicationId.cs (renamed from Ryujinx.Horizon/Sdk/Ncm/ApplicationId.cs)0
-rw-r--r--src/Ryujinx.Horizon/Sdk/OsTypes/Event.cs (renamed from Ryujinx.Horizon/Sdk/OsTypes/Event.cs)0
-rw-r--r--src/Ryujinx.Horizon/Sdk/OsTypes/EventClearMode.cs (renamed from Ryujinx.Horizon/Sdk/OsTypes/EventClearMode.cs)0
-rw-r--r--src/Ryujinx.Horizon/Sdk/OsTypes/EventType.cs (renamed from Ryujinx.Horizon/Sdk/OsTypes/EventType.cs)0
-rw-r--r--src/Ryujinx.Horizon/Sdk/OsTypes/Impl/InterProcessEvent.cs (renamed from Ryujinx.Horizon/Sdk/OsTypes/Impl/InterProcessEvent.cs)0
-rw-r--r--src/Ryujinx.Horizon/Sdk/OsTypes/Impl/InterProcessEventImpl.cs (renamed from Ryujinx.Horizon/Sdk/OsTypes/Impl/InterProcessEventImpl.cs)0
-rw-r--r--src/Ryujinx.Horizon/Sdk/OsTypes/Impl/MultiWaitImpl.cs (renamed from Ryujinx.Horizon/Sdk/OsTypes/Impl/MultiWaitImpl.cs)0
-rw-r--r--src/Ryujinx.Horizon/Sdk/OsTypes/InitializationState.cs (renamed from Ryujinx.Horizon/Sdk/OsTypes/InitializationState.cs)0
-rw-r--r--src/Ryujinx.Horizon/Sdk/OsTypes/InterProcessEventType.cs (renamed from Ryujinx.Horizon/Sdk/OsTypes/InterProcessEventType.cs)0
-rw-r--r--src/Ryujinx.Horizon/Sdk/OsTypes/MultiWait.cs (renamed from Ryujinx.Horizon/Sdk/OsTypes/MultiWait.cs)0
-rw-r--r--src/Ryujinx.Horizon/Sdk/OsTypes/MultiWaitHolder.cs (renamed from Ryujinx.Horizon/Sdk/OsTypes/MultiWaitHolder.cs)0
-rw-r--r--src/Ryujinx.Horizon/Sdk/OsTypes/MultiWaitHolderBase.cs (renamed from Ryujinx.Horizon/Sdk/OsTypes/MultiWaitHolderBase.cs)0
-rw-r--r--src/Ryujinx.Horizon/Sdk/OsTypes/MultiWaitHolderOfEvent.cs (renamed from Ryujinx.Horizon/Sdk/OsTypes/MultiWaitHolderOfEvent.cs)0
-rw-r--r--src/Ryujinx.Horizon/Sdk/OsTypes/MultiWaitHolderOfHandle.cs (renamed from Ryujinx.Horizon/Sdk/OsTypes/MultiWaitHolderOfHandle.cs)0
-rw-r--r--src/Ryujinx.Horizon/Sdk/OsTypes/OsEvent.cs (renamed from Ryujinx.Horizon/Sdk/OsTypes/OsEvent.cs)0
-rw-r--r--src/Ryujinx.Horizon/Sdk/OsTypes/OsMultiWait.cs (renamed from Ryujinx.Horizon/Sdk/OsTypes/OsMultiWait.cs)0
-rw-r--r--src/Ryujinx.Horizon/Sdk/OsTypes/OsProcessHandle.cs (renamed from Ryujinx.Horizon/Sdk/OsTypes/OsProcessHandle.cs)0
-rw-r--r--src/Ryujinx.Horizon/Sdk/OsTypes/OsResult.cs (renamed from Ryujinx.Horizon/Sdk/OsTypes/OsResult.cs)0
-rw-r--r--src/Ryujinx.Horizon/Sdk/OsTypes/OsSystemEvent.cs (renamed from Ryujinx.Horizon/Sdk/OsTypes/OsSystemEvent.cs)0
-rw-r--r--src/Ryujinx.Horizon/Sdk/OsTypes/OsThreadManager.cs (renamed from Ryujinx.Horizon/Sdk/OsTypes/OsThreadManager.cs)0
-rw-r--r--src/Ryujinx.Horizon/Sdk/OsTypes/SystemEventType.cs (renamed from Ryujinx.Horizon/Sdk/OsTypes/SystemEventType.cs)0
-rw-r--r--src/Ryujinx.Horizon/Sdk/OsTypes/TriBool.cs (renamed from Ryujinx.Horizon/Sdk/OsTypes/TriBool.cs)0
-rw-r--r--src/Ryujinx.Horizon/Sdk/Prepo/IPrepoService.cs (renamed from Ryujinx.Horizon/Sdk/Prepo/IPrepoService.cs)0
-rw-r--r--src/Ryujinx.Horizon/Sdk/ServiceUtil.cs (renamed from Ryujinx.Horizon/Sdk/ServiceUtil.cs)0
-rw-r--r--src/Ryujinx.Horizon/Sdk/Sf/Cmif/CmifDomainInHeader.cs (renamed from Ryujinx.Horizon/Sdk/Sf/Cmif/CmifDomainInHeader.cs)0
-rw-r--r--src/Ryujinx.Horizon/Sdk/Sf/Cmif/CmifDomainOutHeader.cs (renamed from Ryujinx.Horizon/Sdk/Sf/Cmif/CmifDomainOutHeader.cs)0
-rw-r--r--src/Ryujinx.Horizon/Sdk/Sf/Cmif/CmifDomainRequestType.cs (renamed from Ryujinx.Horizon/Sdk/Sf/Cmif/CmifDomainRequestType.cs)0
-rw-r--r--src/Ryujinx.Horizon/Sdk/Sf/Cmif/CmifInHeader.cs (renamed from Ryujinx.Horizon/Sdk/Sf/Cmif/CmifInHeader.cs)0
-rw-r--r--src/Ryujinx.Horizon/Sdk/Sf/Cmif/CmifMessage.cs (renamed from Ryujinx.Horizon/Sdk/Sf/Cmif/CmifMessage.cs)0
-rw-r--r--src/Ryujinx.Horizon/Sdk/Sf/Cmif/CmifOutHeader.cs (renamed from Ryujinx.Horizon/Sdk/Sf/Cmif/CmifOutHeader.cs)0
-rw-r--r--src/Ryujinx.Horizon/Sdk/Sf/Cmif/CmifRequest.cs (renamed from Ryujinx.Horizon/Sdk/Sf/Cmif/CmifRequest.cs)0
-rw-r--r--src/Ryujinx.Horizon/Sdk/Sf/Cmif/CmifRequestFormat.cs (renamed from Ryujinx.Horizon/Sdk/Sf/Cmif/CmifRequestFormat.cs)0
-rw-r--r--src/Ryujinx.Horizon/Sdk/Sf/Cmif/CmifResponse.cs (renamed from Ryujinx.Horizon/Sdk/Sf/Cmif/CmifResponse.cs)0
-rw-r--r--src/Ryujinx.Horizon/Sdk/Sf/Cmif/CommandType.cs (renamed from Ryujinx.Horizon/Sdk/Sf/Cmif/CommandType.cs)0
-rw-r--r--src/Ryujinx.Horizon/Sdk/Sf/Cmif/DomainServiceObject.cs (renamed from Ryujinx.Horizon/Sdk/Sf/Cmif/DomainServiceObject.cs)0
-rw-r--r--src/Ryujinx.Horizon/Sdk/Sf/Cmif/DomainServiceObjectDispatchTable.cs (renamed from Ryujinx.Horizon/Sdk/Sf/Cmif/DomainServiceObjectDispatchTable.cs)0
-rw-r--r--src/Ryujinx.Horizon/Sdk/Sf/Cmif/DomainServiceObjectProcessor.cs (renamed from Ryujinx.Horizon/Sdk/Sf/Cmif/DomainServiceObjectProcessor.cs)0
-rw-r--r--src/Ryujinx.Horizon/Sdk/Sf/Cmif/HandlesToClose.cs (renamed from Ryujinx.Horizon/Sdk/Sf/Cmif/HandlesToClose.cs)0
-rw-r--r--src/Ryujinx.Horizon/Sdk/Sf/Cmif/InlineContext.cs (renamed from Ryujinx.Horizon/Sdk/Sf/Cmif/InlineContext.cs)0
-rw-r--r--src/Ryujinx.Horizon/Sdk/Sf/Cmif/PointerAndSize.cs (renamed from Ryujinx.Horizon/Sdk/Sf/Cmif/PointerAndSize.cs)0
-rw-r--r--src/Ryujinx.Horizon/Sdk/Sf/Cmif/ScopedInlineContextChange.cs (renamed from Ryujinx.Horizon/Sdk/Sf/Cmif/ScopedInlineContextChange.cs)0
-rw-r--r--src/Ryujinx.Horizon/Sdk/Sf/Cmif/ServerDomainBase.cs (renamed from Ryujinx.Horizon/Sdk/Sf/Cmif/ServerDomainBase.cs)0
-rw-r--r--src/Ryujinx.Horizon/Sdk/Sf/Cmif/ServerDomainManager.cs (renamed from Ryujinx.Horizon/Sdk/Sf/Cmif/ServerDomainManager.cs)0
-rw-r--r--src/Ryujinx.Horizon/Sdk/Sf/Cmif/ServerMessageProcessor.cs (renamed from Ryujinx.Horizon/Sdk/Sf/Cmif/ServerMessageProcessor.cs)0
-rw-r--r--src/Ryujinx.Horizon/Sdk/Sf/Cmif/ServerMessageRuntimeMetadata.cs (renamed from Ryujinx.Horizon/Sdk/Sf/Cmif/ServerMessageRuntimeMetadata.cs)0
-rw-r--r--src/Ryujinx.Horizon/Sdk/Sf/Cmif/ServiceDispatchContext.cs (renamed from Ryujinx.Horizon/Sdk/Sf/Cmif/ServiceDispatchContext.cs)0
-rw-r--r--src/Ryujinx.Horizon/Sdk/Sf/Cmif/ServiceDispatchMeta.cs (renamed from Ryujinx.Horizon/Sdk/Sf/Cmif/ServiceDispatchMeta.cs)0
-rw-r--r--src/Ryujinx.Horizon/Sdk/Sf/Cmif/ServiceDispatchTable.cs (renamed from Ryujinx.Horizon/Sdk/Sf/Cmif/ServiceDispatchTable.cs)0
-rw-r--r--src/Ryujinx.Horizon/Sdk/Sf/Cmif/ServiceDispatchTableBase.cs (renamed from Ryujinx.Horizon/Sdk/Sf/Cmif/ServiceDispatchTableBase.cs)0
-rw-r--r--src/Ryujinx.Horizon/Sdk/Sf/Cmif/ServiceObjectHolder.cs (renamed from Ryujinx.Horizon/Sdk/Sf/Cmif/ServiceObjectHolder.cs)0
-rw-r--r--src/Ryujinx.Horizon/Sdk/Sf/CmifCommandAttribute.cs (renamed from Ryujinx.Horizon/Sdk/Sf/CmifCommandAttribute.cs)0
-rw-r--r--src/Ryujinx.Horizon/Sdk/Sf/CommandArg.cs (renamed from Ryujinx.Horizon/Sdk/Sf/CommandArg.cs)0
-rw-r--r--src/Ryujinx.Horizon/Sdk/Sf/CommandArgAttributes.cs (renamed from Ryujinx.Horizon/Sdk/Sf/CommandArgAttributes.cs)0
-rw-r--r--src/Ryujinx.Horizon/Sdk/Sf/CommandHandler.cs (renamed from Ryujinx.Horizon/Sdk/Sf/CommandHandler.cs)0
-rw-r--r--src/Ryujinx.Horizon/Sdk/Sf/CommandSerialization.cs (renamed from Ryujinx.Horizon/Sdk/Sf/CommandSerialization.cs)0
-rw-r--r--src/Ryujinx.Horizon/Sdk/Sf/Hipc/Api.cs (renamed from Ryujinx.Horizon/Sdk/Sf/Hipc/Api.cs)0
-rw-r--r--src/Ryujinx.Horizon/Sdk/Sf/Hipc/Header.cs (renamed from Ryujinx.Horizon/Sdk/Sf/Hipc/Header.cs)0
-rw-r--r--src/Ryujinx.Horizon/Sdk/Sf/Hipc/HipcBufferDescriptor.cs (renamed from Ryujinx.Horizon/Sdk/Sf/Hipc/HipcBufferDescriptor.cs)0
-rw-r--r--src/Ryujinx.Horizon/Sdk/Sf/Hipc/HipcBufferFlags.cs (renamed from Ryujinx.Horizon/Sdk/Sf/Hipc/HipcBufferFlags.cs)0
-rw-r--r--src/Ryujinx.Horizon/Sdk/Sf/Hipc/HipcBufferMode.cs (renamed from Ryujinx.Horizon/Sdk/Sf/Hipc/HipcBufferMode.cs)0
-rw-r--r--src/Ryujinx.Horizon/Sdk/Sf/Hipc/HipcManager.cs (renamed from Ryujinx.Horizon/Sdk/Sf/Hipc/HipcManager.cs)0
-rw-r--r--src/Ryujinx.Horizon/Sdk/Sf/Hipc/HipcMessage.cs (renamed from Ryujinx.Horizon/Sdk/Sf/Hipc/HipcMessage.cs)0
-rw-r--r--src/Ryujinx.Horizon/Sdk/Sf/Hipc/HipcMessageData.cs (renamed from Ryujinx.Horizon/Sdk/Sf/Hipc/HipcMessageData.cs)0
-rw-r--r--src/Ryujinx.Horizon/Sdk/Sf/Hipc/HipcMetadata.cs (renamed from Ryujinx.Horizon/Sdk/Sf/Hipc/HipcMetadata.cs)0
-rw-r--r--src/Ryujinx.Horizon/Sdk/Sf/Hipc/HipcReceiveListEntry.cs (renamed from Ryujinx.Horizon/Sdk/Sf/Hipc/HipcReceiveListEntry.cs)0
-rw-r--r--src/Ryujinx.Horizon/Sdk/Sf/Hipc/HipcResult.cs (renamed from Ryujinx.Horizon/Sdk/Sf/Hipc/HipcResult.cs)0
-rw-r--r--src/Ryujinx.Horizon/Sdk/Sf/Hipc/HipcStaticDescriptor.cs (renamed from Ryujinx.Horizon/Sdk/Sf/Hipc/HipcStaticDescriptor.cs)0
-rw-r--r--src/Ryujinx.Horizon/Sdk/Sf/Hipc/ManagerOptions.cs (renamed from Ryujinx.Horizon/Sdk/Sf/Hipc/ManagerOptions.cs)0
-rw-r--r--src/Ryujinx.Horizon/Sdk/Sf/Hipc/ReceiveResult.cs (renamed from Ryujinx.Horizon/Sdk/Sf/Hipc/ReceiveResult.cs)0
-rw-r--r--src/Ryujinx.Horizon/Sdk/Sf/Hipc/Server.cs (renamed from Ryujinx.Horizon/Sdk/Sf/Hipc/Server.cs)0
-rw-r--r--src/Ryujinx.Horizon/Sdk/Sf/Hipc/ServerDomainSessionManager.cs (renamed from Ryujinx.Horizon/Sdk/Sf/Hipc/ServerDomainSessionManager.cs)0
-rw-r--r--src/Ryujinx.Horizon/Sdk/Sf/Hipc/ServerManager.cs (renamed from Ryujinx.Horizon/Sdk/Sf/Hipc/ServerManager.cs)0
-rw-r--r--src/Ryujinx.Horizon/Sdk/Sf/Hipc/ServerManagerBase.cs (renamed from Ryujinx.Horizon/Sdk/Sf/Hipc/ServerManagerBase.cs)0
-rw-r--r--src/Ryujinx.Horizon/Sdk/Sf/Hipc/ServerSession.cs (renamed from Ryujinx.Horizon/Sdk/Sf/Hipc/ServerSession.cs)0
-rw-r--r--src/Ryujinx.Horizon/Sdk/Sf/Hipc/ServerSessionManager.cs (renamed from Ryujinx.Horizon/Sdk/Sf/Hipc/ServerSessionManager.cs)0
-rw-r--r--src/Ryujinx.Horizon/Sdk/Sf/Hipc/SpecialHeader.cs (renamed from Ryujinx.Horizon/Sdk/Sf/Hipc/SpecialHeader.cs)0
-rw-r--r--src/Ryujinx.Horizon/Sdk/Sf/HipcCommandProcessor.cs (renamed from Ryujinx.Horizon/Sdk/Sf/HipcCommandProcessor.cs)0
-rw-r--r--src/Ryujinx.Horizon/Sdk/Sf/IServiceObject.cs (renamed from Ryujinx.Horizon/Sdk/Sf/IServiceObject.cs)0
-rw-r--r--src/Ryujinx.Horizon/Sdk/Sf/RawDataOffsetCalculator.cs (renamed from Ryujinx.Horizon/Sdk/Sf/RawDataOffsetCalculator.cs)0
-rw-r--r--src/Ryujinx.Horizon/Sdk/Sf/SfResult.cs (renamed from Ryujinx.Horizon/Sdk/Sf/SfResult.cs)0
-rw-r--r--src/Ryujinx.Horizon/Sdk/Sm/IManagerService.cs (renamed from Ryujinx.Horizon/Sdk/Sm/IManagerService.cs)0
-rw-r--r--src/Ryujinx.Horizon/Sdk/Sm/IUserService.cs (renamed from Ryujinx.Horizon/Sdk/Sm/IUserService.cs)0
-rw-r--r--src/Ryujinx.Horizon/Sdk/Sm/ServiceName.cs (renamed from Ryujinx.Horizon/Sdk/Sm/ServiceName.cs)0
-rw-r--r--src/Ryujinx.Horizon/Sdk/Sm/SmApi.cs (renamed from Ryujinx.Horizon/Sdk/Sm/SmApi.cs)0
-rw-r--r--src/Ryujinx.Horizon/ServiceEntry.cs (renamed from Ryujinx.Horizon/ServiceEntry.cs)0
-rw-r--r--src/Ryujinx.Horizon/ServiceTable.cs (renamed from Ryujinx.Horizon/ServiceTable.cs)0
-rw-r--r--src/Ryujinx.Horizon/Sm/Impl/ServiceInfo.cs (renamed from Ryujinx.Horizon/Sm/Impl/ServiceInfo.cs)0
-rw-r--r--src/Ryujinx.Horizon/Sm/Impl/ServiceManager.cs (renamed from Ryujinx.Horizon/Sm/Impl/ServiceManager.cs)0
-rw-r--r--src/Ryujinx.Horizon/Sm/Ipc/ManagerService.cs (renamed from Ryujinx.Horizon/Sm/Ipc/ManagerService.cs)0
-rw-r--r--src/Ryujinx.Horizon/Sm/Ipc/UserService.cs (renamed from Ryujinx.Horizon/Sm/Ipc/UserService.cs)0
-rw-r--r--src/Ryujinx.Horizon/Sm/SmMain.cs (renamed from Ryujinx.Horizon/Sm/SmMain.cs)0
-rw-r--r--src/Ryujinx.Horizon/Sm/SmResult.cs (renamed from Ryujinx.Horizon/Sm/SmResult.cs)0
-rw-r--r--src/Ryujinx.Horizon/Sm/SmServerManager.cs (renamed from Ryujinx.Horizon/Sm/SmServerManager.cs)0
-rw-r--r--src/Ryujinx.Horizon/Sm/Types/SmPortIndex.cs (renamed from Ryujinx.Horizon/Sm/Types/SmPortIndex.cs)0
-rw-r--r--src/Ryujinx.Input.SDL2/Ryujinx.Input.SDL2.csproj (renamed from Ryujinx.Input.SDL2/Ryujinx.Input.SDL2.csproj)0
-rw-r--r--src/Ryujinx.Input.SDL2/SDL2Gamepad.cs (renamed from Ryujinx.Input.SDL2/SDL2Gamepad.cs)0
-rw-r--r--src/Ryujinx.Input.SDL2/SDL2GamepadDriver.cs (renamed from Ryujinx.Input.SDL2/SDL2GamepadDriver.cs)0
-rw-r--r--src/Ryujinx.Input.SDL2/SDL2Keyboard.cs (renamed from Ryujinx.Input.SDL2/SDL2Keyboard.cs)0
-rw-r--r--src/Ryujinx.Input.SDL2/SDLKeyboardDriver.cs (renamed from Ryujinx.Input.SDL2/SDLKeyboardDriver.cs)0
-rw-r--r--src/Ryujinx.Input/Assigner/GamepadButtonAssigner.cs (renamed from Ryujinx.Input/Assigner/GamepadButtonAssigner.cs)0
-rw-r--r--src/Ryujinx.Input/Assigner/IButtonAssigner.cs (renamed from Ryujinx.Input/Assigner/IButtonAssigner.cs)0
-rw-r--r--src/Ryujinx.Input/Assigner/KeyboardKeyAssigner.cs (renamed from Ryujinx.Input/Assigner/KeyboardKeyAssigner.cs)0
-rw-r--r--src/Ryujinx.Input/GamepadButtonInputId.cs (renamed from Ryujinx.Input/GamepadButtonInputId.cs)0
-rw-r--r--src/Ryujinx.Input/GamepadFeaturesFlag.cs (renamed from Ryujinx.Input/GamepadFeaturesFlag.cs)0
-rw-r--r--src/Ryujinx.Input/GamepadStateSnapshot.cs (renamed from Ryujinx.Input/GamepadStateSnapshot.cs)0
-rw-r--r--src/Ryujinx.Input/HLE/InputManager.cs (renamed from Ryujinx.Input/HLE/InputManager.cs)0
-rw-r--r--src/Ryujinx.Input/HLE/NpadController.cs (renamed from Ryujinx.Input/HLE/NpadController.cs)0
-rw-r--r--src/Ryujinx.Input/HLE/NpadManager.cs (renamed from Ryujinx.Input/HLE/NpadManager.cs)0
-rw-r--r--src/Ryujinx.Input/HLE/TouchScreenManager.cs (renamed from Ryujinx.Input/HLE/TouchScreenManager.cs)0
-rw-r--r--src/Ryujinx.Input/IGamepad.cs (renamed from Ryujinx.Input/IGamepad.cs)0
-rw-r--r--src/Ryujinx.Input/IGamepadDriver.cs (renamed from Ryujinx.Input/IGamepadDriver.cs)0
-rw-r--r--src/Ryujinx.Input/IKeyboard.cs (renamed from Ryujinx.Input/IKeyboard.cs)0
-rw-r--r--src/Ryujinx.Input/IMouse.cs (renamed from Ryujinx.Input/IMouse.cs)0
-rw-r--r--src/Ryujinx.Input/Key.cs (renamed from Ryujinx.Input/Key.cs)0
-rw-r--r--src/Ryujinx.Input/KeyboardStateSnapshot.cs (renamed from Ryujinx.Input/KeyboardStateSnapshot.cs)0
-rw-r--r--src/Ryujinx.Input/Motion/CemuHook/Client.cs (renamed from Ryujinx.Input/Motion/CemuHook/Client.cs)0
-rw-r--r--src/Ryujinx.Input/Motion/CemuHook/Protocol/ControllerData.cs (renamed from Ryujinx.Input/Motion/CemuHook/Protocol/ControllerData.cs)0
-rw-r--r--src/Ryujinx.Input/Motion/CemuHook/Protocol/ControllerInfo.cs (renamed from Ryujinx.Input/Motion/CemuHook/Protocol/ControllerInfo.cs)0
-rw-r--r--src/Ryujinx.Input/Motion/CemuHook/Protocol/Header.cs (renamed from Ryujinx.Input/Motion/CemuHook/Protocol/Header.cs)0
-rw-r--r--src/Ryujinx.Input/Motion/CemuHook/Protocol/MessageType.cs (renamed from Ryujinx.Input/Motion/CemuHook/Protocol/MessageType.cs)0
-rw-r--r--src/Ryujinx.Input/Motion/CemuHook/Protocol/SharedResponse.cs (renamed from Ryujinx.Input/Motion/CemuHook/Protocol/SharedResponse.cs)0
-rw-r--r--src/Ryujinx.Input/Motion/MotionInput.cs (renamed from Ryujinx.Input/Motion/MotionInput.cs)0
-rw-r--r--src/Ryujinx.Input/Motion/MotionSensorFilter.cs (renamed from Ryujinx.Input/Motion/MotionSensorFilter.cs)0
-rw-r--r--src/Ryujinx.Input/MotionInputId.cs (renamed from Ryujinx.Input/MotionInputId.cs)0
-rw-r--r--src/Ryujinx.Input/MouseButton.cs (renamed from Ryujinx.Input/MouseButton.cs)0
-rw-r--r--src/Ryujinx.Input/MouseStateSnapshot.cs (renamed from Ryujinx.Input/MouseStateSnapshot.cs)0
-rw-r--r--src/Ryujinx.Input/Ryujinx.Input.csproj (renamed from Ryujinx.Input/Ryujinx.Input.csproj)0
-rw-r--r--src/Ryujinx.Input/StickInputId.cs (renamed from Ryujinx.Input/StickInputId.cs)0
-rw-r--r--src/Ryujinx.Memory.Tests/MockVirtualMemoryManager.cs (renamed from Ryujinx.Memory.Tests/MockVirtualMemoryManager.cs)0
-rw-r--r--src/Ryujinx.Memory.Tests/MultiRegionTrackingTests.cs (renamed from Ryujinx.Memory.Tests/MultiRegionTrackingTests.cs)0
-rw-r--r--src/Ryujinx.Memory.Tests/Ryujinx.Memory.Tests.csproj (renamed from Ryujinx.Memory.Tests/Ryujinx.Memory.Tests.csproj)0
-rw-r--r--src/Ryujinx.Memory.Tests/Tests.cs (renamed from Ryujinx.Memory.Tests/Tests.cs)0
-rw-r--r--src/Ryujinx.Memory.Tests/TrackingTests.cs (renamed from Ryujinx.Memory.Tests/TrackingTests.cs)0
-rw-r--r--src/Ryujinx.Memory/AddressSpaceManager.cs (renamed from Ryujinx.Memory/AddressSpaceManager.cs)0
-rw-r--r--src/Ryujinx.Memory/IRefCounted.cs (renamed from Ryujinx.Memory/IRefCounted.cs)0
-rw-r--r--src/Ryujinx.Memory/IVirtualMemoryManager.cs (renamed from Ryujinx.Memory/IVirtualMemoryManager.cs)0
-rw-r--r--src/Ryujinx.Memory/IWritableBlock.cs (renamed from Ryujinx.Memory/IWritableBlock.cs)0
-rw-r--r--src/Ryujinx.Memory/InvalidAccessHandler.cs (renamed from Ryujinx.Memory/InvalidAccessHandler.cs)0
-rw-r--r--src/Ryujinx.Memory/InvalidMemoryRegionException.cs (renamed from Ryujinx.Memory/InvalidMemoryRegionException.cs)0
-rw-r--r--src/Ryujinx.Memory/MemoryAllocationFlags.cs (renamed from Ryujinx.Memory/MemoryAllocationFlags.cs)0
-rw-r--r--src/Ryujinx.Memory/MemoryBlock.cs (renamed from Ryujinx.Memory/MemoryBlock.cs)0
-rw-r--r--src/Ryujinx.Memory/MemoryConstants.cs (renamed from Ryujinx.Memory/MemoryConstants.cs)0
-rw-r--r--src/Ryujinx.Memory/MemoryManagement.cs (renamed from Ryujinx.Memory/MemoryManagement.cs)0
-rw-r--r--src/Ryujinx.Memory/MemoryManagementUnix.cs (renamed from Ryujinx.Memory/MemoryManagementUnix.cs)0
-rw-r--r--src/Ryujinx.Memory/MemoryManagementWindows.cs (renamed from Ryujinx.Memory/MemoryManagementWindows.cs)0
-rw-r--r--src/Ryujinx.Memory/MemoryManagerUnixHelper.cs (renamed from Ryujinx.Memory/MemoryManagerUnixHelper.cs)0
-rw-r--r--src/Ryujinx.Memory/MemoryMapFlags.cs (renamed from Ryujinx.Memory/MemoryMapFlags.cs)0
-rw-r--r--src/Ryujinx.Memory/MemoryNotContiguousException.cs (renamed from Ryujinx.Memory/MemoryNotContiguousException.cs)0
-rw-r--r--src/Ryujinx.Memory/MemoryPermission.cs (renamed from Ryujinx.Memory/MemoryPermission.cs)0
-rw-r--r--src/Ryujinx.Memory/MemoryProtectionException.cs (renamed from Ryujinx.Memory/MemoryProtectionException.cs)0
-rw-r--r--src/Ryujinx.Memory/NativeMemoryManager.cs (renamed from Ryujinx.Memory/NativeMemoryManager.cs)0
-rw-r--r--src/Ryujinx.Memory/PageTable.cs (renamed from Ryujinx.Memory/PageTable.cs)0
-rw-r--r--src/Ryujinx.Memory/Range/HostMemoryRange.cs (renamed from Ryujinx.Memory/Range/HostMemoryRange.cs)0
-rw-r--r--src/Ryujinx.Memory/Range/IMultiRangeItem.cs (renamed from Ryujinx.Memory/Range/IMultiRangeItem.cs)0
-rw-r--r--src/Ryujinx.Memory/Range/INonOverlappingRange.cs (renamed from Ryujinx.Memory/Range/INonOverlappingRange.cs)0
-rw-r--r--src/Ryujinx.Memory/Range/IRange.cs (renamed from Ryujinx.Memory/Range/IRange.cs)0
-rw-r--r--src/Ryujinx.Memory/Range/MemoryRange.cs (renamed from Ryujinx.Memory/Range/MemoryRange.cs)0
-rw-r--r--src/Ryujinx.Memory/Range/MultiRange.cs (renamed from Ryujinx.Memory/Range/MultiRange.cs)0
-rw-r--r--src/Ryujinx.Memory/Range/MultiRangeList.cs (renamed from Ryujinx.Memory/Range/MultiRangeList.cs)0
-rw-r--r--src/Ryujinx.Memory/Range/NonOverlappingRangeList.cs (renamed from Ryujinx.Memory/Range/NonOverlappingRangeList.cs)0
-rw-r--r--src/Ryujinx.Memory/Range/RangeList.cs (renamed from Ryujinx.Memory/Range/RangeList.cs)0
-rw-r--r--src/Ryujinx.Memory/Ryujinx.Memory.csproj (renamed from Ryujinx.Memory/Ryujinx.Memory.csproj)0
-rw-r--r--src/Ryujinx.Memory/Tracking/AbstractRegion.cs (renamed from Ryujinx.Memory/Tracking/AbstractRegion.cs)0
-rw-r--r--src/Ryujinx.Memory/Tracking/BitMap.cs (renamed from Ryujinx.Memory/Tracking/BitMap.cs)0
-rw-r--r--src/Ryujinx.Memory/Tracking/ConcurrentBitmap.cs (renamed from Ryujinx.Memory/Tracking/ConcurrentBitmap.cs)0
-rw-r--r--src/Ryujinx.Memory/Tracking/IMultiRegionHandle.cs (renamed from Ryujinx.Memory/Tracking/IMultiRegionHandle.cs)0
-rw-r--r--src/Ryujinx.Memory/Tracking/IRegionHandle.cs (renamed from Ryujinx.Memory/Tracking/IRegionHandle.cs)0
-rw-r--r--src/Ryujinx.Memory/Tracking/MemoryTracking.cs (renamed from Ryujinx.Memory/Tracking/MemoryTracking.cs)0
-rw-r--r--src/Ryujinx.Memory/Tracking/MultiRegionHandle.cs (renamed from Ryujinx.Memory/Tracking/MultiRegionHandle.cs)0
-rw-r--r--src/Ryujinx.Memory/Tracking/PreciseRegionSignal.cs (renamed from Ryujinx.Memory/Tracking/PreciseRegionSignal.cs)0
-rw-r--r--src/Ryujinx.Memory/Tracking/RegionHandle.cs (renamed from Ryujinx.Memory/Tracking/RegionHandle.cs)0
-rw-r--r--src/Ryujinx.Memory/Tracking/RegionSignal.cs (renamed from Ryujinx.Memory/Tracking/RegionSignal.cs)0
-rw-r--r--src/Ryujinx.Memory/Tracking/SmartMultiRegionHandle.cs (renamed from Ryujinx.Memory/Tracking/SmartMultiRegionHandle.cs)0
-rw-r--r--src/Ryujinx.Memory/Tracking/VirtualRegion.cs (renamed from Ryujinx.Memory/Tracking/VirtualRegion.cs)0
-rw-r--r--src/Ryujinx.Memory/WindowsShared/MappingTree.cs (renamed from Ryujinx.Memory/WindowsShared/MappingTree.cs)0
-rw-r--r--src/Ryujinx.Memory/WindowsShared/PlaceholderManager.cs (renamed from Ryujinx.Memory/WindowsShared/PlaceholderManager.cs)0
-rw-r--r--src/Ryujinx.Memory/WindowsShared/WindowsApi.cs (renamed from Ryujinx.Memory/WindowsShared/WindowsApi.cs)0
-rw-r--r--src/Ryujinx.Memory/WindowsShared/WindowsApiException.cs (renamed from Ryujinx.Memory/WindowsShared/WindowsApiException.cs)0
-rw-r--r--src/Ryujinx.Memory/WindowsShared/WindowsFlags.cs (renamed from Ryujinx.Memory/WindowsShared/WindowsFlags.cs)0
-rw-r--r--src/Ryujinx.Memory/WritableRegion.cs (renamed from Ryujinx.Memory/WritableRegion.cs)0
-rw-r--r--src/Ryujinx.SDL2.Common/Ryujinx.SDL2.Common.csproj (renamed from Ryujinx.SDL2.Common/Ryujinx.SDL2.Common.csproj)0
-rw-r--r--src/Ryujinx.SDL2.Common/SDL2Driver.cs (renamed from Ryujinx.SDL2.Common/SDL2Driver.cs)0
-rw-r--r--src/Ryujinx.ShaderTools/Program.cs (renamed from Ryujinx.ShaderTools/Program.cs)0
-rw-r--r--src/Ryujinx.ShaderTools/Ryujinx.ShaderTools.csproj (renamed from Ryujinx.ShaderTools/Ryujinx.ShaderTools.csproj)0
-rw-r--r--src/Ryujinx.Tests.Unicorn/IndexedProperty.cs (renamed from Ryujinx.Tests.Unicorn/IndexedProperty.cs)0
-rw-r--r--src/Ryujinx.Tests.Unicorn/MemoryPermission.cs (renamed from Ryujinx.Tests.Unicorn/MemoryPermission.cs)0
-rw-r--r--src/Ryujinx.Tests.Unicorn/Ryujinx.Tests.Unicorn.csproj (renamed from Ryujinx.Tests.Unicorn/Ryujinx.Tests.Unicorn.csproj)0
-rw-r--r--src/Ryujinx.Tests.Unicorn/SimdValue.cs (renamed from Ryujinx.Tests.Unicorn/SimdValue.cs)0
-rw-r--r--src/Ryujinx.Tests.Unicorn/UnicornAArch32.cs (renamed from Ryujinx.Tests.Unicorn/UnicornAArch32.cs)0
-rw-r--r--src/Ryujinx.Tests.Unicorn/UnicornAArch64.cs (renamed from Ryujinx.Tests.Unicorn/UnicornAArch64.cs)0
-rw-r--r--src/Ryujinx.Tests/.runsettings (renamed from Ryujinx.Tests/.runsettings)0
-rw-r--r--src/Ryujinx.Tests/Audio/Renderer/AudioRendererConfigurationTests.cs (renamed from Ryujinx.Tests/Audio/Renderer/AudioRendererConfigurationTests.cs)0
-rw-r--r--src/Ryujinx.Tests/Audio/Renderer/BehaviourParameterTests.cs (renamed from Ryujinx.Tests/Audio/Renderer/BehaviourParameterTests.cs)0
-rw-r--r--src/Ryujinx.Tests/Audio/Renderer/BiquadFilterParameterTests.cs (renamed from Ryujinx.Tests/Audio/Renderer/BiquadFilterParameterTests.cs)0
-rw-r--r--src/Ryujinx.Tests/Audio/Renderer/Common/UpdateDataHeaderTests.cs (renamed from Ryujinx.Tests/Audio/Renderer/Common/UpdateDataHeaderTests.cs)0
-rw-r--r--src/Ryujinx.Tests/Audio/Renderer/Common/VoiceUpdateStateTests.cs (renamed from Ryujinx.Tests/Audio/Renderer/Common/VoiceUpdateStateTests.cs)0
-rw-r--r--src/Ryujinx.Tests/Audio/Renderer/Common/WaveBufferTests.cs (renamed from Ryujinx.Tests/Audio/Renderer/Common/WaveBufferTests.cs)0
-rw-r--r--src/Ryujinx.Tests/Audio/Renderer/Dsp/ResamplerTests.cs (renamed from Ryujinx.Tests/Audio/Renderer/Dsp/ResamplerTests.cs)0
-rw-r--r--src/Ryujinx.Tests/Audio/Renderer/Dsp/UpsamplerTests.cs (renamed from Ryujinx.Tests/Audio/Renderer/Dsp/UpsamplerTests.cs)0
-rw-r--r--src/Ryujinx.Tests/Audio/Renderer/EffectInfoParameterTests.cs (renamed from Ryujinx.Tests/Audio/Renderer/EffectInfoParameterTests.cs)0
-rw-r--r--src/Ryujinx.Tests/Audio/Renderer/EffectOutStatusTests.cs (renamed from Ryujinx.Tests/Audio/Renderer/EffectOutStatusTests.cs)0
-rw-r--r--src/Ryujinx.Tests/Audio/Renderer/MemoryPoolParameterTests.cs (renamed from Ryujinx.Tests/Audio/Renderer/MemoryPoolParameterTests.cs)0
-rw-r--r--src/Ryujinx.Tests/Audio/Renderer/Parameter/BehaviourErrorInfoOutStatusTests.cs (renamed from Ryujinx.Tests/Audio/Renderer/Parameter/BehaviourErrorInfoOutStatusTests.cs)0
-rw-r--r--src/Ryujinx.Tests/Audio/Renderer/Parameter/Effect/AuxParameterTests.cs (renamed from Ryujinx.Tests/Audio/Renderer/Parameter/Effect/AuxParameterTests.cs)0
-rw-r--r--src/Ryujinx.Tests/Audio/Renderer/Parameter/Effect/BiquadFilterEffectParameterTests.cs (renamed from Ryujinx.Tests/Audio/Renderer/Parameter/Effect/BiquadFilterEffectParameterTests.cs)0
-rw-r--r--src/Ryujinx.Tests/Audio/Renderer/Parameter/Effect/BufferMixerParameterTests.cs (renamed from Ryujinx.Tests/Audio/Renderer/Parameter/Effect/BufferMixerParameterTests.cs)0
-rw-r--r--src/Ryujinx.Tests/Audio/Renderer/Parameter/Effect/CompressorParameterTests.cs (renamed from Ryujinx.Tests/Audio/Renderer/Parameter/Effect/CompressorParameterTests.cs)0
-rw-r--r--src/Ryujinx.Tests/Audio/Renderer/Parameter/Effect/DelayParameterTests.cs (renamed from Ryujinx.Tests/Audio/Renderer/Parameter/Effect/DelayParameterTests.cs)0
-rw-r--r--src/Ryujinx.Tests/Audio/Renderer/Parameter/Effect/LimiterParameterTests.cs (renamed from Ryujinx.Tests/Audio/Renderer/Parameter/Effect/LimiterParameterTests.cs)0
-rw-r--r--src/Ryujinx.Tests/Audio/Renderer/Parameter/Effect/LimiterStatisticsTests.cs (renamed from Ryujinx.Tests/Audio/Renderer/Parameter/Effect/LimiterStatisticsTests.cs)0
-rw-r--r--src/Ryujinx.Tests/Audio/Renderer/Parameter/Effect/Reverb3dParameterTests.cs (renamed from Ryujinx.Tests/Audio/Renderer/Parameter/Effect/Reverb3dParameterTests.cs)0
-rw-r--r--src/Ryujinx.Tests/Audio/Renderer/Parameter/Effect/ReverbParameterTests.cs (renamed from Ryujinx.Tests/Audio/Renderer/Parameter/Effect/ReverbParameterTests.cs)0
-rw-r--r--src/Ryujinx.Tests/Audio/Renderer/Parameter/MixInParameterDirtyOnlyUpdateTests.cs (renamed from Ryujinx.Tests/Audio/Renderer/Parameter/MixInParameterDirtyOnlyUpdateTests.cs)0
-rw-r--r--src/Ryujinx.Tests/Audio/Renderer/Parameter/MixParameterTests.cs (renamed from Ryujinx.Tests/Audio/Renderer/Parameter/MixParameterTests.cs)0
-rw-r--r--src/Ryujinx.Tests/Audio/Renderer/Parameter/PerformanceInParameterTests.cs (renamed from Ryujinx.Tests/Audio/Renderer/Parameter/PerformanceInParameterTests.cs)0
-rw-r--r--src/Ryujinx.Tests/Audio/Renderer/Parameter/PerformanceOutStatusTests.cs (renamed from Ryujinx.Tests/Audio/Renderer/Parameter/PerformanceOutStatusTests.cs)0
-rw-r--r--src/Ryujinx.Tests/Audio/Renderer/Parameter/RendererInfoOutStatusTests.cs (renamed from Ryujinx.Tests/Audio/Renderer/Parameter/RendererInfoOutStatusTests.cs)0
-rw-r--r--src/Ryujinx.Tests/Audio/Renderer/Parameter/Sink/CircularBufferParameterTests.cs (renamed from Ryujinx.Tests/Audio/Renderer/Parameter/Sink/CircularBufferParameterTests.cs)0
-rw-r--r--src/Ryujinx.Tests/Audio/Renderer/Parameter/Sink/DeviceParameterTests.cs (renamed from Ryujinx.Tests/Audio/Renderer/Parameter/Sink/DeviceParameterTests.cs)0
-rw-r--r--src/Ryujinx.Tests/Audio/Renderer/Parameter/SinkInParameterTests.cs (renamed from Ryujinx.Tests/Audio/Renderer/Parameter/SinkInParameterTests.cs)0
-rw-r--r--src/Ryujinx.Tests/Audio/Renderer/Parameter/SinkOutStatusTests.cs (renamed from Ryujinx.Tests/Audio/Renderer/Parameter/SinkOutStatusTests.cs)0
-rw-r--r--src/Ryujinx.Tests/Audio/Renderer/Parameter/SplitterInParamHeaderTests.cs (renamed from Ryujinx.Tests/Audio/Renderer/Parameter/SplitterInParamHeaderTests.cs)0
-rw-r--r--src/Ryujinx.Tests/Audio/Renderer/Server/AddressInfoTests.cs (renamed from Ryujinx.Tests/Audio/Renderer/Server/AddressInfoTests.cs)0
-rw-r--r--src/Ryujinx.Tests/Audio/Renderer/Server/BehaviourContextTests.cs (renamed from Ryujinx.Tests/Audio/Renderer/Server/BehaviourContextTests.cs)0
-rw-r--r--src/Ryujinx.Tests/Audio/Renderer/Server/MemoryPoolStateTests.cs (renamed from Ryujinx.Tests/Audio/Renderer/Server/MemoryPoolStateTests.cs)0
-rw-r--r--src/Ryujinx.Tests/Audio/Renderer/Server/MixStateTests.cs (renamed from Ryujinx.Tests/Audio/Renderer/Server/MixStateTests.cs)0
-rw-r--r--src/Ryujinx.Tests/Audio/Renderer/Server/PoolMapperTests.cs (renamed from Ryujinx.Tests/Audio/Renderer/Server/PoolMapperTests.cs)0
-rw-r--r--src/Ryujinx.Tests/Audio/Renderer/Server/SplitterDestinationTests.cs (renamed from Ryujinx.Tests/Audio/Renderer/Server/SplitterDestinationTests.cs)0
-rw-r--r--src/Ryujinx.Tests/Audio/Renderer/Server/SplitterStateTests.cs (renamed from Ryujinx.Tests/Audio/Renderer/Server/SplitterStateTests.cs)0
-rw-r--r--src/Ryujinx.Tests/Audio/Renderer/Server/VoiceChannelResourceTests.cs (renamed from Ryujinx.Tests/Audio/Renderer/Server/VoiceChannelResourceTests.cs)0
-rw-r--r--src/Ryujinx.Tests/Audio/Renderer/Server/VoiceStateTests.cs (renamed from Ryujinx.Tests/Audio/Renderer/Server/VoiceStateTests.cs)0
-rw-r--r--src/Ryujinx.Tests/Audio/Renderer/Server/WaveBufferTests.cs (renamed from Ryujinx.Tests/Audio/Renderer/Server/WaveBufferTests.cs)0
-rw-r--r--src/Ryujinx.Tests/Audio/Renderer/VoiceChannelResourceInParameterTests.cs (renamed from Ryujinx.Tests/Audio/Renderer/VoiceChannelResourceInParameterTests.cs)0
-rw-r--r--src/Ryujinx.Tests/Audio/Renderer/VoiceInParameterTests.cs (renamed from Ryujinx.Tests/Audio/Renderer/VoiceInParameterTests.cs)0
-rw-r--r--src/Ryujinx.Tests/Audio/Renderer/VoiceOutStatusTests.cs (renamed from Ryujinx.Tests/Audio/Renderer/VoiceOutStatusTests.cs)0
-rw-r--r--src/Ryujinx.Tests/Cpu/Arm64CodeGenCommonTests.cs (renamed from Ryujinx.Tests/Cpu/Arm64CodeGenCommonTests.cs)0
-rw-r--r--src/Ryujinx.Tests/Cpu/CpuContext.cs (renamed from Ryujinx.Tests/Cpu/CpuContext.cs)0
-rw-r--r--src/Ryujinx.Tests/Cpu/CpuTest.cs (renamed from Ryujinx.Tests/Cpu/CpuTest.cs)0
-rw-r--r--src/Ryujinx.Tests/Cpu/CpuTest32.cs (renamed from Ryujinx.Tests/Cpu/CpuTest32.cs)0
-rw-r--r--src/Ryujinx.Tests/Cpu/CpuTestAlu.cs (renamed from Ryujinx.Tests/Cpu/CpuTestAlu.cs)0
-rw-r--r--src/Ryujinx.Tests/Cpu/CpuTestAlu32.cs (renamed from Ryujinx.Tests/Cpu/CpuTestAlu32.cs)0
-rw-r--r--src/Ryujinx.Tests/Cpu/CpuTestAluBinary.cs (renamed from Ryujinx.Tests/Cpu/CpuTestAluBinary.cs)0
-rw-r--r--src/Ryujinx.Tests/Cpu/CpuTestAluBinary32.cs (renamed from Ryujinx.Tests/Cpu/CpuTestAluBinary32.cs)0
-rw-r--r--src/Ryujinx.Tests/Cpu/CpuTestAluImm.cs (renamed from Ryujinx.Tests/Cpu/CpuTestAluImm.cs)0
-rw-r--r--src/Ryujinx.Tests/Cpu/CpuTestAluImm32.cs (renamed from Ryujinx.Tests/Cpu/CpuTestAluImm32.cs)0
-rw-r--r--src/Ryujinx.Tests/Cpu/CpuTestAluRs.cs (renamed from Ryujinx.Tests/Cpu/CpuTestAluRs.cs)0
-rw-r--r--src/Ryujinx.Tests/Cpu/CpuTestAluRs32.cs (renamed from Ryujinx.Tests/Cpu/CpuTestAluRs32.cs)0
-rw-r--r--src/Ryujinx.Tests/Cpu/CpuTestAluRx.cs (renamed from Ryujinx.Tests/Cpu/CpuTestAluRx.cs)0
-rw-r--r--src/Ryujinx.Tests/Cpu/CpuTestBf32.cs (renamed from Ryujinx.Tests/Cpu/CpuTestBf32.cs)0
-rw-r--r--src/Ryujinx.Tests/Cpu/CpuTestBfm.cs (renamed from Ryujinx.Tests/Cpu/CpuTestBfm.cs)0
-rw-r--r--src/Ryujinx.Tests/Cpu/CpuTestCcmpImm.cs (renamed from Ryujinx.Tests/Cpu/CpuTestCcmpImm.cs)0
-rw-r--r--src/Ryujinx.Tests/Cpu/CpuTestCcmpReg.cs (renamed from Ryujinx.Tests/Cpu/CpuTestCcmpReg.cs)0
-rw-r--r--src/Ryujinx.Tests/Cpu/CpuTestCsel.cs (renamed from Ryujinx.Tests/Cpu/CpuTestCsel.cs)0
-rw-r--r--src/Ryujinx.Tests/Cpu/CpuTestMisc.cs (renamed from Ryujinx.Tests/Cpu/CpuTestMisc.cs)0
-rw-r--r--src/Ryujinx.Tests/Cpu/CpuTestMisc32.cs (renamed from Ryujinx.Tests/Cpu/CpuTestMisc32.cs)0
-rw-r--r--src/Ryujinx.Tests/Cpu/CpuTestMov.cs (renamed from Ryujinx.Tests/Cpu/CpuTestMov.cs)0
-rw-r--r--src/Ryujinx.Tests/Cpu/CpuTestMul.cs (renamed from Ryujinx.Tests/Cpu/CpuTestMul.cs)0
-rw-r--r--src/Ryujinx.Tests/Cpu/CpuTestMul32.cs (renamed from Ryujinx.Tests/Cpu/CpuTestMul32.cs)0
-rw-r--r--src/Ryujinx.Tests/Cpu/CpuTestSimd.cs (renamed from Ryujinx.Tests/Cpu/CpuTestSimd.cs)0
-rw-r--r--src/Ryujinx.Tests/Cpu/CpuTestSimd32.cs (renamed from Ryujinx.Tests/Cpu/CpuTestSimd32.cs)0
-rw-r--r--src/Ryujinx.Tests/Cpu/CpuTestSimdCrypto.cs (renamed from Ryujinx.Tests/Cpu/CpuTestSimdCrypto.cs)0
-rw-r--r--src/Ryujinx.Tests/Cpu/CpuTestSimdCrypto32.cs (renamed from Ryujinx.Tests/Cpu/CpuTestSimdCrypto32.cs)0
-rw-r--r--src/Ryujinx.Tests/Cpu/CpuTestSimdCvt.cs (renamed from Ryujinx.Tests/Cpu/CpuTestSimdCvt.cs)0
-rw-r--r--src/Ryujinx.Tests/Cpu/CpuTestSimdCvt32.cs (renamed from Ryujinx.Tests/Cpu/CpuTestSimdCvt32.cs)0
-rw-r--r--src/Ryujinx.Tests/Cpu/CpuTestSimdExt.cs (renamed from Ryujinx.Tests/Cpu/CpuTestSimdExt.cs)0
-rw-r--r--src/Ryujinx.Tests/Cpu/CpuTestSimdFcond.cs (renamed from Ryujinx.Tests/Cpu/CpuTestSimdFcond.cs)0
-rw-r--r--src/Ryujinx.Tests/Cpu/CpuTestSimdFmov.cs (renamed from Ryujinx.Tests/Cpu/CpuTestSimdFmov.cs)0
-rw-r--r--src/Ryujinx.Tests/Cpu/CpuTestSimdImm.cs (renamed from Ryujinx.Tests/Cpu/CpuTestSimdImm.cs)0
-rw-r--r--src/Ryujinx.Tests/Cpu/CpuTestSimdIns.cs (renamed from Ryujinx.Tests/Cpu/CpuTestSimdIns.cs)0
-rw-r--r--src/Ryujinx.Tests/Cpu/CpuTestSimdLogical32.cs (renamed from Ryujinx.Tests/Cpu/CpuTestSimdLogical32.cs)0
-rw-r--r--src/Ryujinx.Tests/Cpu/CpuTestSimdMemory32.cs (renamed from Ryujinx.Tests/Cpu/CpuTestSimdMemory32.cs)0
-rw-r--r--src/Ryujinx.Tests/Cpu/CpuTestSimdMov32.cs (renamed from Ryujinx.Tests/Cpu/CpuTestSimdMov32.cs)0
-rw-r--r--src/Ryujinx.Tests/Cpu/CpuTestSimdReg.cs (renamed from Ryujinx.Tests/Cpu/CpuTestSimdReg.cs)0
-rw-r--r--src/Ryujinx.Tests/Cpu/CpuTestSimdReg32.cs (renamed from Ryujinx.Tests/Cpu/CpuTestSimdReg32.cs)0
-rw-r--r--src/Ryujinx.Tests/Cpu/CpuTestSimdRegElem.cs (renamed from Ryujinx.Tests/Cpu/CpuTestSimdRegElem.cs)0
-rw-r--r--src/Ryujinx.Tests/Cpu/CpuTestSimdRegElem32.cs (renamed from Ryujinx.Tests/Cpu/CpuTestSimdRegElem32.cs)0
-rw-r--r--src/Ryujinx.Tests/Cpu/CpuTestSimdRegElemF.cs (renamed from Ryujinx.Tests/Cpu/CpuTestSimdRegElemF.cs)0
-rw-r--r--src/Ryujinx.Tests/Cpu/CpuTestSimdShImm.cs (renamed from Ryujinx.Tests/Cpu/CpuTestSimdShImm.cs)0
-rw-r--r--src/Ryujinx.Tests/Cpu/CpuTestSimdShImm32.cs (renamed from Ryujinx.Tests/Cpu/CpuTestSimdShImm32.cs)0
-rw-r--r--src/Ryujinx.Tests/Cpu/CpuTestSimdTbl.cs (renamed from Ryujinx.Tests/Cpu/CpuTestSimdTbl.cs)0
-rw-r--r--src/Ryujinx.Tests/Cpu/CpuTestSystem.cs (renamed from Ryujinx.Tests/Cpu/CpuTestSystem.cs)0
-rw-r--r--src/Ryujinx.Tests/Cpu/CpuTestT32Alu.cs (renamed from Ryujinx.Tests/Cpu/CpuTestT32Alu.cs)0
-rw-r--r--src/Ryujinx.Tests/Cpu/CpuTestT32Flow.cs (renamed from Ryujinx.Tests/Cpu/CpuTestT32Flow.cs)0
-rw-r--r--src/Ryujinx.Tests/Cpu/CpuTestT32Mem.cs (renamed from Ryujinx.Tests/Cpu/CpuTestT32Mem.cs)0
-rw-r--r--src/Ryujinx.Tests/Cpu/CpuTestThumb.cs (renamed from Ryujinx.Tests/Cpu/CpuTestThumb.cs)0
-rw-r--r--src/Ryujinx.Tests/Cpu/EnvironmentTests.cs (renamed from Ryujinx.Tests/Cpu/EnvironmentTests.cs)0
-rw-r--r--src/Ryujinx.Tests/Cpu/PrecomputedMemoryThumbTestCase.cs (renamed from Ryujinx.Tests/Cpu/PrecomputedMemoryThumbTestCase.cs)0
-rw-r--r--src/Ryujinx.Tests/Cpu/PrecomputedThumbTestCase.cs (renamed from Ryujinx.Tests/Cpu/PrecomputedThumbTestCase.cs)0
-rw-r--r--src/Ryujinx.Tests/HLE/SoftwareKeyboardTests.cs (renamed from Ryujinx.Tests/HLE/SoftwareKeyboardTests.cs)0
-rw-r--r--src/Ryujinx.Tests/Memory/MockMemoryManager.cs (renamed from Ryujinx.Tests/Memory/MockMemoryManager.cs)0
-rw-r--r--src/Ryujinx.Tests/Memory/PartialUnmaps.cs (renamed from Ryujinx.Tests/Memory/PartialUnmaps.cs)0
-rw-r--r--src/Ryujinx.Tests/Ryujinx.Tests.csproj (renamed from Ryujinx.Tests/Ryujinx.Tests.csproj)0
-rw-r--r--src/Ryujinx.Tests/Time/TimeZoneRuleTests.cs (renamed from Ryujinx.Tests/Time/TimeZoneRuleTests.cs)0
-rw-r--r--src/Ryujinx.Tests/TreeDictionaryTests.cs (renamed from Ryujinx.Tests/TreeDictionaryTests.cs)0
-rw-r--r--src/Ryujinx.Ui.Common/App/ApplicationAddedEventArgs.cs (renamed from Ryujinx.Ui.Common/App/ApplicationAddedEventArgs.cs)0
-rw-r--r--src/Ryujinx.Ui.Common/App/ApplicationCountUpdatedEventArgs.cs (renamed from Ryujinx.Ui.Common/App/ApplicationCountUpdatedEventArgs.cs)0
-rw-r--r--src/Ryujinx.Ui.Common/App/ApplicationData.cs (renamed from Ryujinx.Ui.Common/App/ApplicationData.cs)0
-rw-r--r--src/Ryujinx.Ui.Common/App/ApplicationJsonSerializerContext.cs (renamed from Ryujinx.Ui.Common/App/ApplicationJsonSerializerContext.cs)0
-rw-r--r--src/Ryujinx.Ui.Common/App/ApplicationLibrary.cs (renamed from Ryujinx.Ui.Common/App/ApplicationLibrary.cs)0
-rw-r--r--src/Ryujinx.Ui.Common/App/ApplicationMetadata.cs (renamed from Ryujinx.Ui.Common/App/ApplicationMetadata.cs)0
-rw-r--r--src/Ryujinx.Ui.Common/Configuration/AudioBackend.cs (renamed from Ryujinx.Ui.Common/Configuration/AudioBackend.cs)0
-rw-r--r--src/Ryujinx.Ui.Common/Configuration/ConfigurationFileFormat.cs (renamed from Ryujinx.Ui.Common/Configuration/ConfigurationFileFormat.cs)0
-rw-r--r--src/Ryujinx.Ui.Common/Configuration/ConfigurationFileFormatSettings.cs (renamed from Ryujinx.Ui.Common/Configuration/ConfigurationFileFormatSettings.cs)0
-rw-r--r--src/Ryujinx.Ui.Common/Configuration/ConfigurationJsonSerializerContext.cs (renamed from Ryujinx.Ui.Common/Configuration/ConfigurationJsonSerializerContext.cs)0
-rw-r--r--src/Ryujinx.Ui.Common/Configuration/ConfigurationLoadResult.cs (renamed from Ryujinx.Ui.Common/Configuration/ConfigurationLoadResult.cs)0
-rw-r--r--src/Ryujinx.Ui.Common/Configuration/ConfigurationState.cs (renamed from Ryujinx.Ui.Common/Configuration/ConfigurationState.cs)0
-rw-r--r--src/Ryujinx.Ui.Common/Configuration/FileTypes.cs (renamed from Ryujinx.Ui.Common/Configuration/FileTypes.cs)0
-rw-r--r--src/Ryujinx.Ui.Common/Configuration/LoggerModule.cs (renamed from Ryujinx.Ui.Common/Configuration/LoggerModule.cs)0
-rw-r--r--src/Ryujinx.Ui.Common/Configuration/System/Language.cs (renamed from Ryujinx.Ui.Common/Configuration/System/Language.cs)0
-rw-r--r--src/Ryujinx.Ui.Common/Configuration/System/Region.cs (renamed from Ryujinx.Ui.Common/Configuration/System/Region.cs)0
-rw-r--r--src/Ryujinx.Ui.Common/Configuration/Ui/ColumnSort.cs (renamed from Ryujinx.Ui.Common/Configuration/Ui/ColumnSort.cs)0
-rw-r--r--src/Ryujinx.Ui.Common/Configuration/Ui/GuiColumns.cs (renamed from Ryujinx.Ui.Common/Configuration/Ui/GuiColumns.cs)0
-rw-r--r--src/Ryujinx.Ui.Common/Configuration/Ui/ShownFileTypes.cs (renamed from Ryujinx.Ui.Common/Configuration/Ui/ShownFileTypes.cs)0
-rw-r--r--src/Ryujinx.Ui.Common/DiscordIntegrationModule.cs (renamed from Ryujinx.Ui.Common/DiscordIntegrationModule.cs)0
-rw-r--r--src/Ryujinx.Ui.Common/Extensions/FileTypeExtensions.cs (renamed from Ryujinx.Ui.Common/Extensions/FileTypeExtensions.cs)0
-rw-r--r--src/Ryujinx.Ui.Common/Helper/CommandLineState.cs (renamed from Ryujinx.Ui.Common/Helper/CommandLineState.cs)0
-rw-r--r--src/Ryujinx.Ui.Common/Helper/ConsoleHelper.cs (renamed from Ryujinx.Ui.Common/Helper/ConsoleHelper.cs)0
-rw-r--r--src/Ryujinx.Ui.Common/Helper/FileAssociationHelper.cs (renamed from Ryujinx.Ui.Common/Helper/FileAssociationHelper.cs)0
-rw-r--r--src/Ryujinx.Ui.Common/Helper/ObjectiveC.cs (renamed from Ryujinx.Ui.Common/Helper/ObjectiveC.cs)0
-rw-r--r--src/Ryujinx.Ui.Common/Helper/OpenHelper.cs (renamed from Ryujinx.Ui.Common/Helper/OpenHelper.cs)0
-rw-r--r--src/Ryujinx.Ui.Common/Helper/SetupValidator.cs (renamed from Ryujinx.Ui.Common/Helper/SetupValidator.cs)0
-rw-r--r--src/Ryujinx.Ui.Common/Models/Amiibo/AmiiboApi.cs (renamed from Ryujinx.Ui.Common/Models/Amiibo/AmiiboApi.cs)0
-rw-r--r--src/Ryujinx.Ui.Common/Models/Amiibo/AmiiboApiGamesSwitch.cs (renamed from Ryujinx.Ui.Common/Models/Amiibo/AmiiboApiGamesSwitch.cs)0
-rw-r--r--src/Ryujinx.Ui.Common/Models/Amiibo/AmiiboApiUsage.cs (renamed from Ryujinx.Ui.Common/Models/Amiibo/AmiiboApiUsage.cs)0
-rw-r--r--src/Ryujinx.Ui.Common/Models/Amiibo/AmiiboJson.cs (renamed from Ryujinx.Ui.Common/Models/Amiibo/AmiiboJson.cs)0
-rw-r--r--src/Ryujinx.Ui.Common/Models/Amiibo/AmiiboJsonSerializerContext.cs (renamed from Ryujinx.Ui.Common/Models/Amiibo/AmiiboJsonSerializerContext.cs)0
-rw-r--r--src/Ryujinx.Ui.Common/Models/Github/GithubReleaseAssetJsonResponse.cs (renamed from Ryujinx.Ui.Common/Models/Github/GithubReleaseAssetJsonResponse.cs)0
-rw-r--r--src/Ryujinx.Ui.Common/Models/Github/GithubReleasesJsonResponse.cs (renamed from Ryujinx.Ui.Common/Models/Github/GithubReleasesJsonResponse.cs)0
-rw-r--r--src/Ryujinx.Ui.Common/Models/Github/GithubReleasesJsonSerializerContext.cs (renamed from Ryujinx.Ui.Common/Models/Github/GithubReleasesJsonSerializerContext.cs)0
-rw-r--r--src/Ryujinx.Ui.Common/Resources/Controller_JoyConLeft.svg (renamed from Ryujinx.Ui.Common/Resources/Controller_JoyConLeft.svg)0
-rw-r--r--src/Ryujinx.Ui.Common/Resources/Controller_JoyConPair.svg (renamed from Ryujinx.Ui.Common/Resources/Controller_JoyConPair.svg)0
-rw-r--r--src/Ryujinx.Ui.Common/Resources/Controller_JoyConRight.svg (renamed from Ryujinx.Ui.Common/Resources/Controller_JoyConRight.svg)0
-rw-r--r--src/Ryujinx.Ui.Common/Resources/Controller_ProCon.svg (renamed from Ryujinx.Ui.Common/Resources/Controller_ProCon.svg)0
-rw-r--r--src/Ryujinx.Ui.Common/Resources/Icon_NCA.png (renamed from Ryujinx.Ui.Common/Resources/Icon_NCA.png)bin10190 -> 10190 bytes
-rw-r--r--src/Ryujinx.Ui.Common/Resources/Icon_NRO.png (renamed from Ryujinx.Ui.Common/Resources/Icon_NRO.png)bin10254 -> 10254 bytes
-rw-r--r--src/Ryujinx.Ui.Common/Resources/Icon_NSO.png (renamed from Ryujinx.Ui.Common/Resources/Icon_NSO.png)bin10354 -> 10354 bytes
-rw-r--r--src/Ryujinx.Ui.Common/Resources/Icon_NSP.png (renamed from Ryujinx.Ui.Common/Resources/Icon_NSP.png)bin9899 -> 9899 bytes
-rw-r--r--src/Ryujinx.Ui.Common/Resources/Icon_XCI.png (renamed from Ryujinx.Ui.Common/Resources/Icon_XCI.png)bin9809 -> 9809 bytes
-rw-r--r--src/Ryujinx.Ui.Common/Resources/Logo_Amiibo.png (renamed from Ryujinx.Ui.Common/Resources/Logo_Amiibo.png)bin10573 -> 10573 bytes
-rw-r--r--src/Ryujinx.Ui.Common/Resources/Logo_Discord_Dark.png (renamed from Ryujinx.Ui.Common/Resources/Logo_Discord_Dark.png)bin9835 -> 9835 bytes
-rw-r--r--src/Ryujinx.Ui.Common/Resources/Logo_Discord_Light.png (renamed from Ryujinx.Ui.Common/Resources/Logo_Discord_Light.png)bin10765 -> 10765 bytes
-rw-r--r--src/Ryujinx.Ui.Common/Resources/Logo_GitHub_Dark.png (renamed from Ryujinx.Ui.Common/Resources/Logo_GitHub_Dark.png)bin4837 -> 4837 bytes
-rw-r--r--src/Ryujinx.Ui.Common/Resources/Logo_GitHub_Light.png (renamed from Ryujinx.Ui.Common/Resources/Logo_GitHub_Light.png)bin5166 -> 5166 bytes
-rw-r--r--src/Ryujinx.Ui.Common/Resources/Logo_Patreon_Dark.png (renamed from Ryujinx.Ui.Common/Resources/Logo_Patreon_Dark.png)bin52210 -> 52210 bytes
-rw-r--r--src/Ryujinx.Ui.Common/Resources/Logo_Patreon_Light.png (renamed from Ryujinx.Ui.Common/Resources/Logo_Patreon_Light.png)bin29395 -> 29395 bytes
-rw-r--r--src/Ryujinx.Ui.Common/Resources/Logo_Ryujinx.png (renamed from Ryujinx.Ui.Common/Resources/Logo_Ryujinx.png)bin52972 -> 52972 bytes
-rw-r--r--src/Ryujinx.Ui.Common/Resources/Logo_Twitter_Dark.png (renamed from Ryujinx.Ui.Common/Resources/Logo_Twitter_Dark.png)bin18385 -> 18385 bytes
-rw-r--r--src/Ryujinx.Ui.Common/Resources/Logo_Twitter_Light.png (renamed from Ryujinx.Ui.Common/Resources/Logo_Twitter_Light.png)bin19901 -> 19901 bytes
-rw-r--r--src/Ryujinx.Ui.Common/Ryujinx.Ui.Common.csproj (renamed from Ryujinx.Ui.Common/Ryujinx.Ui.Common.csproj)0
-rw-r--r--src/Ryujinx.Ui.Common/UserError.cs (renamed from Ryujinx.Ui.Common/UserError.cs)0
-rw-r--r--src/Ryujinx.Ui.LocaleGenerator/LocaleGenerator.cs (renamed from Ryujinx.Ui.LocaleGenerator/LocaleGenerator.cs)0
-rw-r--r--src/Ryujinx.Ui.LocaleGenerator/Ryujinx.Ui.LocaleGenerator.csproj (renamed from Ryujinx.Ui.LocaleGenerator/Ryujinx.Ui.LocaleGenerator.csproj)0
-rw-r--r--src/Ryujinx/Input/GTK3/GTK3Keyboard.cs (renamed from Ryujinx/Input/GTK3/GTK3Keyboard.cs)0
-rw-r--r--src/Ryujinx/Input/GTK3/GTK3KeyboardDriver.cs (renamed from Ryujinx/Input/GTK3/GTK3KeyboardDriver.cs)0
-rw-r--r--src/Ryujinx/Input/GTK3/GTK3MappingHelper.cs (renamed from Ryujinx/Input/GTK3/GTK3MappingHelper.cs)0
-rw-r--r--src/Ryujinx/Input/GTK3/GTK3Mouse.cs (renamed from Ryujinx/Input/GTK3/GTK3Mouse.cs)0
-rw-r--r--src/Ryujinx/Input/GTK3/GTK3MouseDriver.cs (renamed from Ryujinx/Input/GTK3/GTK3MouseDriver.cs)0
-rw-r--r--src/Ryujinx/Modules/Updater/UpdateDialog.cs (renamed from Ryujinx/Modules/Updater/UpdateDialog.cs)0
-rw-r--r--src/Ryujinx/Modules/Updater/UpdateDialog.glade (renamed from Ryujinx/Modules/Updater/UpdateDialog.glade)0
-rw-r--r--src/Ryujinx/Modules/Updater/Updater.cs (renamed from Ryujinx/Modules/Updater/Updater.cs)0
-rw-r--r--src/Ryujinx/Program.cs (renamed from Ryujinx/Program.cs)0
-rw-r--r--src/Ryujinx/Ryujinx.csproj (renamed from Ryujinx/Ryujinx.csproj)10
-rw-r--r--src/Ryujinx/Ryujinx.ico (renamed from Ryujinx/Ryujinx.ico)bin108122 -> 108122 bytes
-rw-r--r--src/Ryujinx/Ui/Applet/ErrorAppletDialog.cs (renamed from Ryujinx/Ui/Applet/ErrorAppletDialog.cs)0
-rw-r--r--src/Ryujinx/Ui/Applet/GtkDynamicTextInputHandler.cs (renamed from Ryujinx/Ui/Applet/GtkDynamicTextInputHandler.cs)0
-rw-r--r--src/Ryujinx/Ui/Applet/GtkHostUiHandler.cs (renamed from Ryujinx/Ui/Applet/GtkHostUiHandler.cs)0
-rw-r--r--src/Ryujinx/Ui/Applet/GtkHostUiTheme.cs (renamed from Ryujinx/Ui/Applet/GtkHostUiTheme.cs)0
-rw-r--r--src/Ryujinx/Ui/Applet/SwkbdAppletDialog.cs (renamed from Ryujinx/Ui/Applet/SwkbdAppletDialog.cs)0
-rw-r--r--src/Ryujinx/Ui/GLRenderer.cs (renamed from Ryujinx/Ui/GLRenderer.cs)0
-rw-r--r--src/Ryujinx/Ui/Helper/MetalHelper.cs (renamed from Ryujinx/Ui/Helper/MetalHelper.cs)0
-rw-r--r--src/Ryujinx/Ui/Helper/SortHelper.cs (renamed from Ryujinx/Ui/Helper/SortHelper.cs)0
-rw-r--r--src/Ryujinx/Ui/Helper/ThemeHelper.cs (renamed from Ryujinx/Ui/Helper/ThemeHelper.cs)0
-rw-r--r--src/Ryujinx/Ui/MainWindow.cs (renamed from Ryujinx/Ui/MainWindow.cs)0
-rw-r--r--src/Ryujinx/Ui/MainWindow.glade (renamed from Ryujinx/Ui/MainWindow.glade)0
-rw-r--r--src/Ryujinx/Ui/OpenToolkitBindingsContext.cs (renamed from Ryujinx/Ui/OpenToolkitBindingsContext.cs)0
-rw-r--r--src/Ryujinx/Ui/RendererWidgetBase.cs (renamed from Ryujinx/Ui/RendererWidgetBase.cs)0
-rw-r--r--src/Ryujinx/Ui/SPBOpenGLContext.cs (renamed from Ryujinx/Ui/SPBOpenGLContext.cs)0
-rw-r--r--src/Ryujinx/Ui/StatusUpdatedEventArgs.cs (renamed from Ryujinx/Ui/StatusUpdatedEventArgs.cs)0
-rw-r--r--src/Ryujinx/Ui/VKRenderer.cs (renamed from Ryujinx/Ui/VKRenderer.cs)0
-rw-r--r--src/Ryujinx/Ui/Widgets/GameTableContextMenu.Designer.cs (renamed from Ryujinx/Ui/Widgets/GameTableContextMenu.Designer.cs)0
-rw-r--r--src/Ryujinx/Ui/Widgets/GameTableContextMenu.cs (renamed from Ryujinx/Ui/Widgets/GameTableContextMenu.cs)0
-rw-r--r--src/Ryujinx/Ui/Widgets/GtkDialog.cs (renamed from Ryujinx/Ui/Widgets/GtkDialog.cs)0
-rw-r--r--src/Ryujinx/Ui/Widgets/GtkInputDialog.cs (renamed from Ryujinx/Ui/Widgets/GtkInputDialog.cs)0
-rw-r--r--src/Ryujinx/Ui/Widgets/ProfileDialog.cs (renamed from Ryujinx/Ui/Widgets/ProfileDialog.cs)0
-rw-r--r--src/Ryujinx/Ui/Widgets/ProfileDialog.glade (renamed from Ryujinx/Ui/Widgets/ProfileDialog.glade)0
-rw-r--r--src/Ryujinx/Ui/Widgets/RawInputToTextEntry.cs (renamed from Ryujinx/Ui/Widgets/RawInputToTextEntry.cs)0
-rw-r--r--src/Ryujinx/Ui/Widgets/UserErrorDialog.cs (renamed from Ryujinx/Ui/Widgets/UserErrorDialog.cs)0
-rw-r--r--src/Ryujinx/Ui/Windows/AboutWindow.Designer.cs (renamed from Ryujinx/Ui/Windows/AboutWindow.Designer.cs)0
-rw-r--r--src/Ryujinx/Ui/Windows/AboutWindow.cs (renamed from Ryujinx/Ui/Windows/AboutWindow.cs)0
-rw-r--r--src/Ryujinx/Ui/Windows/AmiiboWindow.Designer.cs (renamed from Ryujinx/Ui/Windows/AmiiboWindow.Designer.cs)0
-rw-r--r--src/Ryujinx/Ui/Windows/AmiiboWindow.cs (renamed from Ryujinx/Ui/Windows/AmiiboWindow.cs)0
-rw-r--r--src/Ryujinx/Ui/Windows/AvatarWindow.cs (renamed from Ryujinx/Ui/Windows/AvatarWindow.cs)0
-rw-r--r--src/Ryujinx/Ui/Windows/CheatWindow.cs (renamed from Ryujinx/Ui/Windows/CheatWindow.cs)0
-rw-r--r--src/Ryujinx/Ui/Windows/CheatWindow.glade (renamed from Ryujinx/Ui/Windows/CheatWindow.glade)0
-rw-r--r--src/Ryujinx/Ui/Windows/ControllerWindow.cs (renamed from Ryujinx/Ui/Windows/ControllerWindow.cs)0
-rw-r--r--src/Ryujinx/Ui/Windows/ControllerWindow.glade (renamed from Ryujinx/Ui/Windows/ControllerWindow.glade)0
-rw-r--r--src/Ryujinx/Ui/Windows/DlcWindow.cs (renamed from Ryujinx/Ui/Windows/DlcWindow.cs)0
-rw-r--r--src/Ryujinx/Ui/Windows/DlcWindow.glade (renamed from Ryujinx/Ui/Windows/DlcWindow.glade)0
-rw-r--r--src/Ryujinx/Ui/Windows/SettingsWindow.cs (renamed from Ryujinx/Ui/Windows/SettingsWindow.cs)0
-rw-r--r--src/Ryujinx/Ui/Windows/SettingsWindow.glade (renamed from Ryujinx/Ui/Windows/SettingsWindow.glade)0
-rw-r--r--src/Ryujinx/Ui/Windows/TitleUpdateWindow.cs (renamed from Ryujinx/Ui/Windows/TitleUpdateWindow.cs)0
-rw-r--r--src/Ryujinx/Ui/Windows/TitleUpdateWindow.glade (renamed from Ryujinx/Ui/Windows/TitleUpdateWindow.glade)0
-rw-r--r--src/Ryujinx/Ui/Windows/UserProfilesManagerWindow.Designer.cs (renamed from Ryujinx/Ui/Windows/UserProfilesManagerWindow.Designer.cs)0
-rw-r--r--src/Ryujinx/Ui/Windows/UserProfilesManagerWindow.cs (renamed from Ryujinx/Ui/Windows/UserProfilesManagerWindow.cs)0
-rw-r--r--src/Spv.Generator/Autogenerated/CoreGrammar.cs (renamed from Spv.Generator/Autogenerated/CoreGrammar.cs)0
-rw-r--r--src/Spv.Generator/Autogenerated/GlslStd450Grammar.cs (renamed from Spv.Generator/Autogenerated/GlslStd450Grammar.cs)0
-rw-r--r--src/Spv.Generator/Autogenerated/OpenClGrammar.cs (renamed from Spv.Generator/Autogenerated/OpenClGrammar.cs)0
-rw-r--r--src/Spv.Generator/ConstantKey.cs (renamed from Spv.Generator/ConstantKey.cs)0
-rw-r--r--src/Spv.Generator/DeterministicHashCode.cs (renamed from Spv.Generator/DeterministicHashCode.cs)0
-rw-r--r--src/Spv.Generator/DeterministicStringKey.cs (renamed from Spv.Generator/DeterministicStringKey.cs)0
-rw-r--r--src/Spv.Generator/GeneratorPool.cs (renamed from Spv.Generator/GeneratorPool.cs)0
-rw-r--r--src/Spv.Generator/Instruction.cs (renamed from Spv.Generator/Instruction.cs)0
-rw-r--r--src/Spv.Generator/InstructionOperands.cs (renamed from Spv.Generator/InstructionOperands.cs)0
-rw-r--r--src/Spv.Generator/LICENSE (renamed from Spv.Generator/LICENSE)0
-rw-r--r--src/Spv.Generator/LiteralInteger.cs (renamed from Spv.Generator/LiteralInteger.cs)0
-rw-r--r--src/Spv.Generator/LiteralString.cs (renamed from Spv.Generator/LiteralString.cs)0
-rw-r--r--src/Spv.Generator/Module.cs (renamed from Spv.Generator/Module.cs)0
-rw-r--r--src/Spv.Generator/Operand.cs (renamed from Spv.Generator/Operand.cs)0
-rw-r--r--src/Spv.Generator/OperandType.cs (renamed from Spv.Generator/OperandType.cs)0
-rw-r--r--src/Spv.Generator/Spv.Generator.csproj (renamed from Spv.Generator/Spv.Generator.csproj)0
-rw-r--r--src/Spv.Generator/TypeDeclarationKey.cs (renamed from Spv.Generator/TypeDeclarationKey.cs)0
-rw-r--r--src/Spv.Generator/spirv.cs (renamed from Spv.Generator/spirv.cs)0
3466 files changed, 55 insertions, 55 deletions
diff --git a/Ryujinx.sln b/Ryujinx.sln
index 12657bf9..49fdc9c9 100644
--- a/Ryujinx.sln
+++ b/Ryujinx.sln
@@ -3,33 +3,33 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.1.32228.430
MinimumVisualStudioVersion = 10.0.40219.1
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx", "Ryujinx\Ryujinx.csproj", "{074045D4-3ED2-4711-9169-E385F2BFB5A0}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx", "src\Ryujinx\Ryujinx.csproj", "{074045D4-3ED2-4711-9169-E385F2BFB5A0}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.Tests", "Ryujinx.Tests\Ryujinx.Tests.csproj", "{EBB55AEA-C7D7-4DEB-BF96-FA1789E225E9}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.Tests", "src\Ryujinx.Tests\Ryujinx.Tests.csproj", "{EBB55AEA-C7D7-4DEB-BF96-FA1789E225E9}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.Tests.Unicorn", "Ryujinx.Tests.Unicorn\Ryujinx.Tests.Unicorn.csproj", "{D8F72938-78EF-4E8C-BAFE-531C9C3C8F15}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.Tests.Unicorn", "src\Ryujinx.Tests.Unicorn\Ryujinx.Tests.Unicorn.csproj", "{D8F72938-78EF-4E8C-BAFE-531C9C3C8F15}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.HLE", "Ryujinx.HLE\Ryujinx.HLE.csproj", "{CB92CFF9-1D62-4D4F-9E88-8130EF61E351}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.HLE", "src\Ryujinx.HLE\Ryujinx.HLE.csproj", "{CB92CFF9-1D62-4D4F-9E88-8130EF61E351}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.ShaderTools", "Ryujinx.ShaderTools\Ryujinx.ShaderTools.csproj", "{3AB294D0-2230-468F-9EB3-BDFCAEAE99A5}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.ShaderTools", "src\Ryujinx.ShaderTools\Ryujinx.ShaderTools.csproj", "{3AB294D0-2230-468F-9EB3-BDFCAEAE99A5}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.Common", "Ryujinx.Common\Ryujinx.Common.csproj", "{5FD4E4F6-8928-4B3C-BE07-28A675C17226}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.Common", "src\Ryujinx.Common\Ryujinx.Common.csproj", "{5FD4E4F6-8928-4B3C-BE07-28A675C17226}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ARMeilleure", "ARMeilleure\ARMeilleure.csproj", "{ABF09A5E-2D8B-4B6F-A51D-5CE414DDB15A}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ARMeilleure", "src\ARMeilleure\ARMeilleure.csproj", "{ABF09A5E-2D8B-4B6F-A51D-5CE414DDB15A}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.Graphics.Gpu", "Ryujinx.Graphics.Gpu\Ryujinx.Graphics.Gpu.csproj", "{ADA7EA87-0D63-4D97-9433-922A2124401F}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.Graphics.Gpu", "src\Ryujinx.Graphics.Gpu\Ryujinx.Graphics.Gpu.csproj", "{ADA7EA87-0D63-4D97-9433-922A2124401F}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.Graphics.GAL", "Ryujinx.Graphics.GAL\Ryujinx.Graphics.GAL.csproj", "{A602AE97-91A5-4608-8DF1-EBF4ED7A0B9E}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.Graphics.GAL", "src\Ryujinx.Graphics.GAL\Ryujinx.Graphics.GAL.csproj", "{A602AE97-91A5-4608-8DF1-EBF4ED7A0B9E}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.Graphics.OpenGL", "Ryujinx.Graphics.OpenGL\Ryujinx.Graphics.OpenGL.csproj", "{9558FB96-075D-4219-8FFF-401979DC0B69}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.Graphics.OpenGL", "src\Ryujinx.Graphics.OpenGL\Ryujinx.Graphics.OpenGL.csproj", "{9558FB96-075D-4219-8FFF-401979DC0B69}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.Graphics.Texture", "Ryujinx.Graphics.Texture\Ryujinx.Graphics.Texture.csproj", "{E1B1AD28-289D-47B7-A106-326972240207}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.Graphics.Texture", "src\Ryujinx.Graphics.Texture\Ryujinx.Graphics.Texture.csproj", "{E1B1AD28-289D-47B7-A106-326972240207}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.Graphics.Shader", "Ryujinx.Graphics.Shader\Ryujinx.Graphics.Shader.csproj", "{03B955CD-AD84-4B93-AAA7-BF17923BBAA5}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.Graphics.Shader", "src\Ryujinx.Graphics.Shader\Ryujinx.Graphics.Shader.csproj", "{03B955CD-AD84-4B93-AAA7-BF17923BBAA5}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.Graphics.Nvdec", "Ryujinx.Graphics.Nvdec\Ryujinx.Graphics.Nvdec.csproj", "{85A0FA56-DC01-4A42-8808-70DAC76BD66D}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.Graphics.Nvdec", "src\Ryujinx.Graphics.Nvdec\Ryujinx.Graphics.Nvdec.csproj", "{85A0FA56-DC01-4A42-8808-70DAC76BD66D}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.Audio", "Ryujinx.Audio\Ryujinx.Audio.csproj", "{806ACF6D-90B0-45D0-A1AC-5F220F3B3985}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.Audio", "src\Ryujinx.Audio\Ryujinx.Audio.csproj", "{806ACF6D-90B0-45D0-A1AC-5F220F3B3985}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{36F870C1-3E5F-485F-B426-F0645AF78751}"
ProjectSection(SolutionItems) = preProject
@@ -37,55 +37,55 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
Directory.Packages.props = Directory.Packages.props
EndProjectSection
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.Memory", "Ryujinx.Memory\Ryujinx.Memory.csproj", "{A5E6C691-9E22-4263-8F40-42F002CE66BE}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.Memory", "src\Ryujinx.Memory\Ryujinx.Memory.csproj", "{A5E6C691-9E22-4263-8F40-42F002CE66BE}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.Memory.Tests", "Ryujinx.Memory.Tests\Ryujinx.Memory.Tests.csproj", "{D1CC5322-7325-4F6B-9625-194B30BE1296}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.Memory.Tests", "src\Ryujinx.Memory.Tests\Ryujinx.Memory.Tests.csproj", "{D1CC5322-7325-4F6B-9625-194B30BE1296}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.Cpu", "Ryujinx.Cpu\Ryujinx.Cpu.csproj", "{3DF35E3D-D844-4399-A9A1-A9E923264C17}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.Cpu", "src\Ryujinx.Cpu\Ryujinx.Cpu.csproj", "{3DF35E3D-D844-4399-A9A1-A9E923264C17}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.Graphics.Device", "Ryujinx.Graphics.Device\Ryujinx.Graphics.Device.csproj", "{C3002C3C-7B09-4FE7-894A-372EDA22FC6E}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.Graphics.Device", "src\Ryujinx.Graphics.Device\Ryujinx.Graphics.Device.csproj", "{C3002C3C-7B09-4FE7-894A-372EDA22FC6E}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.Graphics.Host1x", "Ryujinx.Graphics.Host1x\Ryujinx.Graphics.Host1x.csproj", "{C35F1536-7DE5-4F9D-9604-B5B4E1561947}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.Graphics.Host1x", "src\Ryujinx.Graphics.Host1x\Ryujinx.Graphics.Host1x.csproj", "{C35F1536-7DE5-4F9D-9604-B5B4E1561947}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.Graphics.Nvdec.Vp9", "Ryujinx.Graphics.Nvdec.Vp9\Ryujinx.Graphics.Nvdec.Vp9.csproj", "{B9AECA11-E248-4886-A10B-81B631CAAF29}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.Graphics.Nvdec.Vp9", "src\Ryujinx.Graphics.Nvdec.Vp9\Ryujinx.Graphics.Nvdec.Vp9.csproj", "{B9AECA11-E248-4886-A10B-81B631CAAF29}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.Graphics.Vic", "Ryujinx.Graphics.Vic\Ryujinx.Graphics.Vic.csproj", "{81BB2C11-9408-4EA3-822E-42987AF54429}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.Graphics.Vic", "src\Ryujinx.Graphics.Vic\Ryujinx.Graphics.Vic.csproj", "{81BB2C11-9408-4EA3-822E-42987AF54429}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.Graphics.Video", "Ryujinx.Graphics.Video\Ryujinx.Graphics.Video.csproj", "{FD4A2C14-8E3D-4957-ABBE-3C38897B3E2D}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.Graphics.Video", "src\Ryujinx.Graphics.Video\Ryujinx.Graphics.Video.csproj", "{FD4A2C14-8E3D-4957-ABBE-3C38897B3E2D}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.Audio.Backends.OpenAL", "Ryujinx.Audio.Backends.OpenAL\Ryujinx.Audio.Backends.OpenAL.csproj", "{0BE11899-DF2D-4BDE-B9EE-2489E8D35E7D}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.Audio.Backends.OpenAL", "src\Ryujinx.Audio.Backends.OpenAL\Ryujinx.Audio.Backends.OpenAL.csproj", "{0BE11899-DF2D-4BDE-B9EE-2489E8D35E7D}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.Audio.Backends.SoundIo", "Ryujinx.Audio.Backends.SoundIo\Ryujinx.Audio.Backends.SoundIo.csproj", "{716364DE-B988-41A6-BAB4-327964266ECC}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.Audio.Backends.SoundIo", "src\Ryujinx.Audio.Backends.SoundIo\Ryujinx.Audio.Backends.SoundIo.csproj", "{716364DE-B988-41A6-BAB4-327964266ECC}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.Input", "Ryujinx.Input\Ryujinx.Input.csproj", "{C16F112F-38C3-40BC-9F5F-4791112063D6}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.Input", "src\Ryujinx.Input\Ryujinx.Input.csproj", "{C16F112F-38C3-40BC-9F5F-4791112063D6}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.Input.SDL2", "Ryujinx.Input.SDL2\Ryujinx.Input.SDL2.csproj", "{DFAB6F2D-B9BF-4AFF-B22B-7684A328EBA3}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.Input.SDL2", "src\Ryujinx.Input.SDL2\Ryujinx.Input.SDL2.csproj", "{DFAB6F2D-B9BF-4AFF-B22B-7684A328EBA3}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.SDL2.Common", "Ryujinx.SDL2.Common\Ryujinx.SDL2.Common.csproj", "{2D5D3A1D-5730-4648-B0AB-06C53CB910C0}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.SDL2.Common", "src\Ryujinx.SDL2.Common\Ryujinx.SDL2.Common.csproj", "{2D5D3A1D-5730-4648-B0AB-06C53CB910C0}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.Audio.Backends.SDL2", "Ryujinx.Audio.Backends.SDL2\Ryujinx.Audio.Backends.SDL2.csproj", "{D99A395A-8569-4DB0-B336-900647890052}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.Audio.Backends.SDL2", "src\Ryujinx.Audio.Backends.SDL2\Ryujinx.Audio.Backends.SDL2.csproj", "{D99A395A-8569-4DB0-B336-900647890052}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.Headless.SDL2", "Ryujinx.Headless.SDL2\Ryujinx.Headless.SDL2.csproj", "{390DC343-5CB4-4C79-A5DD-E3ED235E4C49}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.Headless.SDL2", "src\Ryujinx.Headless.SDL2\Ryujinx.Headless.SDL2.csproj", "{390DC343-5CB4-4C79-A5DD-E3ED235E4C49}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.Graphics.Nvdec.FFmpeg", "Ryujinx.Graphics.Nvdec.FFmpeg\Ryujinx.Graphics.Nvdec.FFmpeg.csproj", "{BEE1C184-C9A4-410B-8DFC-FB74D5C93AEB}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.Graphics.Nvdec.FFmpeg", "src\Ryujinx.Graphics.Nvdec.FFmpeg\Ryujinx.Graphics.Nvdec.FFmpeg.csproj", "{BEE1C184-C9A4-410B-8DFC-FB74D5C93AEB}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.Ava", "Ryujinx.Ava\Ryujinx.Ava.csproj", "{7C1B2721-13DA-4B62-B046-C626605ECCE6}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.Ava", "src\Ryujinx.Ava\Ryujinx.Ava.csproj", "{7C1B2721-13DA-4B62-B046-C626605ECCE6}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.Ui.Common", "Ryujinx.Ui.Common\Ryujinx.Ui.Common.csproj", "{BA161CA0-CD65-4E6E-B644-51C8D1E542DC}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.Ui.Common", "src\Ryujinx.Ui.Common\Ryujinx.Ui.Common.csproj", "{BA161CA0-CD65-4E6E-B644-51C8D1E542DC}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.Horizon.Generators", "Ryujinx.Horizon.Generators\Ryujinx.Horizon.Generators.csproj", "{6AE2A5E8-4C5A-48B9-997B-E1455C0355C6}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.Horizon.Generators", "src\Ryujinx.Horizon.Generators\Ryujinx.Horizon.Generators.csproj", "{6AE2A5E8-4C5A-48B9-997B-E1455C0355C6}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.Graphics.Vulkan", "Ryujinx.Graphics.Vulkan\Ryujinx.Graphics.Vulkan.csproj", "{D4D09B08-D580-4D69-B886-C35D2853F6C8}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.Graphics.Vulkan", "src\Ryujinx.Graphics.Vulkan\Ryujinx.Graphics.Vulkan.csproj", "{D4D09B08-D580-4D69-B886-C35D2853F6C8}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Spv.Generator", "Spv.Generator\Spv.Generator.csproj", "{2BCB3D7A-38C0-4FE7-8FDA-374C6AD56D0E}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Spv.Generator", "src\Spv.Generator\Spv.Generator.csproj", "{2BCB3D7A-38C0-4FE7-8FDA-374C6AD56D0E}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.Ui.LocaleGenerator", "Ryujinx.Ui.LocaleGenerator\Ryujinx.Ui.LocaleGenerator.csproj", "{77D01AD9-2C98-478E-AE1D-8F7100738FB4}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.Ui.LocaleGenerator", "src\Ryujinx.Ui.LocaleGenerator\Ryujinx.Ui.LocaleGenerator.csproj", "{77D01AD9-2C98-478E-AE1D-8F7100738FB4}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.Horizon.Common", "Ryujinx.Horizon.Common\Ryujinx.Horizon.Common.csproj", "{77F96ECE-4952-42DB-A528-DED25572A573}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.Horizon.Common", "src\Ryujinx.Horizon.Common\Ryujinx.Horizon.Common.csproj", "{77F96ECE-4952-42DB-A528-DED25572A573}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.Horizon", "Ryujinx.Horizon\Ryujinx.Horizon.csproj", "{AF34127A-3A92-43E5-8496-14960A50B1F1}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.Horizon", "src\Ryujinx.Horizon\Ryujinx.Horizon.csproj", "{AF34127A-3A92-43E5-8496-14960A50B1F1}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.Horizon.Kernel.Generators", "Ryujinx.Horizon.Kernel.Generators\Ryujinx.Horizon.Kernel.Generators.csproj", "{7F55A45D-4E1D-4A36-ADD3-87F29A285AA2}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.Horizon.Kernel.Generators", "src\Ryujinx.Horizon.Kernel.Generators\Ryujinx.Horizon.Kernel.Generators.csproj", "{7F55A45D-4E1D-4A36-ADD3-87F29A285AA2}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
@@ -256,4 +256,4 @@ Global
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {110169B3-3328-4730-8AB0-BA05BEF75C1A}
EndGlobalSection
-EndGlobal
+EndGlobal \ No newline at end of file
diff --git a/ARMeilleure/ARMeilleure.csproj b/src/ARMeilleure/ARMeilleure.csproj
index fa555115..fa555115 100644
--- a/ARMeilleure/ARMeilleure.csproj
+++ b/src/ARMeilleure/ARMeilleure.csproj
diff --git a/ARMeilleure/Allocators.cs b/src/ARMeilleure/Allocators.cs
index deabf9a2..deabf9a2 100644
--- a/ARMeilleure/Allocators.cs
+++ b/src/ARMeilleure/Allocators.cs
diff --git a/ARMeilleure/CodeGen/Arm64/Arm64Optimizer.cs b/src/ARMeilleure/CodeGen/Arm64/Arm64Optimizer.cs
index fdd4d024..fdd4d024 100644
--- a/ARMeilleure/CodeGen/Arm64/Arm64Optimizer.cs
+++ b/src/ARMeilleure/CodeGen/Arm64/Arm64Optimizer.cs
diff --git a/ARMeilleure/CodeGen/Arm64/ArmCondition.cs b/src/ARMeilleure/CodeGen/Arm64/ArmCondition.cs
index db27a810..db27a810 100644
--- a/ARMeilleure/CodeGen/Arm64/ArmCondition.cs
+++ b/src/ARMeilleure/CodeGen/Arm64/ArmCondition.cs
diff --git a/ARMeilleure/CodeGen/Arm64/ArmExtensionType.cs b/src/ARMeilleure/CodeGen/Arm64/ArmExtensionType.cs
index 062a6d0b..062a6d0b 100644
--- a/ARMeilleure/CodeGen/Arm64/ArmExtensionType.cs
+++ b/src/ARMeilleure/CodeGen/Arm64/ArmExtensionType.cs
diff --git a/ARMeilleure/CodeGen/Arm64/ArmShiftType.cs b/src/ARMeilleure/CodeGen/Arm64/ArmShiftType.cs
index d223a146..d223a146 100644
--- a/ARMeilleure/CodeGen/Arm64/ArmShiftType.cs
+++ b/src/ARMeilleure/CodeGen/Arm64/ArmShiftType.cs
diff --git a/ARMeilleure/CodeGen/Arm64/Assembler.cs b/src/ARMeilleure/CodeGen/Arm64/Assembler.cs
index 0ec0be7c..0ec0be7c 100644
--- a/ARMeilleure/CodeGen/Arm64/Assembler.cs
+++ b/src/ARMeilleure/CodeGen/Arm64/Assembler.cs
diff --git a/ARMeilleure/CodeGen/Arm64/CallingConvention.cs b/src/ARMeilleure/CodeGen/Arm64/CallingConvention.cs
index fda8d786..fda8d786 100644
--- a/ARMeilleure/CodeGen/Arm64/CallingConvention.cs
+++ b/src/ARMeilleure/CodeGen/Arm64/CallingConvention.cs
diff --git a/ARMeilleure/CodeGen/Arm64/CodeGenCommon.cs b/src/ARMeilleure/CodeGen/Arm64/CodeGenCommon.cs
index 8d1e597b..8d1e597b 100644
--- a/ARMeilleure/CodeGen/Arm64/CodeGenCommon.cs
+++ b/src/ARMeilleure/CodeGen/Arm64/CodeGenCommon.cs
diff --git a/ARMeilleure/CodeGen/Arm64/CodeGenContext.cs b/src/ARMeilleure/CodeGen/Arm64/CodeGenContext.cs
index 0dd5355f..0dd5355f 100644
--- a/ARMeilleure/CodeGen/Arm64/CodeGenContext.cs
+++ b/src/ARMeilleure/CodeGen/Arm64/CodeGenContext.cs
diff --git a/ARMeilleure/CodeGen/Arm64/CodeGenerator.cs b/src/ARMeilleure/CodeGen/Arm64/CodeGenerator.cs
index fc4fa976..fc4fa976 100644
--- a/ARMeilleure/CodeGen/Arm64/CodeGenerator.cs
+++ b/src/ARMeilleure/CodeGen/Arm64/CodeGenerator.cs
diff --git a/ARMeilleure/CodeGen/Arm64/CodeGeneratorIntrinsic.cs b/src/ARMeilleure/CodeGen/Arm64/CodeGeneratorIntrinsic.cs
index aaa00bb6..aaa00bb6 100644
--- a/ARMeilleure/CodeGen/Arm64/CodeGeneratorIntrinsic.cs
+++ b/src/ARMeilleure/CodeGen/Arm64/CodeGeneratorIntrinsic.cs
diff --git a/ARMeilleure/CodeGen/Arm64/HardwareCapabilities.cs b/src/ARMeilleure/CodeGen/Arm64/HardwareCapabilities.cs
index 99ff299e..99ff299e 100644
--- a/ARMeilleure/CodeGen/Arm64/HardwareCapabilities.cs
+++ b/src/ARMeilleure/CodeGen/Arm64/HardwareCapabilities.cs
diff --git a/ARMeilleure/CodeGen/Arm64/IntrinsicInfo.cs b/src/ARMeilleure/CodeGen/Arm64/IntrinsicInfo.cs
index 8695db90..8695db90 100644
--- a/ARMeilleure/CodeGen/Arm64/IntrinsicInfo.cs
+++ b/src/ARMeilleure/CodeGen/Arm64/IntrinsicInfo.cs
diff --git a/ARMeilleure/CodeGen/Arm64/IntrinsicTable.cs b/src/ARMeilleure/CodeGen/Arm64/IntrinsicTable.cs
index a309d56d..a309d56d 100644
--- a/ARMeilleure/CodeGen/Arm64/IntrinsicTable.cs
+++ b/src/ARMeilleure/CodeGen/Arm64/IntrinsicTable.cs
diff --git a/ARMeilleure/CodeGen/Arm64/IntrinsicType.cs b/src/ARMeilleure/CodeGen/Arm64/IntrinsicType.cs
index 800eca93..800eca93 100644
--- a/ARMeilleure/CodeGen/Arm64/IntrinsicType.cs
+++ b/src/ARMeilleure/CodeGen/Arm64/IntrinsicType.cs
diff --git a/ARMeilleure/CodeGen/Arm64/PreAllocator.cs b/src/ARMeilleure/CodeGen/Arm64/PreAllocator.cs
index 6ea9d239..6ea9d239 100644
--- a/ARMeilleure/CodeGen/Arm64/PreAllocator.cs
+++ b/src/ARMeilleure/CodeGen/Arm64/PreAllocator.cs
diff --git a/ARMeilleure/CodeGen/CompiledFunction.cs b/src/ARMeilleure/CodeGen/CompiledFunction.cs
index 0560bf2e..0560bf2e 100644
--- a/ARMeilleure/CodeGen/CompiledFunction.cs
+++ b/src/ARMeilleure/CodeGen/CompiledFunction.cs
diff --git a/ARMeilleure/CodeGen/Linking/RelocEntry.cs b/src/ARMeilleure/CodeGen/Linking/RelocEntry.cs
index a27bfded..a27bfded 100644
--- a/ARMeilleure/CodeGen/Linking/RelocEntry.cs
+++ b/src/ARMeilleure/CodeGen/Linking/RelocEntry.cs
diff --git a/ARMeilleure/CodeGen/Linking/RelocInfo.cs b/src/ARMeilleure/CodeGen/Linking/RelocInfo.cs
index caaf08e3..caaf08e3 100644
--- a/ARMeilleure/CodeGen/Linking/RelocInfo.cs
+++ b/src/ARMeilleure/CodeGen/Linking/RelocInfo.cs
diff --git a/ARMeilleure/CodeGen/Linking/Symbol.cs b/src/ARMeilleure/CodeGen/Linking/Symbol.cs
index 39e0c3eb..39e0c3eb 100644
--- a/ARMeilleure/CodeGen/Linking/Symbol.cs
+++ b/src/ARMeilleure/CodeGen/Linking/Symbol.cs
diff --git a/ARMeilleure/CodeGen/Linking/SymbolType.cs b/src/ARMeilleure/CodeGen/Linking/SymbolType.cs
index b05b6969..b05b6969 100644
--- a/ARMeilleure/CodeGen/Linking/SymbolType.cs
+++ b/src/ARMeilleure/CodeGen/Linking/SymbolType.cs
diff --git a/ARMeilleure/CodeGen/Optimizations/BlockPlacement.cs b/src/ARMeilleure/CodeGen/Optimizations/BlockPlacement.cs
index 9e243d37..9e243d37 100644
--- a/ARMeilleure/CodeGen/Optimizations/BlockPlacement.cs
+++ b/src/ARMeilleure/CodeGen/Optimizations/BlockPlacement.cs
diff --git a/ARMeilleure/CodeGen/Optimizations/ConstantFolding.cs b/src/ARMeilleure/CodeGen/Optimizations/ConstantFolding.cs
index c5a22a53..c5a22a53 100644
--- a/ARMeilleure/CodeGen/Optimizations/ConstantFolding.cs
+++ b/src/ARMeilleure/CodeGen/Optimizations/ConstantFolding.cs
diff --git a/ARMeilleure/CodeGen/Optimizations/Optimizer.cs b/src/ARMeilleure/CodeGen/Optimizations/Optimizer.cs
index a45bb455..a45bb455 100644
--- a/ARMeilleure/CodeGen/Optimizations/Optimizer.cs
+++ b/src/ARMeilleure/CodeGen/Optimizations/Optimizer.cs
diff --git a/ARMeilleure/CodeGen/Optimizations/Simplification.cs b/src/ARMeilleure/CodeGen/Optimizations/Simplification.cs
index a439d642..a439d642 100644
--- a/ARMeilleure/CodeGen/Optimizations/Simplification.cs
+++ b/src/ARMeilleure/CodeGen/Optimizations/Simplification.cs
diff --git a/ARMeilleure/CodeGen/Optimizations/TailMerge.cs b/src/ARMeilleure/CodeGen/Optimizations/TailMerge.cs
index e94df159..e94df159 100644
--- a/ARMeilleure/CodeGen/Optimizations/TailMerge.cs
+++ b/src/ARMeilleure/CodeGen/Optimizations/TailMerge.cs
diff --git a/ARMeilleure/CodeGen/PreAllocatorCommon.cs b/src/ARMeilleure/CodeGen/PreAllocatorCommon.cs
index 53f279fb..53f279fb 100644
--- a/ARMeilleure/CodeGen/PreAllocatorCommon.cs
+++ b/src/ARMeilleure/CodeGen/PreAllocatorCommon.cs
diff --git a/ARMeilleure/CodeGen/RegisterAllocators/AllocationResult.cs b/src/ARMeilleure/CodeGen/RegisterAllocators/AllocationResult.cs
index 43e5c7e2..43e5c7e2 100644
--- a/ARMeilleure/CodeGen/RegisterAllocators/AllocationResult.cs
+++ b/src/ARMeilleure/CodeGen/RegisterAllocators/AllocationResult.cs
diff --git a/ARMeilleure/CodeGen/RegisterAllocators/CopyResolver.cs b/src/ARMeilleure/CodeGen/RegisterAllocators/CopyResolver.cs
index 587b1a02..587b1a02 100644
--- a/ARMeilleure/CodeGen/RegisterAllocators/CopyResolver.cs
+++ b/src/ARMeilleure/CodeGen/RegisterAllocators/CopyResolver.cs
diff --git a/ARMeilleure/CodeGen/RegisterAllocators/HybridAllocator.cs b/src/ARMeilleure/CodeGen/RegisterAllocators/HybridAllocator.cs
index 25952c77..25952c77 100644
--- a/ARMeilleure/CodeGen/RegisterAllocators/HybridAllocator.cs
+++ b/src/ARMeilleure/CodeGen/RegisterAllocators/HybridAllocator.cs
diff --git a/ARMeilleure/CodeGen/RegisterAllocators/IRegisterAllocator.cs b/src/ARMeilleure/CodeGen/RegisterAllocators/IRegisterAllocator.cs
index 8f236c25..8f236c25 100644
--- a/ARMeilleure/CodeGen/RegisterAllocators/IRegisterAllocator.cs
+++ b/src/ARMeilleure/CodeGen/RegisterAllocators/IRegisterAllocator.cs
diff --git a/ARMeilleure/CodeGen/RegisterAllocators/LinearScanAllocator.cs b/src/ARMeilleure/CodeGen/RegisterAllocators/LinearScanAllocator.cs
index d80157af..d80157af 100644
--- a/ARMeilleure/CodeGen/RegisterAllocators/LinearScanAllocator.cs
+++ b/src/ARMeilleure/CodeGen/RegisterAllocators/LinearScanAllocator.cs
diff --git a/ARMeilleure/CodeGen/RegisterAllocators/LiveInterval.cs b/src/ARMeilleure/CodeGen/RegisterAllocators/LiveInterval.cs
index d739ad28..d739ad28 100644
--- a/ARMeilleure/CodeGen/RegisterAllocators/LiveInterval.cs
+++ b/src/ARMeilleure/CodeGen/RegisterAllocators/LiveInterval.cs
diff --git a/ARMeilleure/CodeGen/RegisterAllocators/LiveIntervalList.cs b/src/ARMeilleure/CodeGen/RegisterAllocators/LiveIntervalList.cs
index 06b979ea..06b979ea 100644
--- a/ARMeilleure/CodeGen/RegisterAllocators/LiveIntervalList.cs
+++ b/src/ARMeilleure/CodeGen/RegisterAllocators/LiveIntervalList.cs
diff --git a/ARMeilleure/CodeGen/RegisterAllocators/LiveRange.cs b/src/ARMeilleure/CodeGen/RegisterAllocators/LiveRange.cs
index e38b5190..e38b5190 100644
--- a/ARMeilleure/CodeGen/RegisterAllocators/LiveRange.cs
+++ b/src/ARMeilleure/CodeGen/RegisterAllocators/LiveRange.cs
diff --git a/ARMeilleure/CodeGen/RegisterAllocators/RegisterMasks.cs b/src/ARMeilleure/CodeGen/RegisterAllocators/RegisterMasks.cs
index bc948f95..bc948f95 100644
--- a/ARMeilleure/CodeGen/RegisterAllocators/RegisterMasks.cs
+++ b/src/ARMeilleure/CodeGen/RegisterAllocators/RegisterMasks.cs
diff --git a/ARMeilleure/CodeGen/RegisterAllocators/StackAllocator.cs b/src/ARMeilleure/CodeGen/RegisterAllocators/StackAllocator.cs
index 038312fe..038312fe 100644
--- a/ARMeilleure/CodeGen/RegisterAllocators/StackAllocator.cs
+++ b/src/ARMeilleure/CodeGen/RegisterAllocators/StackAllocator.cs
diff --git a/ARMeilleure/CodeGen/RegisterAllocators/UseList.cs b/src/ARMeilleure/CodeGen/RegisterAllocators/UseList.cs
index c89f0854..c89f0854 100644
--- a/ARMeilleure/CodeGen/RegisterAllocators/UseList.cs
+++ b/src/ARMeilleure/CodeGen/RegisterAllocators/UseList.cs
diff --git a/ARMeilleure/CodeGen/Unwinding/UnwindInfo.cs b/src/ARMeilleure/CodeGen/Unwinding/UnwindInfo.cs
index 3d0bc21d..3d0bc21d 100644
--- a/ARMeilleure/CodeGen/Unwinding/UnwindInfo.cs
+++ b/src/ARMeilleure/CodeGen/Unwinding/UnwindInfo.cs
diff --git a/ARMeilleure/CodeGen/Unwinding/UnwindPseudoOp.cs b/src/ARMeilleure/CodeGen/Unwinding/UnwindPseudoOp.cs
index 4a8288a2..4a8288a2 100644
--- a/ARMeilleure/CodeGen/Unwinding/UnwindPseudoOp.cs
+++ b/src/ARMeilleure/CodeGen/Unwinding/UnwindPseudoOp.cs
diff --git a/ARMeilleure/CodeGen/Unwinding/UnwindPushEntry.cs b/src/ARMeilleure/CodeGen/Unwinding/UnwindPushEntry.cs
index fd8ea402..fd8ea402 100644
--- a/ARMeilleure/CodeGen/Unwinding/UnwindPushEntry.cs
+++ b/src/ARMeilleure/CodeGen/Unwinding/UnwindPushEntry.cs
diff --git a/ARMeilleure/CodeGen/X86/Assembler.cs b/src/ARMeilleure/CodeGen/X86/Assembler.cs
index 67736a31..67736a31 100644
--- a/ARMeilleure/CodeGen/X86/Assembler.cs
+++ b/src/ARMeilleure/CodeGen/X86/Assembler.cs
diff --git a/ARMeilleure/CodeGen/X86/AssemblerTable.cs b/src/ARMeilleure/CodeGen/X86/AssemblerTable.cs
index e6a2ff07..e6a2ff07 100644
--- a/ARMeilleure/CodeGen/X86/AssemblerTable.cs
+++ b/src/ARMeilleure/CodeGen/X86/AssemblerTable.cs
diff --git a/ARMeilleure/CodeGen/X86/CallConvName.cs b/src/ARMeilleure/CodeGen/X86/CallConvName.cs
index be367628..be367628 100644
--- a/ARMeilleure/CodeGen/X86/CallConvName.cs
+++ b/src/ARMeilleure/CodeGen/X86/CallConvName.cs
diff --git a/ARMeilleure/CodeGen/X86/CallingConvention.cs b/src/ARMeilleure/CodeGen/X86/CallingConvention.cs
index 953fef5b..953fef5b 100644
--- a/ARMeilleure/CodeGen/X86/CallingConvention.cs
+++ b/src/ARMeilleure/CodeGen/X86/CallingConvention.cs
diff --git a/ARMeilleure/CodeGen/X86/CodeGenCommon.cs b/src/ARMeilleure/CodeGen/X86/CodeGenCommon.cs
index 237ecee4..237ecee4 100644
--- a/ARMeilleure/CodeGen/X86/CodeGenCommon.cs
+++ b/src/ARMeilleure/CodeGen/X86/CodeGenCommon.cs
diff --git a/ARMeilleure/CodeGen/X86/CodeGenContext.cs b/src/ARMeilleure/CodeGen/X86/CodeGenContext.cs
index 89948724..89948724 100644
--- a/ARMeilleure/CodeGen/X86/CodeGenContext.cs
+++ b/src/ARMeilleure/CodeGen/X86/CodeGenContext.cs
diff --git a/ARMeilleure/CodeGen/X86/CodeGenerator.cs b/src/ARMeilleure/CodeGen/X86/CodeGenerator.cs
index e7179b51..e7179b51 100644
--- a/ARMeilleure/CodeGen/X86/CodeGenerator.cs
+++ b/src/ARMeilleure/CodeGen/X86/CodeGenerator.cs
diff --git a/ARMeilleure/CodeGen/X86/HardwareCapabilities.cs b/src/ARMeilleure/CodeGen/X86/HardwareCapabilities.cs
index 07cdcd09..07cdcd09 100644
--- a/ARMeilleure/CodeGen/X86/HardwareCapabilities.cs
+++ b/src/ARMeilleure/CodeGen/X86/HardwareCapabilities.cs
diff --git a/ARMeilleure/CodeGen/X86/IntrinsicInfo.cs b/src/ARMeilleure/CodeGen/X86/IntrinsicInfo.cs
index 302bf4d3..302bf4d3 100644
--- a/ARMeilleure/CodeGen/X86/IntrinsicInfo.cs
+++ b/src/ARMeilleure/CodeGen/X86/IntrinsicInfo.cs
diff --git a/ARMeilleure/CodeGen/X86/IntrinsicTable.cs b/src/ARMeilleure/CodeGen/X86/IntrinsicTable.cs
index e3d94b7a..e3d94b7a 100644
--- a/ARMeilleure/CodeGen/X86/IntrinsicTable.cs
+++ b/src/ARMeilleure/CodeGen/X86/IntrinsicTable.cs
diff --git a/ARMeilleure/CodeGen/X86/IntrinsicType.cs b/src/ARMeilleure/CodeGen/X86/IntrinsicType.cs
index 5a9c14af..5a9c14af 100644
--- a/ARMeilleure/CodeGen/X86/IntrinsicType.cs
+++ b/src/ARMeilleure/CodeGen/X86/IntrinsicType.cs
diff --git a/ARMeilleure/CodeGen/X86/Mxcsr.cs b/src/ARMeilleure/CodeGen/X86/Mxcsr.cs
index c61eac31..c61eac31 100644
--- a/ARMeilleure/CodeGen/X86/Mxcsr.cs
+++ b/src/ARMeilleure/CodeGen/X86/Mxcsr.cs
diff --git a/ARMeilleure/CodeGen/X86/PreAllocator.cs b/src/ARMeilleure/CodeGen/X86/PreAllocator.cs
index cb742d67..cb742d67 100644
--- a/ARMeilleure/CodeGen/X86/PreAllocator.cs
+++ b/src/ARMeilleure/CodeGen/X86/PreAllocator.cs
diff --git a/ARMeilleure/CodeGen/X86/PreAllocatorSystemV.cs b/src/ARMeilleure/CodeGen/X86/PreAllocatorSystemV.cs
index a84d5050..a84d5050 100644
--- a/ARMeilleure/CodeGen/X86/PreAllocatorSystemV.cs
+++ b/src/ARMeilleure/CodeGen/X86/PreAllocatorSystemV.cs
diff --git a/ARMeilleure/CodeGen/X86/PreAllocatorWindows.cs b/src/ARMeilleure/CodeGen/X86/PreAllocatorWindows.cs
index 45319e6a..45319e6a 100644
--- a/ARMeilleure/CodeGen/X86/PreAllocatorWindows.cs
+++ b/src/ARMeilleure/CodeGen/X86/PreAllocatorWindows.cs
diff --git a/ARMeilleure/CodeGen/X86/X86Condition.cs b/src/ARMeilleure/CodeGen/X86/X86Condition.cs
index c82cbdec..c82cbdec 100644
--- a/ARMeilleure/CodeGen/X86/X86Condition.cs
+++ b/src/ARMeilleure/CodeGen/X86/X86Condition.cs
diff --git a/ARMeilleure/CodeGen/X86/X86Instruction.cs b/src/ARMeilleure/CodeGen/X86/X86Instruction.cs
index 9a85c516..9a85c516 100644
--- a/ARMeilleure/CodeGen/X86/X86Instruction.cs
+++ b/src/ARMeilleure/CodeGen/X86/X86Instruction.cs
diff --git a/ARMeilleure/CodeGen/X86/X86Optimizer.cs b/src/ARMeilleure/CodeGen/X86/X86Optimizer.cs
index 98a19b9a..98a19b9a 100644
--- a/ARMeilleure/CodeGen/X86/X86Optimizer.cs
+++ b/src/ARMeilleure/CodeGen/X86/X86Optimizer.cs
diff --git a/ARMeilleure/CodeGen/X86/X86Register.cs b/src/ARMeilleure/CodeGen/X86/X86Register.cs
index 01f63e31..01f63e31 100644
--- a/ARMeilleure/CodeGen/X86/X86Register.cs
+++ b/src/ARMeilleure/CodeGen/X86/X86Register.cs
diff --git a/ARMeilleure/Common/AddressTable.cs b/src/ARMeilleure/Common/AddressTable.cs
index 9db2d00d..9db2d00d 100644
--- a/ARMeilleure/Common/AddressTable.cs
+++ b/src/ARMeilleure/Common/AddressTable.cs
diff --git a/ARMeilleure/Common/Allocator.cs b/src/ARMeilleure/Common/Allocator.cs
index 247a8e8b..247a8e8b 100644
--- a/ARMeilleure/Common/Allocator.cs
+++ b/src/ARMeilleure/Common/Allocator.cs
diff --git a/ARMeilleure/Common/ArenaAllocator.cs b/src/ARMeilleure/Common/ArenaAllocator.cs
index bce6794a..bce6794a 100644
--- a/ARMeilleure/Common/ArenaAllocator.cs
+++ b/src/ARMeilleure/Common/ArenaAllocator.cs
diff --git a/ARMeilleure/Common/BitMap.cs b/src/ARMeilleure/Common/BitMap.cs
index 27ef031f..27ef031f 100644
--- a/ARMeilleure/Common/BitMap.cs
+++ b/src/ARMeilleure/Common/BitMap.cs
diff --git a/ARMeilleure/Common/BitUtils.cs b/src/ARMeilleure/Common/BitUtils.cs
index e7697ff3..e7697ff3 100644
--- a/ARMeilleure/Common/BitUtils.cs
+++ b/src/ARMeilleure/Common/BitUtils.cs
diff --git a/ARMeilleure/Common/Counter.cs b/src/ARMeilleure/Common/Counter.cs
index d7210d15..d7210d15 100644
--- a/ARMeilleure/Common/Counter.cs
+++ b/src/ARMeilleure/Common/Counter.cs
diff --git a/ARMeilleure/Common/EntryTable.cs b/src/ARMeilleure/Common/EntryTable.cs
index 6f205797..6f205797 100644
--- a/ARMeilleure/Common/EntryTable.cs
+++ b/src/ARMeilleure/Common/EntryTable.cs
diff --git a/ARMeilleure/Common/EnumUtils.cs b/src/ARMeilleure/Common/EnumUtils.cs
index 2a4aa645..2a4aa645 100644
--- a/ARMeilleure/Common/EnumUtils.cs
+++ b/src/ARMeilleure/Common/EnumUtils.cs
diff --git a/ARMeilleure/Common/NativeAllocator.cs b/src/ARMeilleure/Common/NativeAllocator.cs
index 71c04a9b..71c04a9b 100644
--- a/ARMeilleure/Common/NativeAllocator.cs
+++ b/src/ARMeilleure/Common/NativeAllocator.cs
diff --git a/ARMeilleure/Decoders/Block.cs b/src/ARMeilleure/Decoders/Block.cs
index f296d299..f296d299 100644
--- a/ARMeilleure/Decoders/Block.cs
+++ b/src/ARMeilleure/Decoders/Block.cs
diff --git a/ARMeilleure/Decoders/Condition.cs b/src/ARMeilleure/Decoders/Condition.cs
index 727f897d..727f897d 100644
--- a/ARMeilleure/Decoders/Condition.cs
+++ b/src/ARMeilleure/Decoders/Condition.cs
diff --git a/ARMeilleure/Decoders/DataOp.cs b/src/ARMeilleure/Decoders/DataOp.cs
index 464d0089..464d0089 100644
--- a/ARMeilleure/Decoders/DataOp.cs
+++ b/src/ARMeilleure/Decoders/DataOp.cs
diff --git a/ARMeilleure/Decoders/Decoder.cs b/src/ARMeilleure/Decoders/Decoder.cs
index 426465aa..426465aa 100644
--- a/ARMeilleure/Decoders/Decoder.cs
+++ b/src/ARMeilleure/Decoders/Decoder.cs
diff --git a/ARMeilleure/Decoders/DecoderHelper.cs b/src/ARMeilleure/Decoders/DecoderHelper.cs
index 5227e6a1..5227e6a1 100644
--- a/ARMeilleure/Decoders/DecoderHelper.cs
+++ b/src/ARMeilleure/Decoders/DecoderHelper.cs
diff --git a/ARMeilleure/Decoders/DecoderMode.cs b/src/ARMeilleure/Decoders/DecoderMode.cs
index 55362084..55362084 100644
--- a/ARMeilleure/Decoders/DecoderMode.cs
+++ b/src/ARMeilleure/Decoders/DecoderMode.cs
diff --git a/ARMeilleure/Decoders/IOpCode.cs b/src/ARMeilleure/Decoders/IOpCode.cs
index 37ba7a4c..37ba7a4c 100644
--- a/ARMeilleure/Decoders/IOpCode.cs
+++ b/src/ARMeilleure/Decoders/IOpCode.cs
diff --git a/ARMeilleure/Decoders/IOpCode32.cs b/src/ARMeilleure/Decoders/IOpCode32.cs
index 126c1069..126c1069 100644
--- a/ARMeilleure/Decoders/IOpCode32.cs
+++ b/src/ARMeilleure/Decoders/IOpCode32.cs
diff --git a/ARMeilleure/Decoders/IOpCode32Adr.cs b/src/ARMeilleure/Decoders/IOpCode32Adr.cs
index 40a4f526..40a4f526 100644
--- a/ARMeilleure/Decoders/IOpCode32Adr.cs
+++ b/src/ARMeilleure/Decoders/IOpCode32Adr.cs
diff --git a/ARMeilleure/Decoders/IOpCode32Alu.cs b/src/ARMeilleure/Decoders/IOpCode32Alu.cs
index 69fee164..69fee164 100644
--- a/ARMeilleure/Decoders/IOpCode32Alu.cs
+++ b/src/ARMeilleure/Decoders/IOpCode32Alu.cs
diff --git a/ARMeilleure/Decoders/IOpCode32AluBf.cs b/src/ARMeilleure/Decoders/IOpCode32AluBf.cs
index 206c2965..206c2965 100644
--- a/ARMeilleure/Decoders/IOpCode32AluBf.cs
+++ b/src/ARMeilleure/Decoders/IOpCode32AluBf.cs
diff --git a/ARMeilleure/Decoders/IOpCode32AluImm.cs b/src/ARMeilleure/Decoders/IOpCode32AluImm.cs
index 342fb8f6..342fb8f6 100644
--- a/ARMeilleure/Decoders/IOpCode32AluImm.cs
+++ b/src/ARMeilleure/Decoders/IOpCode32AluImm.cs
diff --git a/ARMeilleure/Decoders/IOpCode32AluImm16.cs b/src/ARMeilleure/Decoders/IOpCode32AluImm16.cs
index cd128f65..cd128f65 100644
--- a/ARMeilleure/Decoders/IOpCode32AluImm16.cs
+++ b/src/ARMeilleure/Decoders/IOpCode32AluImm16.cs
diff --git a/ARMeilleure/Decoders/IOpCode32AluMla.cs b/src/ARMeilleure/Decoders/IOpCode32AluMla.cs
index 79b16425..79b16425 100644
--- a/ARMeilleure/Decoders/IOpCode32AluMla.cs
+++ b/src/ARMeilleure/Decoders/IOpCode32AluMla.cs
diff --git a/ARMeilleure/Decoders/IOpCode32AluReg.cs b/src/ARMeilleure/Decoders/IOpCode32AluReg.cs
index 1612cc5c..1612cc5c 100644
--- a/ARMeilleure/Decoders/IOpCode32AluReg.cs
+++ b/src/ARMeilleure/Decoders/IOpCode32AluReg.cs
diff --git a/ARMeilleure/Decoders/IOpCode32AluRsImm.cs b/src/ARMeilleure/Decoders/IOpCode32AluRsImm.cs
index e899a659..e899a659 100644
--- a/ARMeilleure/Decoders/IOpCode32AluRsImm.cs
+++ b/src/ARMeilleure/Decoders/IOpCode32AluRsImm.cs
diff --git a/ARMeilleure/Decoders/IOpCode32AluRsReg.cs b/src/ARMeilleure/Decoders/IOpCode32AluRsReg.cs
index 879db059..879db059 100644
--- a/ARMeilleure/Decoders/IOpCode32AluRsReg.cs
+++ b/src/ARMeilleure/Decoders/IOpCode32AluRsReg.cs
diff --git a/ARMeilleure/Decoders/IOpCode32AluUmull.cs b/src/ARMeilleure/Decoders/IOpCode32AluUmull.cs
index 79d2bb9b..79d2bb9b 100644
--- a/ARMeilleure/Decoders/IOpCode32AluUmull.cs
+++ b/src/ARMeilleure/Decoders/IOpCode32AluUmull.cs
diff --git a/ARMeilleure/Decoders/IOpCode32AluUx.cs b/src/ARMeilleure/Decoders/IOpCode32AluUx.cs
index d03c7e21..d03c7e21 100644
--- a/ARMeilleure/Decoders/IOpCode32AluUx.cs
+++ b/src/ARMeilleure/Decoders/IOpCode32AluUx.cs
diff --git a/ARMeilleure/Decoders/IOpCode32BImm.cs b/src/ARMeilleure/Decoders/IOpCode32BImm.cs
index ec7db2c2..ec7db2c2 100644
--- a/ARMeilleure/Decoders/IOpCode32BImm.cs
+++ b/src/ARMeilleure/Decoders/IOpCode32BImm.cs
diff --git a/ARMeilleure/Decoders/IOpCode32BReg.cs b/src/ARMeilleure/Decoders/IOpCode32BReg.cs
index 097ab427..097ab427 100644
--- a/ARMeilleure/Decoders/IOpCode32BReg.cs
+++ b/src/ARMeilleure/Decoders/IOpCode32BReg.cs
diff --git a/ARMeilleure/Decoders/IOpCode32Exception.cs b/src/ARMeilleure/Decoders/IOpCode32Exception.cs
index 8f0fb81a..8f0fb81a 100644
--- a/ARMeilleure/Decoders/IOpCode32Exception.cs
+++ b/src/ARMeilleure/Decoders/IOpCode32Exception.cs
diff --git a/ARMeilleure/Decoders/IOpCode32HasSetFlags.cs b/src/ARMeilleure/Decoders/IOpCode32HasSetFlags.cs
index 71ca6d19..71ca6d19 100644
--- a/ARMeilleure/Decoders/IOpCode32HasSetFlags.cs
+++ b/src/ARMeilleure/Decoders/IOpCode32HasSetFlags.cs
diff --git a/ARMeilleure/Decoders/IOpCode32Mem.cs b/src/ARMeilleure/Decoders/IOpCode32Mem.cs
index 6664ddff..6664ddff 100644
--- a/ARMeilleure/Decoders/IOpCode32Mem.cs
+++ b/src/ARMeilleure/Decoders/IOpCode32Mem.cs
diff --git a/ARMeilleure/Decoders/IOpCode32MemEx.cs b/src/ARMeilleure/Decoders/IOpCode32MemEx.cs
index aca7200a..aca7200a 100644
--- a/ARMeilleure/Decoders/IOpCode32MemEx.cs
+++ b/src/ARMeilleure/Decoders/IOpCode32MemEx.cs
diff --git a/ARMeilleure/Decoders/IOpCode32MemMult.cs b/src/ARMeilleure/Decoders/IOpCode32MemMult.cs
index 4b891bc1..4b891bc1 100644
--- a/ARMeilleure/Decoders/IOpCode32MemMult.cs
+++ b/src/ARMeilleure/Decoders/IOpCode32MemMult.cs
diff --git a/ARMeilleure/Decoders/IOpCode32MemReg.cs b/src/ARMeilleure/Decoders/IOpCode32MemReg.cs
index 7fe1b022..7fe1b022 100644
--- a/ARMeilleure/Decoders/IOpCode32MemReg.cs
+++ b/src/ARMeilleure/Decoders/IOpCode32MemReg.cs
diff --git a/ARMeilleure/Decoders/IOpCode32MemRsImm.cs b/src/ARMeilleure/Decoders/IOpCode32MemRsImm.cs
index 65b7ee0b..65b7ee0b 100644
--- a/ARMeilleure/Decoders/IOpCode32MemRsImm.cs
+++ b/src/ARMeilleure/Decoders/IOpCode32MemRsImm.cs
diff --git a/ARMeilleure/Decoders/IOpCode32Simd.cs b/src/ARMeilleure/Decoders/IOpCode32Simd.cs
index 687254d9..687254d9 100644
--- a/ARMeilleure/Decoders/IOpCode32Simd.cs
+++ b/src/ARMeilleure/Decoders/IOpCode32Simd.cs
diff --git a/ARMeilleure/Decoders/IOpCode32SimdImm.cs b/src/ARMeilleure/Decoders/IOpCode32SimdImm.cs
index a0cb669c..a0cb669c 100644
--- a/ARMeilleure/Decoders/IOpCode32SimdImm.cs
+++ b/src/ARMeilleure/Decoders/IOpCode32SimdImm.cs
diff --git a/ARMeilleure/Decoders/IOpCodeAlu.cs b/src/ARMeilleure/Decoders/IOpCodeAlu.cs
index b8c28513..b8c28513 100644
--- a/ARMeilleure/Decoders/IOpCodeAlu.cs
+++ b/src/ARMeilleure/Decoders/IOpCodeAlu.cs
diff --git a/ARMeilleure/Decoders/IOpCodeAluImm.cs b/src/ARMeilleure/Decoders/IOpCodeAluImm.cs
index 02f4c997..02f4c997 100644
--- a/ARMeilleure/Decoders/IOpCodeAluImm.cs
+++ b/src/ARMeilleure/Decoders/IOpCodeAluImm.cs
diff --git a/ARMeilleure/Decoders/IOpCodeAluRs.cs b/src/ARMeilleure/Decoders/IOpCodeAluRs.cs
index 22540b11..22540b11 100644
--- a/ARMeilleure/Decoders/IOpCodeAluRs.cs
+++ b/src/ARMeilleure/Decoders/IOpCodeAluRs.cs
diff --git a/ARMeilleure/Decoders/IOpCodeAluRx.cs b/src/ARMeilleure/Decoders/IOpCodeAluRx.cs
index 9d16be78..9d16be78 100644
--- a/ARMeilleure/Decoders/IOpCodeAluRx.cs
+++ b/src/ARMeilleure/Decoders/IOpCodeAluRx.cs
diff --git a/ARMeilleure/Decoders/IOpCodeBImm.cs b/src/ARMeilleure/Decoders/IOpCodeBImm.cs
index 958bff28..958bff28 100644
--- a/ARMeilleure/Decoders/IOpCodeBImm.cs
+++ b/src/ARMeilleure/Decoders/IOpCodeBImm.cs
diff --git a/ARMeilleure/Decoders/IOpCodeCond.cs b/src/ARMeilleure/Decoders/IOpCodeCond.cs
index 9808f7c0..9808f7c0 100644
--- a/ARMeilleure/Decoders/IOpCodeCond.cs
+++ b/src/ARMeilleure/Decoders/IOpCodeCond.cs
diff --git a/ARMeilleure/Decoders/IOpCodeLit.cs b/src/ARMeilleure/Decoders/IOpCodeLit.cs
index 74084a45..74084a45 100644
--- a/ARMeilleure/Decoders/IOpCodeLit.cs
+++ b/src/ARMeilleure/Decoders/IOpCodeLit.cs
diff --git a/ARMeilleure/Decoders/IOpCodeSimd.cs b/src/ARMeilleure/Decoders/IOpCodeSimd.cs
index 056ef045..056ef045 100644
--- a/ARMeilleure/Decoders/IOpCodeSimd.cs
+++ b/src/ARMeilleure/Decoders/IOpCodeSimd.cs
diff --git a/ARMeilleure/Decoders/InstDescriptor.cs b/src/ARMeilleure/Decoders/InstDescriptor.cs
index 577ff394..577ff394 100644
--- a/ARMeilleure/Decoders/InstDescriptor.cs
+++ b/src/ARMeilleure/Decoders/InstDescriptor.cs
diff --git a/ARMeilleure/Decoders/InstEmitter.cs b/src/ARMeilleure/Decoders/InstEmitter.cs
index a8b52656..a8b52656 100644
--- a/ARMeilleure/Decoders/InstEmitter.cs
+++ b/src/ARMeilleure/Decoders/InstEmitter.cs
diff --git a/ARMeilleure/Decoders/IntType.cs b/src/ARMeilleure/Decoders/IntType.cs
index 244e9680..244e9680 100644
--- a/ARMeilleure/Decoders/IntType.cs
+++ b/src/ARMeilleure/Decoders/IntType.cs
diff --git a/ARMeilleure/Decoders/OpCode.cs b/src/ARMeilleure/Decoders/OpCode.cs
index f9aed792..f9aed792 100644
--- a/ARMeilleure/Decoders/OpCode.cs
+++ b/src/ARMeilleure/Decoders/OpCode.cs
diff --git a/ARMeilleure/Decoders/OpCode32.cs b/src/ARMeilleure/Decoders/OpCode32.cs
index c2f14145..c2f14145 100644
--- a/ARMeilleure/Decoders/OpCode32.cs
+++ b/src/ARMeilleure/Decoders/OpCode32.cs
diff --git a/ARMeilleure/Decoders/OpCode32Alu.cs b/src/ARMeilleure/Decoders/OpCode32Alu.cs
index 1625aee0..1625aee0 100644
--- a/ARMeilleure/Decoders/OpCode32Alu.cs
+++ b/src/ARMeilleure/Decoders/OpCode32Alu.cs
diff --git a/ARMeilleure/Decoders/OpCode32AluBf.cs b/src/ARMeilleure/Decoders/OpCode32AluBf.cs
index 0cee34e6..0cee34e6 100644
--- a/ARMeilleure/Decoders/OpCode32AluBf.cs
+++ b/src/ARMeilleure/Decoders/OpCode32AluBf.cs
diff --git a/ARMeilleure/Decoders/OpCode32AluImm.cs b/src/ARMeilleure/Decoders/OpCode32AluImm.cs
index b5435aaf..b5435aaf 100644
--- a/ARMeilleure/Decoders/OpCode32AluImm.cs
+++ b/src/ARMeilleure/Decoders/OpCode32AluImm.cs
diff --git a/ARMeilleure/Decoders/OpCode32AluImm16.cs b/src/ARMeilleure/Decoders/OpCode32AluImm16.cs
index e24edeb4..e24edeb4 100644
--- a/ARMeilleure/Decoders/OpCode32AluImm16.cs
+++ b/src/ARMeilleure/Decoders/OpCode32AluImm16.cs
diff --git a/ARMeilleure/Decoders/OpCode32AluMla.cs b/src/ARMeilleure/Decoders/OpCode32AluMla.cs
index 2cd2b9dc..2cd2b9dc 100644
--- a/ARMeilleure/Decoders/OpCode32AluMla.cs
+++ b/src/ARMeilleure/Decoders/OpCode32AluMla.cs
diff --git a/ARMeilleure/Decoders/OpCode32AluReg.cs b/src/ARMeilleure/Decoders/OpCode32AluReg.cs
index 493a977f..493a977f 100644
--- a/ARMeilleure/Decoders/OpCode32AluReg.cs
+++ b/src/ARMeilleure/Decoders/OpCode32AluReg.cs
diff --git a/ARMeilleure/Decoders/OpCode32AluRsImm.cs b/src/ARMeilleure/Decoders/OpCode32AluRsImm.cs
index c2dee6c9..c2dee6c9 100644
--- a/ARMeilleure/Decoders/OpCode32AluRsImm.cs
+++ b/src/ARMeilleure/Decoders/OpCode32AluRsImm.cs
diff --git a/ARMeilleure/Decoders/OpCode32AluRsReg.cs b/src/ARMeilleure/Decoders/OpCode32AluRsReg.cs
index 04740d08..04740d08 100644
--- a/ARMeilleure/Decoders/OpCode32AluRsReg.cs
+++ b/src/ARMeilleure/Decoders/OpCode32AluRsReg.cs
diff --git a/ARMeilleure/Decoders/OpCode32AluUmull.cs b/src/ARMeilleure/Decoders/OpCode32AluUmull.cs
index bf80df3f..bf80df3f 100644
--- a/ARMeilleure/Decoders/OpCode32AluUmull.cs
+++ b/src/ARMeilleure/Decoders/OpCode32AluUmull.cs
diff --git a/ARMeilleure/Decoders/OpCode32AluUx.cs b/src/ARMeilleure/Decoders/OpCode32AluUx.cs
index 57068675..57068675 100644
--- a/ARMeilleure/Decoders/OpCode32AluUx.cs
+++ b/src/ARMeilleure/Decoders/OpCode32AluUx.cs
diff --git a/ARMeilleure/Decoders/OpCode32BImm.cs b/src/ARMeilleure/Decoders/OpCode32BImm.cs
index f2959b33..f2959b33 100644
--- a/ARMeilleure/Decoders/OpCode32BImm.cs
+++ b/src/ARMeilleure/Decoders/OpCode32BImm.cs
diff --git a/ARMeilleure/Decoders/OpCode32BReg.cs b/src/ARMeilleure/Decoders/OpCode32BReg.cs
index d4f5f760..d4f5f760 100644
--- a/ARMeilleure/Decoders/OpCode32BReg.cs
+++ b/src/ARMeilleure/Decoders/OpCode32BReg.cs
diff --git a/ARMeilleure/Decoders/OpCode32Exception.cs b/src/ARMeilleure/Decoders/OpCode32Exception.cs
index b4edcc10..b4edcc10 100644
--- a/ARMeilleure/Decoders/OpCode32Exception.cs
+++ b/src/ARMeilleure/Decoders/OpCode32Exception.cs
diff --git a/ARMeilleure/Decoders/OpCode32Mem.cs b/src/ARMeilleure/Decoders/OpCode32Mem.cs
index ceb1e49f..ceb1e49f 100644
--- a/ARMeilleure/Decoders/OpCode32Mem.cs
+++ b/src/ARMeilleure/Decoders/OpCode32Mem.cs
diff --git a/ARMeilleure/Decoders/OpCode32MemImm.cs b/src/ARMeilleure/Decoders/OpCode32MemImm.cs
index 3af4b6f7..3af4b6f7 100644
--- a/ARMeilleure/Decoders/OpCode32MemImm.cs
+++ b/src/ARMeilleure/Decoders/OpCode32MemImm.cs
diff --git a/ARMeilleure/Decoders/OpCode32MemImm8.cs b/src/ARMeilleure/Decoders/OpCode32MemImm8.cs
index 1b8a57de..1b8a57de 100644
--- a/ARMeilleure/Decoders/OpCode32MemImm8.cs
+++ b/src/ARMeilleure/Decoders/OpCode32MemImm8.cs
diff --git a/ARMeilleure/Decoders/OpCode32MemLdEx.cs b/src/ARMeilleure/Decoders/OpCode32MemLdEx.cs
index 520113f4..520113f4 100644
--- a/ARMeilleure/Decoders/OpCode32MemLdEx.cs
+++ b/src/ARMeilleure/Decoders/OpCode32MemLdEx.cs
diff --git a/ARMeilleure/Decoders/OpCode32MemMult.cs b/src/ARMeilleure/Decoders/OpCode32MemMult.cs
index 522b96bb..522b96bb 100644
--- a/ARMeilleure/Decoders/OpCode32MemMult.cs
+++ b/src/ARMeilleure/Decoders/OpCode32MemMult.cs
diff --git a/ARMeilleure/Decoders/OpCode32MemReg.cs b/src/ARMeilleure/Decoders/OpCode32MemReg.cs
index 786f37fa..786f37fa 100644
--- a/ARMeilleure/Decoders/OpCode32MemReg.cs
+++ b/src/ARMeilleure/Decoders/OpCode32MemReg.cs
diff --git a/ARMeilleure/Decoders/OpCode32MemRsImm.cs b/src/ARMeilleure/Decoders/OpCode32MemRsImm.cs
index e1284cf7..e1284cf7 100644
--- a/ARMeilleure/Decoders/OpCode32MemRsImm.cs
+++ b/src/ARMeilleure/Decoders/OpCode32MemRsImm.cs
diff --git a/ARMeilleure/Decoders/OpCode32MemStEx.cs b/src/ARMeilleure/Decoders/OpCode32MemStEx.cs
index dcf93b22..dcf93b22 100644
--- a/ARMeilleure/Decoders/OpCode32MemStEx.cs
+++ b/src/ARMeilleure/Decoders/OpCode32MemStEx.cs
diff --git a/ARMeilleure/Decoders/OpCode32Mrs.cs b/src/ARMeilleure/Decoders/OpCode32Mrs.cs
index c34a8b99..c34a8b99 100644
--- a/ARMeilleure/Decoders/OpCode32Mrs.cs
+++ b/src/ARMeilleure/Decoders/OpCode32Mrs.cs
diff --git a/ARMeilleure/Decoders/OpCode32MsrReg.cs b/src/ARMeilleure/Decoders/OpCode32MsrReg.cs
index d897ffd8..d897ffd8 100644
--- a/ARMeilleure/Decoders/OpCode32MsrReg.cs
+++ b/src/ARMeilleure/Decoders/OpCode32MsrReg.cs
diff --git a/ARMeilleure/Decoders/OpCode32Sat.cs b/src/ARMeilleure/Decoders/OpCode32Sat.cs
index 621def27..621def27 100644
--- a/ARMeilleure/Decoders/OpCode32Sat.cs
+++ b/src/ARMeilleure/Decoders/OpCode32Sat.cs
diff --git a/ARMeilleure/Decoders/OpCode32Sat16.cs b/src/ARMeilleure/Decoders/OpCode32Sat16.cs
index 51061b07..51061b07 100644
--- a/ARMeilleure/Decoders/OpCode32Sat16.cs
+++ b/src/ARMeilleure/Decoders/OpCode32Sat16.cs
diff --git a/ARMeilleure/Decoders/OpCode32Simd.cs b/src/ARMeilleure/Decoders/OpCode32Simd.cs
index 636aa0a8..636aa0a8 100644
--- a/ARMeilleure/Decoders/OpCode32Simd.cs
+++ b/src/ARMeilleure/Decoders/OpCode32Simd.cs
diff --git a/ARMeilleure/Decoders/OpCode32SimdBase.cs b/src/ARMeilleure/Decoders/OpCode32SimdBase.cs
index 4382fc2a..4382fc2a 100644
--- a/ARMeilleure/Decoders/OpCode32SimdBase.cs
+++ b/src/ARMeilleure/Decoders/OpCode32SimdBase.cs
diff --git a/ARMeilleure/Decoders/OpCode32SimdBinary.cs b/src/ARMeilleure/Decoders/OpCode32SimdBinary.cs
index ba190de9..ba190de9 100644
--- a/ARMeilleure/Decoders/OpCode32SimdBinary.cs
+++ b/src/ARMeilleure/Decoders/OpCode32SimdBinary.cs
diff --git a/ARMeilleure/Decoders/OpCode32SimdCmpZ.cs b/src/ARMeilleure/Decoders/OpCode32SimdCmpZ.cs
index 445e6781..445e6781 100644
--- a/ARMeilleure/Decoders/OpCode32SimdCmpZ.cs
+++ b/src/ARMeilleure/Decoders/OpCode32SimdCmpZ.cs
diff --git a/ARMeilleure/Decoders/OpCode32SimdCvtFI.cs b/src/ARMeilleure/Decoders/OpCode32SimdCvtFI.cs
index 41cf4d88..41cf4d88 100644
--- a/ARMeilleure/Decoders/OpCode32SimdCvtFI.cs
+++ b/src/ARMeilleure/Decoders/OpCode32SimdCvtFI.cs
diff --git a/ARMeilleure/Decoders/OpCode32SimdCvtTB.cs b/src/ARMeilleure/Decoders/OpCode32SimdCvtTB.cs
index a95b32ab..a95b32ab 100644
--- a/ARMeilleure/Decoders/OpCode32SimdCvtTB.cs
+++ b/src/ARMeilleure/Decoders/OpCode32SimdCvtTB.cs
diff --git a/ARMeilleure/Decoders/OpCode32SimdDupElem.cs b/src/ARMeilleure/Decoders/OpCode32SimdDupElem.cs
index c455b5b4..c455b5b4 100644
--- a/ARMeilleure/Decoders/OpCode32SimdDupElem.cs
+++ b/src/ARMeilleure/Decoders/OpCode32SimdDupElem.cs
diff --git a/ARMeilleure/Decoders/OpCode32SimdDupGP.cs b/src/ARMeilleure/Decoders/OpCode32SimdDupGP.cs
index 31546ea3..31546ea3 100644
--- a/ARMeilleure/Decoders/OpCode32SimdDupGP.cs
+++ b/src/ARMeilleure/Decoders/OpCode32SimdDupGP.cs
diff --git a/ARMeilleure/Decoders/OpCode32SimdExt.cs b/src/ARMeilleure/Decoders/OpCode32SimdExt.cs
index 6dbb5b66..6dbb5b66 100644
--- a/ARMeilleure/Decoders/OpCode32SimdExt.cs
+++ b/src/ARMeilleure/Decoders/OpCode32SimdExt.cs
diff --git a/ARMeilleure/Decoders/OpCode32SimdImm.cs b/src/ARMeilleure/Decoders/OpCode32SimdImm.cs
index bf0ca527..bf0ca527 100644
--- a/ARMeilleure/Decoders/OpCode32SimdImm.cs
+++ b/src/ARMeilleure/Decoders/OpCode32SimdImm.cs
diff --git a/ARMeilleure/Decoders/OpCode32SimdImm44.cs b/src/ARMeilleure/Decoders/OpCode32SimdImm44.cs
index fa00a935..fa00a935 100644
--- a/ARMeilleure/Decoders/OpCode32SimdImm44.cs
+++ b/src/ARMeilleure/Decoders/OpCode32SimdImm44.cs
diff --git a/ARMeilleure/Decoders/OpCode32SimdLong.cs b/src/ARMeilleure/Decoders/OpCode32SimdLong.cs
index 8d64d673..8d64d673 100644
--- a/ARMeilleure/Decoders/OpCode32SimdLong.cs
+++ b/src/ARMeilleure/Decoders/OpCode32SimdLong.cs
diff --git a/ARMeilleure/Decoders/OpCode32SimdMemImm.cs b/src/ARMeilleure/Decoders/OpCode32SimdMemImm.cs
index c933a5ad..c933a5ad 100644
--- a/ARMeilleure/Decoders/OpCode32SimdMemImm.cs
+++ b/src/ARMeilleure/Decoders/OpCode32SimdMemImm.cs
diff --git a/ARMeilleure/Decoders/OpCode32SimdMemMult.cs b/src/ARMeilleure/Decoders/OpCode32SimdMemMult.cs
index a16a03d3..a16a03d3 100644
--- a/ARMeilleure/Decoders/OpCode32SimdMemMult.cs
+++ b/src/ARMeilleure/Decoders/OpCode32SimdMemMult.cs
diff --git a/ARMeilleure/Decoders/OpCode32SimdMemPair.cs b/src/ARMeilleure/Decoders/OpCode32SimdMemPair.cs
index da88eed2..da88eed2 100644
--- a/ARMeilleure/Decoders/OpCode32SimdMemPair.cs
+++ b/src/ARMeilleure/Decoders/OpCode32SimdMemPair.cs
diff --git a/ARMeilleure/Decoders/OpCode32SimdMemSingle.cs b/src/ARMeilleure/Decoders/OpCode32SimdMemSingle.cs
index 35dd41c2..35dd41c2 100644
--- a/ARMeilleure/Decoders/OpCode32SimdMemSingle.cs
+++ b/src/ARMeilleure/Decoders/OpCode32SimdMemSingle.cs
diff --git a/ARMeilleure/Decoders/OpCode32SimdMovGp.cs b/src/ARMeilleure/Decoders/OpCode32SimdMovGp.cs
index 5afd3488..5afd3488 100644
--- a/ARMeilleure/Decoders/OpCode32SimdMovGp.cs
+++ b/src/ARMeilleure/Decoders/OpCode32SimdMovGp.cs
diff --git a/ARMeilleure/Decoders/OpCode32SimdMovGpDouble.cs b/src/ARMeilleure/Decoders/OpCode32SimdMovGpDouble.cs
index 2d693119..2d693119 100644
--- a/ARMeilleure/Decoders/OpCode32SimdMovGpDouble.cs
+++ b/src/ARMeilleure/Decoders/OpCode32SimdMovGpDouble.cs
diff --git a/ARMeilleure/Decoders/OpCode32SimdMovGpElem.cs b/src/ARMeilleure/Decoders/OpCode32SimdMovGpElem.cs
index 7816665f..7816665f 100644
--- a/ARMeilleure/Decoders/OpCode32SimdMovGpElem.cs
+++ b/src/ARMeilleure/Decoders/OpCode32SimdMovGpElem.cs
diff --git a/ARMeilleure/Decoders/OpCode32SimdMovn.cs b/src/ARMeilleure/Decoders/OpCode32SimdMovn.cs
index 576e12cc..576e12cc 100644
--- a/ARMeilleure/Decoders/OpCode32SimdMovn.cs
+++ b/src/ARMeilleure/Decoders/OpCode32SimdMovn.cs
diff --git a/ARMeilleure/Decoders/OpCode32SimdReg.cs b/src/ARMeilleure/Decoders/OpCode32SimdReg.cs
index 1c46b0e0..1c46b0e0 100644
--- a/ARMeilleure/Decoders/OpCode32SimdReg.cs
+++ b/src/ARMeilleure/Decoders/OpCode32SimdReg.cs
diff --git a/ARMeilleure/Decoders/OpCode32SimdRegElem.cs b/src/ARMeilleure/Decoders/OpCode32SimdRegElem.cs
index 173c5265..173c5265 100644
--- a/ARMeilleure/Decoders/OpCode32SimdRegElem.cs
+++ b/src/ARMeilleure/Decoders/OpCode32SimdRegElem.cs
diff --git a/ARMeilleure/Decoders/OpCode32SimdRegElemLong.cs b/src/ARMeilleure/Decoders/OpCode32SimdRegElemLong.cs
index b87ac413..b87ac413 100644
--- a/ARMeilleure/Decoders/OpCode32SimdRegElemLong.cs
+++ b/src/ARMeilleure/Decoders/OpCode32SimdRegElemLong.cs
diff --git a/ARMeilleure/Decoders/OpCode32SimdRegLong.cs b/src/ARMeilleure/Decoders/OpCode32SimdRegLong.cs
index 11069383..11069383 100644
--- a/ARMeilleure/Decoders/OpCode32SimdRegLong.cs
+++ b/src/ARMeilleure/Decoders/OpCode32SimdRegLong.cs
diff --git a/ARMeilleure/Decoders/OpCode32SimdRegS.cs b/src/ARMeilleure/Decoders/OpCode32SimdRegS.cs
index 8168e83f..8168e83f 100644
--- a/ARMeilleure/Decoders/OpCode32SimdRegS.cs
+++ b/src/ARMeilleure/Decoders/OpCode32SimdRegS.cs
diff --git a/ARMeilleure/Decoders/OpCode32SimdRegWide.cs b/src/ARMeilleure/Decoders/OpCode32SimdRegWide.cs
index fd2b3bf1..fd2b3bf1 100644
--- a/ARMeilleure/Decoders/OpCode32SimdRegWide.cs
+++ b/src/ARMeilleure/Decoders/OpCode32SimdRegWide.cs
diff --git a/ARMeilleure/Decoders/OpCode32SimdRev.cs b/src/ARMeilleure/Decoders/OpCode32SimdRev.cs
index cb64765f..cb64765f 100644
--- a/ARMeilleure/Decoders/OpCode32SimdRev.cs
+++ b/src/ARMeilleure/Decoders/OpCode32SimdRev.cs
diff --git a/ARMeilleure/Decoders/OpCode32SimdS.cs b/src/ARMeilleure/Decoders/OpCode32SimdS.cs
index 63c03c01..63c03c01 100644
--- a/ARMeilleure/Decoders/OpCode32SimdS.cs
+++ b/src/ARMeilleure/Decoders/OpCode32SimdS.cs
diff --git a/ARMeilleure/Decoders/OpCode32SimdSel.cs b/src/ARMeilleure/Decoders/OpCode32SimdSel.cs
index 37fd714a..37fd714a 100644
--- a/ARMeilleure/Decoders/OpCode32SimdSel.cs
+++ b/src/ARMeilleure/Decoders/OpCode32SimdSel.cs
diff --git a/ARMeilleure/Decoders/OpCode32SimdShImm.cs b/src/ARMeilleure/Decoders/OpCode32SimdShImm.cs
index 55ddc395..55ddc395 100644
--- a/ARMeilleure/Decoders/OpCode32SimdShImm.cs
+++ b/src/ARMeilleure/Decoders/OpCode32SimdShImm.cs
diff --git a/ARMeilleure/Decoders/OpCode32SimdShImmLong.cs b/src/ARMeilleure/Decoders/OpCode32SimdShImmLong.cs
index 6b1b0ad1..6b1b0ad1 100644
--- a/ARMeilleure/Decoders/OpCode32SimdShImmLong.cs
+++ b/src/ARMeilleure/Decoders/OpCode32SimdShImmLong.cs
diff --git a/ARMeilleure/Decoders/OpCode32SimdShImmNarrow.cs b/src/ARMeilleure/Decoders/OpCode32SimdShImmNarrow.cs
index 5351e65f..5351e65f 100644
--- a/ARMeilleure/Decoders/OpCode32SimdShImmNarrow.cs
+++ b/src/ARMeilleure/Decoders/OpCode32SimdShImmNarrow.cs
diff --git a/ARMeilleure/Decoders/OpCode32SimdSpecial.cs b/src/ARMeilleure/Decoders/OpCode32SimdSpecial.cs
index 61a9f387..61a9f387 100644
--- a/ARMeilleure/Decoders/OpCode32SimdSpecial.cs
+++ b/src/ARMeilleure/Decoders/OpCode32SimdSpecial.cs
diff --git a/ARMeilleure/Decoders/OpCode32SimdSqrte.cs b/src/ARMeilleure/Decoders/OpCode32SimdSqrte.cs
index 5b715535..5b715535 100644
--- a/ARMeilleure/Decoders/OpCode32SimdSqrte.cs
+++ b/src/ARMeilleure/Decoders/OpCode32SimdSqrte.cs
diff --git a/ARMeilleure/Decoders/OpCode32SimdTbl.cs b/src/ARMeilleure/Decoders/OpCode32SimdTbl.cs
index c4fb4b9c..c4fb4b9c 100644
--- a/ARMeilleure/Decoders/OpCode32SimdTbl.cs
+++ b/src/ARMeilleure/Decoders/OpCode32SimdTbl.cs
diff --git a/ARMeilleure/Decoders/OpCode32System.cs b/src/ARMeilleure/Decoders/OpCode32System.cs
index 89e93349..89e93349 100644
--- a/ARMeilleure/Decoders/OpCode32System.cs
+++ b/src/ARMeilleure/Decoders/OpCode32System.cs
diff --git a/ARMeilleure/Decoders/OpCodeAdr.cs b/src/ARMeilleure/Decoders/OpCodeAdr.cs
index 9655c766..9655c766 100644
--- a/ARMeilleure/Decoders/OpCodeAdr.cs
+++ b/src/ARMeilleure/Decoders/OpCodeAdr.cs
diff --git a/ARMeilleure/Decoders/OpCodeAlu.cs b/src/ARMeilleure/Decoders/OpCodeAlu.cs
index 4d7f03a7..4d7f03a7 100644
--- a/ARMeilleure/Decoders/OpCodeAlu.cs
+++ b/src/ARMeilleure/Decoders/OpCodeAlu.cs
diff --git a/ARMeilleure/Decoders/OpCodeAluBinary.cs b/src/ARMeilleure/Decoders/OpCodeAluBinary.cs
index e8b10656..e8b10656 100644
--- a/ARMeilleure/Decoders/OpCodeAluBinary.cs
+++ b/src/ARMeilleure/Decoders/OpCodeAluBinary.cs
diff --git a/ARMeilleure/Decoders/OpCodeAluImm.cs b/src/ARMeilleure/Decoders/OpCodeAluImm.cs
index 91aa9553..91aa9553 100644
--- a/ARMeilleure/Decoders/OpCodeAluImm.cs
+++ b/src/ARMeilleure/Decoders/OpCodeAluImm.cs
diff --git a/ARMeilleure/Decoders/OpCodeAluRs.cs b/src/ARMeilleure/Decoders/OpCodeAluRs.cs
index 94983336..94983336 100644
--- a/ARMeilleure/Decoders/OpCodeAluRs.cs
+++ b/src/ARMeilleure/Decoders/OpCodeAluRs.cs
diff --git a/ARMeilleure/Decoders/OpCodeAluRx.cs b/src/ARMeilleure/Decoders/OpCodeAluRx.cs
index d39da9e7..d39da9e7 100644
--- a/ARMeilleure/Decoders/OpCodeAluRx.cs
+++ b/src/ARMeilleure/Decoders/OpCodeAluRx.cs
diff --git a/ARMeilleure/Decoders/OpCodeBImm.cs b/src/ARMeilleure/Decoders/OpCodeBImm.cs
index e302516e..e302516e 100644
--- a/ARMeilleure/Decoders/OpCodeBImm.cs
+++ b/src/ARMeilleure/Decoders/OpCodeBImm.cs
diff --git a/ARMeilleure/Decoders/OpCodeBImmAl.cs b/src/ARMeilleure/Decoders/OpCodeBImmAl.cs
index 47ae5f56..47ae5f56 100644
--- a/ARMeilleure/Decoders/OpCodeBImmAl.cs
+++ b/src/ARMeilleure/Decoders/OpCodeBImmAl.cs
diff --git a/ARMeilleure/Decoders/OpCodeBImmCmp.cs b/src/ARMeilleure/Decoders/OpCodeBImmCmp.cs
index a5246569..a5246569 100644
--- a/ARMeilleure/Decoders/OpCodeBImmCmp.cs
+++ b/src/ARMeilleure/Decoders/OpCodeBImmCmp.cs
diff --git a/ARMeilleure/Decoders/OpCodeBImmCond.cs b/src/ARMeilleure/Decoders/OpCodeBImmCond.cs
index b57a7ea8..b57a7ea8 100644
--- a/ARMeilleure/Decoders/OpCodeBImmCond.cs
+++ b/src/ARMeilleure/Decoders/OpCodeBImmCond.cs
diff --git a/ARMeilleure/Decoders/OpCodeBImmTest.cs b/src/ARMeilleure/Decoders/OpCodeBImmTest.cs
index bad98405..bad98405 100644
--- a/ARMeilleure/Decoders/OpCodeBImmTest.cs
+++ b/src/ARMeilleure/Decoders/OpCodeBImmTest.cs
diff --git a/ARMeilleure/Decoders/OpCodeBReg.cs b/src/ARMeilleure/Decoders/OpCodeBReg.cs
index b5dcbfd8..b5dcbfd8 100644
--- a/ARMeilleure/Decoders/OpCodeBReg.cs
+++ b/src/ARMeilleure/Decoders/OpCodeBReg.cs
diff --git a/ARMeilleure/Decoders/OpCodeBfm.cs b/src/ARMeilleure/Decoders/OpCodeBfm.cs
index 8e1c7836..8e1c7836 100644
--- a/ARMeilleure/Decoders/OpCodeBfm.cs
+++ b/src/ARMeilleure/Decoders/OpCodeBfm.cs
diff --git a/ARMeilleure/Decoders/OpCodeCcmp.cs b/src/ARMeilleure/Decoders/OpCodeCcmp.cs
index aa47146f..aa47146f 100644
--- a/ARMeilleure/Decoders/OpCodeCcmp.cs
+++ b/src/ARMeilleure/Decoders/OpCodeCcmp.cs
diff --git a/ARMeilleure/Decoders/OpCodeCcmpImm.cs b/src/ARMeilleure/Decoders/OpCodeCcmpImm.cs
index 3548f2da..3548f2da 100644
--- a/ARMeilleure/Decoders/OpCodeCcmpImm.cs
+++ b/src/ARMeilleure/Decoders/OpCodeCcmpImm.cs
diff --git a/ARMeilleure/Decoders/OpCodeCcmpReg.cs b/src/ARMeilleure/Decoders/OpCodeCcmpReg.cs
index d5df3b10..d5df3b10 100644
--- a/ARMeilleure/Decoders/OpCodeCcmpReg.cs
+++ b/src/ARMeilleure/Decoders/OpCodeCcmpReg.cs
diff --git a/ARMeilleure/Decoders/OpCodeCsel.cs b/src/ARMeilleure/Decoders/OpCodeCsel.cs
index 4b8dc7fd..4b8dc7fd 100644
--- a/ARMeilleure/Decoders/OpCodeCsel.cs
+++ b/src/ARMeilleure/Decoders/OpCodeCsel.cs
diff --git a/ARMeilleure/Decoders/OpCodeException.cs b/src/ARMeilleure/Decoders/OpCodeException.cs
index 6b72138e..6b72138e 100644
--- a/ARMeilleure/Decoders/OpCodeException.cs
+++ b/src/ARMeilleure/Decoders/OpCodeException.cs
diff --git a/ARMeilleure/Decoders/OpCodeMem.cs b/src/ARMeilleure/Decoders/OpCodeMem.cs
index 0ba2bcd1..0ba2bcd1 100644
--- a/ARMeilleure/Decoders/OpCodeMem.cs
+++ b/src/ARMeilleure/Decoders/OpCodeMem.cs
diff --git a/ARMeilleure/Decoders/OpCodeMemEx.cs b/src/ARMeilleure/Decoders/OpCodeMemEx.cs
index 89902485..89902485 100644
--- a/ARMeilleure/Decoders/OpCodeMemEx.cs
+++ b/src/ARMeilleure/Decoders/OpCodeMemEx.cs
diff --git a/ARMeilleure/Decoders/OpCodeMemImm.cs b/src/ARMeilleure/Decoders/OpCodeMemImm.cs
index d6ed2282..d6ed2282 100644
--- a/ARMeilleure/Decoders/OpCodeMemImm.cs
+++ b/src/ARMeilleure/Decoders/OpCodeMemImm.cs
diff --git a/ARMeilleure/Decoders/OpCodeMemLit.cs b/src/ARMeilleure/Decoders/OpCodeMemLit.cs
index 986d6634..986d6634 100644
--- a/ARMeilleure/Decoders/OpCodeMemLit.cs
+++ b/src/ARMeilleure/Decoders/OpCodeMemLit.cs
diff --git a/ARMeilleure/Decoders/OpCodeMemPair.cs b/src/ARMeilleure/Decoders/OpCodeMemPair.cs
index 21018033..21018033 100644
--- a/ARMeilleure/Decoders/OpCodeMemPair.cs
+++ b/src/ARMeilleure/Decoders/OpCodeMemPair.cs
diff --git a/ARMeilleure/Decoders/OpCodeMemReg.cs b/src/ARMeilleure/Decoders/OpCodeMemReg.cs
index 73d6c5d2..73d6c5d2 100644
--- a/ARMeilleure/Decoders/OpCodeMemReg.cs
+++ b/src/ARMeilleure/Decoders/OpCodeMemReg.cs
diff --git a/ARMeilleure/Decoders/OpCodeMov.cs b/src/ARMeilleure/Decoders/OpCodeMov.cs
index 50af88cb..50af88cb 100644
--- a/ARMeilleure/Decoders/OpCodeMov.cs
+++ b/src/ARMeilleure/Decoders/OpCodeMov.cs
diff --git a/ARMeilleure/Decoders/OpCodeMul.cs b/src/ARMeilleure/Decoders/OpCodeMul.cs
index 31d140a6..31d140a6 100644
--- a/ARMeilleure/Decoders/OpCodeMul.cs
+++ b/src/ARMeilleure/Decoders/OpCodeMul.cs
diff --git a/ARMeilleure/Decoders/OpCodeSimd.cs b/src/ARMeilleure/Decoders/OpCodeSimd.cs
index 85713690..85713690 100644
--- a/ARMeilleure/Decoders/OpCodeSimd.cs
+++ b/src/ARMeilleure/Decoders/OpCodeSimd.cs
diff --git a/ARMeilleure/Decoders/OpCodeSimdCvt.cs b/src/ARMeilleure/Decoders/OpCodeSimdCvt.cs
index 05b32941..05b32941 100644
--- a/ARMeilleure/Decoders/OpCodeSimdCvt.cs
+++ b/src/ARMeilleure/Decoders/OpCodeSimdCvt.cs
diff --git a/ARMeilleure/Decoders/OpCodeSimdExt.cs b/src/ARMeilleure/Decoders/OpCodeSimdExt.cs
index a0e264d9..a0e264d9 100644
--- a/ARMeilleure/Decoders/OpCodeSimdExt.cs
+++ b/src/ARMeilleure/Decoders/OpCodeSimdExt.cs
diff --git a/ARMeilleure/Decoders/OpCodeSimdFcond.cs b/src/ARMeilleure/Decoders/OpCodeSimdFcond.cs
index aa16e0c1..aa16e0c1 100644
--- a/ARMeilleure/Decoders/OpCodeSimdFcond.cs
+++ b/src/ARMeilleure/Decoders/OpCodeSimdFcond.cs
diff --git a/ARMeilleure/Decoders/OpCodeSimdFmov.cs b/src/ARMeilleure/Decoders/OpCodeSimdFmov.cs
index 9f9062b8..9f9062b8 100644
--- a/ARMeilleure/Decoders/OpCodeSimdFmov.cs
+++ b/src/ARMeilleure/Decoders/OpCodeSimdFmov.cs
diff --git a/ARMeilleure/Decoders/OpCodeSimdHelper.cs b/src/ARMeilleure/Decoders/OpCodeSimdHelper.cs
index 02f74d03..02f74d03 100644
--- a/ARMeilleure/Decoders/OpCodeSimdHelper.cs
+++ b/src/ARMeilleure/Decoders/OpCodeSimdHelper.cs
diff --git a/ARMeilleure/Decoders/OpCodeSimdImm.cs b/src/ARMeilleure/Decoders/OpCodeSimdImm.cs
index eeca7709..eeca7709 100644
--- a/ARMeilleure/Decoders/OpCodeSimdImm.cs
+++ b/src/ARMeilleure/Decoders/OpCodeSimdImm.cs
diff --git a/ARMeilleure/Decoders/OpCodeSimdIns.cs b/src/ARMeilleure/Decoders/OpCodeSimdIns.cs
index f6f9249d..f6f9249d 100644
--- a/ARMeilleure/Decoders/OpCodeSimdIns.cs
+++ b/src/ARMeilleure/Decoders/OpCodeSimdIns.cs
diff --git a/ARMeilleure/Decoders/OpCodeSimdMemImm.cs b/src/ARMeilleure/Decoders/OpCodeSimdMemImm.cs
index c11594cb..c11594cb 100644
--- a/ARMeilleure/Decoders/OpCodeSimdMemImm.cs
+++ b/src/ARMeilleure/Decoders/OpCodeSimdMemImm.cs
diff --git a/ARMeilleure/Decoders/OpCodeSimdMemLit.cs b/src/ARMeilleure/Decoders/OpCodeSimdMemLit.cs
index 8e212966..8e212966 100644
--- a/ARMeilleure/Decoders/OpCodeSimdMemLit.cs
+++ b/src/ARMeilleure/Decoders/OpCodeSimdMemLit.cs
diff --git a/ARMeilleure/Decoders/OpCodeSimdMemMs.cs b/src/ARMeilleure/Decoders/OpCodeSimdMemMs.cs
index 8922c18f..8922c18f 100644
--- a/ARMeilleure/Decoders/OpCodeSimdMemMs.cs
+++ b/src/ARMeilleure/Decoders/OpCodeSimdMemMs.cs
diff --git a/ARMeilleure/Decoders/OpCodeSimdMemPair.cs b/src/ARMeilleure/Decoders/OpCodeSimdMemPair.cs
index 1ab95367..1ab95367 100644
--- a/ARMeilleure/Decoders/OpCodeSimdMemPair.cs
+++ b/src/ARMeilleure/Decoders/OpCodeSimdMemPair.cs
diff --git a/ARMeilleure/Decoders/OpCodeSimdMemReg.cs b/src/ARMeilleure/Decoders/OpCodeSimdMemReg.cs
index 9ea6dda3..9ea6dda3 100644
--- a/ARMeilleure/Decoders/OpCodeSimdMemReg.cs
+++ b/src/ARMeilleure/Decoders/OpCodeSimdMemReg.cs
diff --git a/ARMeilleure/Decoders/OpCodeSimdMemSs.cs b/src/ARMeilleure/Decoders/OpCodeSimdMemSs.cs
index 44abdd38..44abdd38 100644
--- a/ARMeilleure/Decoders/OpCodeSimdMemSs.cs
+++ b/src/ARMeilleure/Decoders/OpCodeSimdMemSs.cs
diff --git a/ARMeilleure/Decoders/OpCodeSimdReg.cs b/src/ARMeilleure/Decoders/OpCodeSimdReg.cs
index ac4f71da..ac4f71da 100644
--- a/ARMeilleure/Decoders/OpCodeSimdReg.cs
+++ b/src/ARMeilleure/Decoders/OpCodeSimdReg.cs
diff --git a/ARMeilleure/Decoders/OpCodeSimdRegElem.cs b/src/ARMeilleure/Decoders/OpCodeSimdRegElem.cs
index 92368dee..92368dee 100644
--- a/ARMeilleure/Decoders/OpCodeSimdRegElem.cs
+++ b/src/ARMeilleure/Decoders/OpCodeSimdRegElem.cs
diff --git a/ARMeilleure/Decoders/OpCodeSimdRegElemF.cs b/src/ARMeilleure/Decoders/OpCodeSimdRegElemF.cs
index d46dd57e..d46dd57e 100644
--- a/ARMeilleure/Decoders/OpCodeSimdRegElemF.cs
+++ b/src/ARMeilleure/Decoders/OpCodeSimdRegElemF.cs
diff --git a/ARMeilleure/Decoders/OpCodeSimdShImm.cs b/src/ARMeilleure/Decoders/OpCodeSimdShImm.cs
index 7064f1d2..7064f1d2 100644
--- a/ARMeilleure/Decoders/OpCodeSimdShImm.cs
+++ b/src/ARMeilleure/Decoders/OpCodeSimdShImm.cs
diff --git a/ARMeilleure/Decoders/OpCodeSimdTbl.cs b/src/ARMeilleure/Decoders/OpCodeSimdTbl.cs
index 9c631e48..9c631e48 100644
--- a/ARMeilleure/Decoders/OpCodeSimdTbl.cs
+++ b/src/ARMeilleure/Decoders/OpCodeSimdTbl.cs
diff --git a/ARMeilleure/Decoders/OpCodeSystem.cs b/src/ARMeilleure/Decoders/OpCodeSystem.cs
index 4d79421a..4d79421a 100644
--- a/ARMeilleure/Decoders/OpCodeSystem.cs
+++ b/src/ARMeilleure/Decoders/OpCodeSystem.cs
diff --git a/ARMeilleure/Decoders/OpCodeT16.cs b/src/ARMeilleure/Decoders/OpCodeT16.cs
index 9c3d6b00..9c3d6b00 100644
--- a/ARMeilleure/Decoders/OpCodeT16.cs
+++ b/src/ARMeilleure/Decoders/OpCodeT16.cs
diff --git a/ARMeilleure/Decoders/OpCodeT16AddSubImm3.cs b/src/ARMeilleure/Decoders/OpCodeT16AddSubImm3.cs
index 95f18054..95f18054 100644
--- a/ARMeilleure/Decoders/OpCodeT16AddSubImm3.cs
+++ b/src/ARMeilleure/Decoders/OpCodeT16AddSubImm3.cs
diff --git a/ARMeilleure/Decoders/OpCodeT16AddSubReg.cs b/src/ARMeilleure/Decoders/OpCodeT16AddSubReg.cs
index 2a407b2d..2a407b2d 100644
--- a/ARMeilleure/Decoders/OpCodeT16AddSubReg.cs
+++ b/src/ARMeilleure/Decoders/OpCodeT16AddSubReg.cs
diff --git a/ARMeilleure/Decoders/OpCodeT16AddSubSp.cs b/src/ARMeilleure/Decoders/OpCodeT16AddSubSp.cs
index b66fe0cd..b66fe0cd 100644
--- a/ARMeilleure/Decoders/OpCodeT16AddSubSp.cs
+++ b/src/ARMeilleure/Decoders/OpCodeT16AddSubSp.cs
diff --git a/ARMeilleure/Decoders/OpCodeT16Adr.cs b/src/ARMeilleure/Decoders/OpCodeT16Adr.cs
index 03abd499..03abd499 100644
--- a/ARMeilleure/Decoders/OpCodeT16Adr.cs
+++ b/src/ARMeilleure/Decoders/OpCodeT16Adr.cs
diff --git a/ARMeilleure/Decoders/OpCodeT16AluImm8.cs b/src/ARMeilleure/Decoders/OpCodeT16AluImm8.cs
index 673a4604..673a4604 100644
--- a/ARMeilleure/Decoders/OpCodeT16AluImm8.cs
+++ b/src/ARMeilleure/Decoders/OpCodeT16AluImm8.cs
diff --git a/ARMeilleure/Decoders/OpCodeT16AluImmZero.cs b/src/ARMeilleure/Decoders/OpCodeT16AluImmZero.cs
index b23f8fe0..b23f8fe0 100644
--- a/ARMeilleure/Decoders/OpCodeT16AluImmZero.cs
+++ b/src/ARMeilleure/Decoders/OpCodeT16AluImmZero.cs
diff --git a/ARMeilleure/Decoders/OpCodeT16AluRegHigh.cs b/src/ARMeilleure/Decoders/OpCodeT16AluRegHigh.cs
index 6d5ac8fd..6d5ac8fd 100644
--- a/ARMeilleure/Decoders/OpCodeT16AluRegHigh.cs
+++ b/src/ARMeilleure/Decoders/OpCodeT16AluRegHigh.cs
diff --git a/ARMeilleure/Decoders/OpCodeT16AluRegLow.cs b/src/ARMeilleure/Decoders/OpCodeT16AluRegLow.cs
index b37b4f66..b37b4f66 100644
--- a/ARMeilleure/Decoders/OpCodeT16AluRegLow.cs
+++ b/src/ARMeilleure/Decoders/OpCodeT16AluRegLow.cs
diff --git a/ARMeilleure/Decoders/OpCodeT16AluUx.cs b/src/ARMeilleure/Decoders/OpCodeT16AluUx.cs
index 11d3a8fe..11d3a8fe 100644
--- a/ARMeilleure/Decoders/OpCodeT16AluUx.cs
+++ b/src/ARMeilleure/Decoders/OpCodeT16AluUx.cs
diff --git a/ARMeilleure/Decoders/OpCodeT16BImm11.cs b/src/ARMeilleure/Decoders/OpCodeT16BImm11.cs
index f230b20e..f230b20e 100644
--- a/ARMeilleure/Decoders/OpCodeT16BImm11.cs
+++ b/src/ARMeilleure/Decoders/OpCodeT16BImm11.cs
diff --git a/ARMeilleure/Decoders/OpCodeT16BImm8.cs b/src/ARMeilleure/Decoders/OpCodeT16BImm8.cs
index 5f684298..5f684298 100644
--- a/ARMeilleure/Decoders/OpCodeT16BImm8.cs
+++ b/src/ARMeilleure/Decoders/OpCodeT16BImm8.cs
diff --git a/ARMeilleure/Decoders/OpCodeT16BImmCmp.cs b/src/ARMeilleure/Decoders/OpCodeT16BImmCmp.cs
index 68ebac75..68ebac75 100644
--- a/ARMeilleure/Decoders/OpCodeT16BImmCmp.cs
+++ b/src/ARMeilleure/Decoders/OpCodeT16BImmCmp.cs
diff --git a/ARMeilleure/Decoders/OpCodeT16BReg.cs b/src/ARMeilleure/Decoders/OpCodeT16BReg.cs
index 3122cd07..3122cd07 100644
--- a/ARMeilleure/Decoders/OpCodeT16BReg.cs
+++ b/src/ARMeilleure/Decoders/OpCodeT16BReg.cs
diff --git a/ARMeilleure/Decoders/OpCodeT16Exception.cs b/src/ARMeilleure/Decoders/OpCodeT16Exception.cs
index bb005083..bb005083 100644
--- a/ARMeilleure/Decoders/OpCodeT16Exception.cs
+++ b/src/ARMeilleure/Decoders/OpCodeT16Exception.cs
diff --git a/ARMeilleure/Decoders/OpCodeT16IfThen.cs b/src/ARMeilleure/Decoders/OpCodeT16IfThen.cs
index 8c3de689..8c3de689 100644
--- a/ARMeilleure/Decoders/OpCodeT16IfThen.cs
+++ b/src/ARMeilleure/Decoders/OpCodeT16IfThen.cs
diff --git a/ARMeilleure/Decoders/OpCodeT16MemImm5.cs b/src/ARMeilleure/Decoders/OpCodeT16MemImm5.cs
index 20ef31e2..20ef31e2 100644
--- a/ARMeilleure/Decoders/OpCodeT16MemImm5.cs
+++ b/src/ARMeilleure/Decoders/OpCodeT16MemImm5.cs
diff --git a/ARMeilleure/Decoders/OpCodeT16MemLit.cs b/src/ARMeilleure/Decoders/OpCodeT16MemLit.cs
index f8c16e29..f8c16e29 100644
--- a/ARMeilleure/Decoders/OpCodeT16MemLit.cs
+++ b/src/ARMeilleure/Decoders/OpCodeT16MemLit.cs
diff --git a/ARMeilleure/Decoders/OpCodeT16MemMult.cs b/src/ARMeilleure/Decoders/OpCodeT16MemMult.cs
index f4185cfc..f4185cfc 100644
--- a/ARMeilleure/Decoders/OpCodeT16MemMult.cs
+++ b/src/ARMeilleure/Decoders/OpCodeT16MemMult.cs
diff --git a/ARMeilleure/Decoders/OpCodeT16MemReg.cs b/src/ARMeilleure/Decoders/OpCodeT16MemReg.cs
index 71100112..71100112 100644
--- a/ARMeilleure/Decoders/OpCodeT16MemReg.cs
+++ b/src/ARMeilleure/Decoders/OpCodeT16MemReg.cs
diff --git a/ARMeilleure/Decoders/OpCodeT16MemSp.cs b/src/ARMeilleure/Decoders/OpCodeT16MemSp.cs
index a038b915..a038b915 100644
--- a/ARMeilleure/Decoders/OpCodeT16MemSp.cs
+++ b/src/ARMeilleure/Decoders/OpCodeT16MemSp.cs
diff --git a/ARMeilleure/Decoders/OpCodeT16MemStack.cs b/src/ARMeilleure/Decoders/OpCodeT16MemStack.cs
index 9d7b0d20..9d7b0d20 100644
--- a/ARMeilleure/Decoders/OpCodeT16MemStack.cs
+++ b/src/ARMeilleure/Decoders/OpCodeT16MemStack.cs
diff --git a/ARMeilleure/Decoders/OpCodeT16ShiftImm.cs b/src/ARMeilleure/Decoders/OpCodeT16ShiftImm.cs
index a540026e..a540026e 100644
--- a/ARMeilleure/Decoders/OpCodeT16ShiftImm.cs
+++ b/src/ARMeilleure/Decoders/OpCodeT16ShiftImm.cs
diff --git a/ARMeilleure/Decoders/OpCodeT16ShiftReg.cs b/src/ARMeilleure/Decoders/OpCodeT16ShiftReg.cs
index 9f898281..9f898281 100644
--- a/ARMeilleure/Decoders/OpCodeT16ShiftReg.cs
+++ b/src/ARMeilleure/Decoders/OpCodeT16ShiftReg.cs
diff --git a/ARMeilleure/Decoders/OpCodeT16SpRel.cs b/src/ARMeilleure/Decoders/OpCodeT16SpRel.cs
index d737f5bd..d737f5bd 100644
--- a/ARMeilleure/Decoders/OpCodeT16SpRel.cs
+++ b/src/ARMeilleure/Decoders/OpCodeT16SpRel.cs
diff --git a/ARMeilleure/Decoders/OpCodeT32.cs b/src/ARMeilleure/Decoders/OpCodeT32.cs
index cf43d429..cf43d429 100644
--- a/ARMeilleure/Decoders/OpCodeT32.cs
+++ b/src/ARMeilleure/Decoders/OpCodeT32.cs
diff --git a/ARMeilleure/Decoders/OpCodeT32Alu.cs b/src/ARMeilleure/Decoders/OpCodeT32Alu.cs
index a81b3b3d..a81b3b3d 100644
--- a/ARMeilleure/Decoders/OpCodeT32Alu.cs
+++ b/src/ARMeilleure/Decoders/OpCodeT32Alu.cs
diff --git a/ARMeilleure/Decoders/OpCodeT32AluBf.cs b/src/ARMeilleure/Decoders/OpCodeT32AluBf.cs
index 57ad422f..57ad422f 100644
--- a/ARMeilleure/Decoders/OpCodeT32AluBf.cs
+++ b/src/ARMeilleure/Decoders/OpCodeT32AluBf.cs
diff --git a/ARMeilleure/Decoders/OpCodeT32AluImm.cs b/src/ARMeilleure/Decoders/OpCodeT32AluImm.cs
index 0895c29b..0895c29b 100644
--- a/ARMeilleure/Decoders/OpCodeT32AluImm.cs
+++ b/src/ARMeilleure/Decoders/OpCodeT32AluImm.cs
diff --git a/ARMeilleure/Decoders/OpCodeT32AluImm12.cs b/src/ARMeilleure/Decoders/OpCodeT32AluImm12.cs
index 31de63dd..31de63dd 100644
--- a/ARMeilleure/Decoders/OpCodeT32AluImm12.cs
+++ b/src/ARMeilleure/Decoders/OpCodeT32AluImm12.cs
diff --git a/ARMeilleure/Decoders/OpCodeT32AluMla.cs b/src/ARMeilleure/Decoders/OpCodeT32AluMla.cs
index 6cb604da..6cb604da 100644
--- a/ARMeilleure/Decoders/OpCodeT32AluMla.cs
+++ b/src/ARMeilleure/Decoders/OpCodeT32AluMla.cs
diff --git a/ARMeilleure/Decoders/OpCodeT32AluReg.cs b/src/ARMeilleure/Decoders/OpCodeT32AluReg.cs
index a487f55a..a487f55a 100644
--- a/ARMeilleure/Decoders/OpCodeT32AluReg.cs
+++ b/src/ARMeilleure/Decoders/OpCodeT32AluReg.cs
diff --git a/ARMeilleure/Decoders/OpCodeT32AluRsImm.cs b/src/ARMeilleure/Decoders/OpCodeT32AluRsImm.cs
index 1c9ba7a2..1c9ba7a2 100644
--- a/ARMeilleure/Decoders/OpCodeT32AluRsImm.cs
+++ b/src/ARMeilleure/Decoders/OpCodeT32AluRsImm.cs
diff --git a/ARMeilleure/Decoders/OpCodeT32AluUmull.cs b/src/ARMeilleure/Decoders/OpCodeT32AluUmull.cs
index a1b2e612..a1b2e612 100644
--- a/ARMeilleure/Decoders/OpCodeT32AluUmull.cs
+++ b/src/ARMeilleure/Decoders/OpCodeT32AluUmull.cs
diff --git a/ARMeilleure/Decoders/OpCodeT32AluUx.cs b/src/ARMeilleure/Decoders/OpCodeT32AluUx.cs
index 861dc904..861dc904 100644
--- a/ARMeilleure/Decoders/OpCodeT32AluUx.cs
+++ b/src/ARMeilleure/Decoders/OpCodeT32AluUx.cs
diff --git a/ARMeilleure/Decoders/OpCodeT32BImm20.cs b/src/ARMeilleure/Decoders/OpCodeT32BImm20.cs
index b6da8abd..b6da8abd 100644
--- a/ARMeilleure/Decoders/OpCodeT32BImm20.cs
+++ b/src/ARMeilleure/Decoders/OpCodeT32BImm20.cs
diff --git a/ARMeilleure/Decoders/OpCodeT32BImm24.cs b/src/ARMeilleure/Decoders/OpCodeT32BImm24.cs
index 774ec3a6..774ec3a6 100644
--- a/ARMeilleure/Decoders/OpCodeT32BImm24.cs
+++ b/src/ARMeilleure/Decoders/OpCodeT32BImm24.cs
diff --git a/ARMeilleure/Decoders/OpCodeT32MemImm12.cs b/src/ARMeilleure/Decoders/OpCodeT32MemImm12.cs
index 7838604b..7838604b 100644
--- a/ARMeilleure/Decoders/OpCodeT32MemImm12.cs
+++ b/src/ARMeilleure/Decoders/OpCodeT32MemImm12.cs
diff --git a/ARMeilleure/Decoders/OpCodeT32MemImm8.cs b/src/ARMeilleure/Decoders/OpCodeT32MemImm8.cs
index d8b7763c..d8b7763c 100644
--- a/ARMeilleure/Decoders/OpCodeT32MemImm8.cs
+++ b/src/ARMeilleure/Decoders/OpCodeT32MemImm8.cs
diff --git a/ARMeilleure/Decoders/OpCodeT32MemImm8D.cs b/src/ARMeilleure/Decoders/OpCodeT32MemImm8D.cs
index 7a078c48..7a078c48 100644
--- a/ARMeilleure/Decoders/OpCodeT32MemImm8D.cs
+++ b/src/ARMeilleure/Decoders/OpCodeT32MemImm8D.cs
diff --git a/ARMeilleure/Decoders/OpCodeT32MemLdEx.cs b/src/ARMeilleure/Decoders/OpCodeT32MemLdEx.cs
index c8eb36b3..c8eb36b3 100644
--- a/ARMeilleure/Decoders/OpCodeT32MemLdEx.cs
+++ b/src/ARMeilleure/Decoders/OpCodeT32MemLdEx.cs
diff --git a/ARMeilleure/Decoders/OpCodeT32MemMult.cs b/src/ARMeilleure/Decoders/OpCodeT32MemMult.cs
index a9ba306d..a9ba306d 100644
--- a/ARMeilleure/Decoders/OpCodeT32MemMult.cs
+++ b/src/ARMeilleure/Decoders/OpCodeT32MemMult.cs
diff --git a/ARMeilleure/Decoders/OpCodeT32MemRsImm.cs b/src/ARMeilleure/Decoders/OpCodeT32MemRsImm.cs
index 056d3b46..056d3b46 100644
--- a/ARMeilleure/Decoders/OpCodeT32MemRsImm.cs
+++ b/src/ARMeilleure/Decoders/OpCodeT32MemRsImm.cs
diff --git a/ARMeilleure/Decoders/OpCodeT32MemStEx.cs b/src/ARMeilleure/Decoders/OpCodeT32MemStEx.cs
index 6a0a6bb1..6a0a6bb1 100644
--- a/ARMeilleure/Decoders/OpCodeT32MemStEx.cs
+++ b/src/ARMeilleure/Decoders/OpCodeT32MemStEx.cs
diff --git a/ARMeilleure/Decoders/OpCodeT32MovImm16.cs b/src/ARMeilleure/Decoders/OpCodeT32MovImm16.cs
index 5161892b..5161892b 100644
--- a/ARMeilleure/Decoders/OpCodeT32MovImm16.cs
+++ b/src/ARMeilleure/Decoders/OpCodeT32MovImm16.cs
diff --git a/ARMeilleure/Decoders/OpCodeT32ShiftReg.cs b/src/ARMeilleure/Decoders/OpCodeT32ShiftReg.cs
index 36055975..36055975 100644
--- a/ARMeilleure/Decoders/OpCodeT32ShiftReg.cs
+++ b/src/ARMeilleure/Decoders/OpCodeT32ShiftReg.cs
diff --git a/ARMeilleure/Decoders/OpCodeT32Tb.cs b/src/ARMeilleure/Decoders/OpCodeT32Tb.cs
index 527754b1..527754b1 100644
--- a/ARMeilleure/Decoders/OpCodeT32Tb.cs
+++ b/src/ARMeilleure/Decoders/OpCodeT32Tb.cs
diff --git a/ARMeilleure/Decoders/OpCodeTable.cs b/src/ARMeilleure/Decoders/OpCodeTable.cs
index 4f359958..4f359958 100644
--- a/ARMeilleure/Decoders/OpCodeTable.cs
+++ b/src/ARMeilleure/Decoders/OpCodeTable.cs
diff --git a/ARMeilleure/Decoders/Optimizations/TailCallRemover.cs b/src/ARMeilleure/Decoders/Optimizations/TailCallRemover.cs
index 17c17812..17c17812 100644
--- a/ARMeilleure/Decoders/Optimizations/TailCallRemover.cs
+++ b/src/ARMeilleure/Decoders/Optimizations/TailCallRemover.cs
diff --git a/ARMeilleure/Decoders/RegisterSize.cs b/src/ARMeilleure/Decoders/RegisterSize.cs
index c9cea03e..c9cea03e 100644
--- a/ARMeilleure/Decoders/RegisterSize.cs
+++ b/src/ARMeilleure/Decoders/RegisterSize.cs
diff --git a/ARMeilleure/Decoders/ShiftType.cs b/src/ARMeilleure/Decoders/ShiftType.cs
index 8583f16a..8583f16a 100644
--- a/ARMeilleure/Decoders/ShiftType.cs
+++ b/src/ARMeilleure/Decoders/ShiftType.cs
diff --git a/ARMeilleure/Diagnostics/IRDumper.cs b/src/ARMeilleure/Diagnostics/IRDumper.cs
index 3d1a60e5..3d1a60e5 100644
--- a/ARMeilleure/Diagnostics/IRDumper.cs
+++ b/src/ARMeilleure/Diagnostics/IRDumper.cs
diff --git a/ARMeilleure/Diagnostics/Logger.cs b/src/ARMeilleure/Diagnostics/Logger.cs
index 07a60667..07a60667 100644
--- a/ARMeilleure/Diagnostics/Logger.cs
+++ b/src/ARMeilleure/Diagnostics/Logger.cs
diff --git a/ARMeilleure/Diagnostics/PassName.cs b/src/ARMeilleure/Diagnostics/PassName.cs
index e34bf0d2..e34bf0d2 100644
--- a/ARMeilleure/Diagnostics/PassName.cs
+++ b/src/ARMeilleure/Diagnostics/PassName.cs
diff --git a/ARMeilleure/Diagnostics/Symbols.cs b/src/ARMeilleure/Diagnostics/Symbols.cs
index 6bde62f5..6bde62f5 100644
--- a/ARMeilleure/Diagnostics/Symbols.cs
+++ b/src/ARMeilleure/Diagnostics/Symbols.cs
diff --git a/ARMeilleure/Diagnostics/TranslatorEventSource.cs b/src/ARMeilleure/Diagnostics/TranslatorEventSource.cs
index a4f17844..a4f17844 100644
--- a/ARMeilleure/Diagnostics/TranslatorEventSource.cs
+++ b/src/ARMeilleure/Diagnostics/TranslatorEventSource.cs
diff --git a/ARMeilleure/Instructions/CryptoHelper.cs b/src/ARMeilleure/Instructions/CryptoHelper.cs
index e517c75d..e517c75d 100644
--- a/ARMeilleure/Instructions/CryptoHelper.cs
+++ b/src/ARMeilleure/Instructions/CryptoHelper.cs
diff --git a/ARMeilleure/Instructions/InstEmitAlu.cs b/src/ARMeilleure/Instructions/InstEmitAlu.cs
index e0d10e77..e0d10e77 100644
--- a/ARMeilleure/Instructions/InstEmitAlu.cs
+++ b/src/ARMeilleure/Instructions/InstEmitAlu.cs
diff --git a/ARMeilleure/Instructions/InstEmitAlu32.cs b/src/ARMeilleure/Instructions/InstEmitAlu32.cs
index 584ada7e..584ada7e 100644
--- a/ARMeilleure/Instructions/InstEmitAlu32.cs
+++ b/src/ARMeilleure/Instructions/InstEmitAlu32.cs
diff --git a/ARMeilleure/Instructions/InstEmitAluHelper.cs b/src/ARMeilleure/Instructions/InstEmitAluHelper.cs
index 994878ad..994878ad 100644
--- a/ARMeilleure/Instructions/InstEmitAluHelper.cs
+++ b/src/ARMeilleure/Instructions/InstEmitAluHelper.cs
diff --git a/ARMeilleure/Instructions/InstEmitBfm.cs b/src/ARMeilleure/Instructions/InstEmitBfm.cs
index 46a7dddd..46a7dddd 100644
--- a/ARMeilleure/Instructions/InstEmitBfm.cs
+++ b/src/ARMeilleure/Instructions/InstEmitBfm.cs
diff --git a/ARMeilleure/Instructions/InstEmitCcmp.cs b/src/ARMeilleure/Instructions/InstEmitCcmp.cs
index 7f0beb6c..7f0beb6c 100644
--- a/ARMeilleure/Instructions/InstEmitCcmp.cs
+++ b/src/ARMeilleure/Instructions/InstEmitCcmp.cs
diff --git a/ARMeilleure/Instructions/InstEmitCsel.cs b/src/ARMeilleure/Instructions/InstEmitCsel.cs
index 926b9a9e..926b9a9e 100644
--- a/ARMeilleure/Instructions/InstEmitCsel.cs
+++ b/src/ARMeilleure/Instructions/InstEmitCsel.cs
diff --git a/ARMeilleure/Instructions/InstEmitDiv.cs b/src/ARMeilleure/Instructions/InstEmitDiv.cs
index 39a5c32e..39a5c32e 100644
--- a/ARMeilleure/Instructions/InstEmitDiv.cs
+++ b/src/ARMeilleure/Instructions/InstEmitDiv.cs
diff --git a/ARMeilleure/Instructions/InstEmitException.cs b/src/ARMeilleure/Instructions/InstEmitException.cs
index 0baaa87d..0baaa87d 100644
--- a/ARMeilleure/Instructions/InstEmitException.cs
+++ b/src/ARMeilleure/Instructions/InstEmitException.cs
diff --git a/ARMeilleure/Instructions/InstEmitException32.cs b/src/ARMeilleure/Instructions/InstEmitException32.cs
index ec0c32bf..ec0c32bf 100644
--- a/ARMeilleure/Instructions/InstEmitException32.cs
+++ b/src/ARMeilleure/Instructions/InstEmitException32.cs
diff --git a/ARMeilleure/Instructions/InstEmitFlow.cs b/src/ARMeilleure/Instructions/InstEmitFlow.cs
index c40eb55c..c40eb55c 100644
--- a/ARMeilleure/Instructions/InstEmitFlow.cs
+++ b/src/ARMeilleure/Instructions/InstEmitFlow.cs
diff --git a/ARMeilleure/Instructions/InstEmitFlow32.cs b/src/ARMeilleure/Instructions/InstEmitFlow32.cs
index 3a7707ee..3a7707ee 100644
--- a/ARMeilleure/Instructions/InstEmitFlow32.cs
+++ b/src/ARMeilleure/Instructions/InstEmitFlow32.cs
diff --git a/ARMeilleure/Instructions/InstEmitFlowHelper.cs b/src/ARMeilleure/Instructions/InstEmitFlowHelper.cs
index 6ac32908..6ac32908 100644
--- a/ARMeilleure/Instructions/InstEmitFlowHelper.cs
+++ b/src/ARMeilleure/Instructions/InstEmitFlowHelper.cs
diff --git a/ARMeilleure/Instructions/InstEmitHash.cs b/src/ARMeilleure/Instructions/InstEmitHash.cs
index 82b3e353..82b3e353 100644
--- a/ARMeilleure/Instructions/InstEmitHash.cs
+++ b/src/ARMeilleure/Instructions/InstEmitHash.cs
diff --git a/ARMeilleure/Instructions/InstEmitHash32.cs b/src/ARMeilleure/Instructions/InstEmitHash32.cs
index 5d39f8af..5d39f8af 100644
--- a/ARMeilleure/Instructions/InstEmitHash32.cs
+++ b/src/ARMeilleure/Instructions/InstEmitHash32.cs
diff --git a/ARMeilleure/Instructions/InstEmitHashHelper.cs b/src/ARMeilleure/Instructions/InstEmitHashHelper.cs
index 55a03a4f..55a03a4f 100644
--- a/ARMeilleure/Instructions/InstEmitHashHelper.cs
+++ b/src/ARMeilleure/Instructions/InstEmitHashHelper.cs
diff --git a/ARMeilleure/Instructions/InstEmitHelper.cs b/src/ARMeilleure/Instructions/InstEmitHelper.cs
index a22bb3fb..a22bb3fb 100644
--- a/ARMeilleure/Instructions/InstEmitHelper.cs
+++ b/src/ARMeilleure/Instructions/InstEmitHelper.cs
diff --git a/ARMeilleure/Instructions/InstEmitMemory.cs b/src/ARMeilleure/Instructions/InstEmitMemory.cs
index 7baed14c..7baed14c 100644
--- a/ARMeilleure/Instructions/InstEmitMemory.cs
+++ b/src/ARMeilleure/Instructions/InstEmitMemory.cs
diff --git a/ARMeilleure/Instructions/InstEmitMemory32.cs b/src/ARMeilleure/Instructions/InstEmitMemory32.cs
index 17ec97aa..17ec97aa 100644
--- a/ARMeilleure/Instructions/InstEmitMemory32.cs
+++ b/src/ARMeilleure/Instructions/InstEmitMemory32.cs
diff --git a/ARMeilleure/Instructions/InstEmitMemoryEx.cs b/src/ARMeilleure/Instructions/InstEmitMemoryEx.cs
index c7ed01e3..c7ed01e3 100644
--- a/ARMeilleure/Instructions/InstEmitMemoryEx.cs
+++ b/src/ARMeilleure/Instructions/InstEmitMemoryEx.cs
diff --git a/ARMeilleure/Instructions/InstEmitMemoryEx32.cs b/src/ARMeilleure/Instructions/InstEmitMemoryEx32.cs
index c0b6fc39..c0b6fc39 100644
--- a/ARMeilleure/Instructions/InstEmitMemoryEx32.cs
+++ b/src/ARMeilleure/Instructions/InstEmitMemoryEx32.cs
diff --git a/ARMeilleure/Instructions/InstEmitMemoryExHelper.cs b/src/ARMeilleure/Instructions/InstEmitMemoryExHelper.cs
index 9a69442a..9a69442a 100644
--- a/ARMeilleure/Instructions/InstEmitMemoryExHelper.cs
+++ b/src/ARMeilleure/Instructions/InstEmitMemoryExHelper.cs
diff --git a/ARMeilleure/Instructions/InstEmitMemoryHelper.cs b/src/ARMeilleure/Instructions/InstEmitMemoryHelper.cs
index f97e395c..f97e395c 100644
--- a/ARMeilleure/Instructions/InstEmitMemoryHelper.cs
+++ b/src/ARMeilleure/Instructions/InstEmitMemoryHelper.cs
diff --git a/ARMeilleure/Instructions/InstEmitMove.cs b/src/ARMeilleure/Instructions/InstEmitMove.cs
index d551bf2d..d551bf2d 100644
--- a/ARMeilleure/Instructions/InstEmitMove.cs
+++ b/src/ARMeilleure/Instructions/InstEmitMove.cs
diff --git a/ARMeilleure/Instructions/InstEmitMul.cs b/src/ARMeilleure/Instructions/InstEmitMul.cs
index 65d11b30..65d11b30 100644
--- a/ARMeilleure/Instructions/InstEmitMul.cs
+++ b/src/ARMeilleure/Instructions/InstEmitMul.cs
diff --git a/ARMeilleure/Instructions/InstEmitMul32.cs b/src/ARMeilleure/Instructions/InstEmitMul32.cs
index 0822f92c..0822f92c 100644
--- a/ARMeilleure/Instructions/InstEmitMul32.cs
+++ b/src/ARMeilleure/Instructions/InstEmitMul32.cs
diff --git a/ARMeilleure/Instructions/InstEmitSimdArithmetic.cs b/src/ARMeilleure/Instructions/InstEmitSimdArithmetic.cs
index 7e7f26b1..7e7f26b1 100644
--- a/ARMeilleure/Instructions/InstEmitSimdArithmetic.cs
+++ b/src/ARMeilleure/Instructions/InstEmitSimdArithmetic.cs
diff --git a/ARMeilleure/Instructions/InstEmitSimdArithmetic32.cs b/src/ARMeilleure/Instructions/InstEmitSimdArithmetic32.cs
index a9994e41..a9994e41 100644
--- a/ARMeilleure/Instructions/InstEmitSimdArithmetic32.cs
+++ b/src/ARMeilleure/Instructions/InstEmitSimdArithmetic32.cs
diff --git a/ARMeilleure/Instructions/InstEmitSimdCmp.cs b/src/ARMeilleure/Instructions/InstEmitSimdCmp.cs
index c32b64ba..c32b64ba 100644
--- a/ARMeilleure/Instructions/InstEmitSimdCmp.cs
+++ b/src/ARMeilleure/Instructions/InstEmitSimdCmp.cs
diff --git a/ARMeilleure/Instructions/InstEmitSimdCmp32.cs b/src/ARMeilleure/Instructions/InstEmitSimdCmp32.cs
index a990e057..a990e057 100644
--- a/ARMeilleure/Instructions/InstEmitSimdCmp32.cs
+++ b/src/ARMeilleure/Instructions/InstEmitSimdCmp32.cs
diff --git a/ARMeilleure/Instructions/InstEmitSimdCrypto.cs b/src/ARMeilleure/Instructions/InstEmitSimdCrypto.cs
index db24e029..db24e029 100644
--- a/ARMeilleure/Instructions/InstEmitSimdCrypto.cs
+++ b/src/ARMeilleure/Instructions/InstEmitSimdCrypto.cs
diff --git a/ARMeilleure/Instructions/InstEmitSimdCrypto32.cs b/src/ARMeilleure/Instructions/InstEmitSimdCrypto32.cs
index f713a388..f713a388 100644
--- a/ARMeilleure/Instructions/InstEmitSimdCrypto32.cs
+++ b/src/ARMeilleure/Instructions/InstEmitSimdCrypto32.cs
diff --git a/ARMeilleure/Instructions/InstEmitSimdCvt.cs b/src/ARMeilleure/Instructions/InstEmitSimdCvt.cs
index 652ad397..652ad397 100644
--- a/ARMeilleure/Instructions/InstEmitSimdCvt.cs
+++ b/src/ARMeilleure/Instructions/InstEmitSimdCvt.cs
diff --git a/ARMeilleure/Instructions/InstEmitSimdCvt32.cs b/src/ARMeilleure/Instructions/InstEmitSimdCvt32.cs
index 33ae83df..33ae83df 100644
--- a/ARMeilleure/Instructions/InstEmitSimdCvt32.cs
+++ b/src/ARMeilleure/Instructions/InstEmitSimdCvt32.cs
diff --git a/ARMeilleure/Instructions/InstEmitSimdHash.cs b/src/ARMeilleure/Instructions/InstEmitSimdHash.cs
index 4fb048ee..4fb048ee 100644
--- a/ARMeilleure/Instructions/InstEmitSimdHash.cs
+++ b/src/ARMeilleure/Instructions/InstEmitSimdHash.cs
diff --git a/ARMeilleure/Instructions/InstEmitSimdHash32.cs b/src/ARMeilleure/Instructions/InstEmitSimdHash32.cs
index 51334608..51334608 100644
--- a/ARMeilleure/Instructions/InstEmitSimdHash32.cs
+++ b/src/ARMeilleure/Instructions/InstEmitSimdHash32.cs
diff --git a/ARMeilleure/Instructions/InstEmitSimdHashHelper.cs b/src/ARMeilleure/Instructions/InstEmitSimdHashHelper.cs
index 23e4948d..23e4948d 100644
--- a/ARMeilleure/Instructions/InstEmitSimdHashHelper.cs
+++ b/src/ARMeilleure/Instructions/InstEmitSimdHashHelper.cs
diff --git a/ARMeilleure/Instructions/InstEmitSimdHelper.cs b/src/ARMeilleure/Instructions/InstEmitSimdHelper.cs
index c44c9b4d..c44c9b4d 100644
--- a/ARMeilleure/Instructions/InstEmitSimdHelper.cs
+++ b/src/ARMeilleure/Instructions/InstEmitSimdHelper.cs
diff --git a/ARMeilleure/Instructions/InstEmitSimdHelper32.cs b/src/ARMeilleure/Instructions/InstEmitSimdHelper32.cs
index 36d27d42..36d27d42 100644
--- a/ARMeilleure/Instructions/InstEmitSimdHelper32.cs
+++ b/src/ARMeilleure/Instructions/InstEmitSimdHelper32.cs
diff --git a/ARMeilleure/Instructions/InstEmitSimdHelper32Arm64.cs b/src/ARMeilleure/Instructions/InstEmitSimdHelper32Arm64.cs
index 98236be6..98236be6 100644
--- a/ARMeilleure/Instructions/InstEmitSimdHelper32Arm64.cs
+++ b/src/ARMeilleure/Instructions/InstEmitSimdHelper32Arm64.cs
diff --git a/ARMeilleure/Instructions/InstEmitSimdHelperArm64.cs b/src/ARMeilleure/Instructions/InstEmitSimdHelperArm64.cs
index f0d242ae..f0d242ae 100644
--- a/ARMeilleure/Instructions/InstEmitSimdHelperArm64.cs
+++ b/src/ARMeilleure/Instructions/InstEmitSimdHelperArm64.cs
diff --git a/ARMeilleure/Instructions/InstEmitSimdLogical.cs b/src/ARMeilleure/Instructions/InstEmitSimdLogical.cs
index 2bf531e6..2bf531e6 100644
--- a/ARMeilleure/Instructions/InstEmitSimdLogical.cs
+++ b/src/ARMeilleure/Instructions/InstEmitSimdLogical.cs
diff --git a/ARMeilleure/Instructions/InstEmitSimdLogical32.cs b/src/ARMeilleure/Instructions/InstEmitSimdLogical32.cs
index 68ef4ed1..68ef4ed1 100644
--- a/ARMeilleure/Instructions/InstEmitSimdLogical32.cs
+++ b/src/ARMeilleure/Instructions/InstEmitSimdLogical32.cs
diff --git a/ARMeilleure/Instructions/InstEmitSimdMemory.cs b/src/ARMeilleure/Instructions/InstEmitSimdMemory.cs
index 9b19872a..9b19872a 100644
--- a/ARMeilleure/Instructions/InstEmitSimdMemory.cs
+++ b/src/ARMeilleure/Instructions/InstEmitSimdMemory.cs
diff --git a/ARMeilleure/Instructions/InstEmitSimdMemory32.cs b/src/ARMeilleure/Instructions/InstEmitSimdMemory32.cs
index b774bd06..b774bd06 100644
--- a/ARMeilleure/Instructions/InstEmitSimdMemory32.cs
+++ b/src/ARMeilleure/Instructions/InstEmitSimdMemory32.cs
diff --git a/ARMeilleure/Instructions/InstEmitSimdMove.cs b/src/ARMeilleure/Instructions/InstEmitSimdMove.cs
index b58a32f6..b58a32f6 100644
--- a/ARMeilleure/Instructions/InstEmitSimdMove.cs
+++ b/src/ARMeilleure/Instructions/InstEmitSimdMove.cs
diff --git a/ARMeilleure/Instructions/InstEmitSimdMove32.cs b/src/ARMeilleure/Instructions/InstEmitSimdMove32.cs
index b8b91b31..b8b91b31 100644
--- a/ARMeilleure/Instructions/InstEmitSimdMove32.cs
+++ b/src/ARMeilleure/Instructions/InstEmitSimdMove32.cs
diff --git a/ARMeilleure/Instructions/InstEmitSimdShift.cs b/src/ARMeilleure/Instructions/InstEmitSimdShift.cs
index 19e41119..19e41119 100644
--- a/ARMeilleure/Instructions/InstEmitSimdShift.cs
+++ b/src/ARMeilleure/Instructions/InstEmitSimdShift.cs
diff --git a/ARMeilleure/Instructions/InstEmitSimdShift32.cs b/src/ARMeilleure/Instructions/InstEmitSimdShift32.cs
index 9ac68088..9ac68088 100644
--- a/ARMeilleure/Instructions/InstEmitSimdShift32.cs
+++ b/src/ARMeilleure/Instructions/InstEmitSimdShift32.cs
diff --git a/ARMeilleure/Instructions/InstEmitSystem.cs b/src/ARMeilleure/Instructions/InstEmitSystem.cs
index f84829aa..f84829aa 100644
--- a/ARMeilleure/Instructions/InstEmitSystem.cs
+++ b/src/ARMeilleure/Instructions/InstEmitSystem.cs
diff --git a/ARMeilleure/Instructions/InstEmitSystem32.cs b/src/ARMeilleure/Instructions/InstEmitSystem32.cs
index f2732c99..f2732c99 100644
--- a/ARMeilleure/Instructions/InstEmitSystem32.cs
+++ b/src/ARMeilleure/Instructions/InstEmitSystem32.cs
diff --git a/ARMeilleure/Instructions/InstName.cs b/src/ARMeilleure/Instructions/InstName.cs
index fd71d92e..fd71d92e 100644
--- a/ARMeilleure/Instructions/InstName.cs
+++ b/src/ARMeilleure/Instructions/InstName.cs
diff --git a/ARMeilleure/Instructions/NativeInterface.cs b/src/ARMeilleure/Instructions/NativeInterface.cs
index 2c35387a..2c35387a 100644
--- a/ARMeilleure/Instructions/NativeInterface.cs
+++ b/src/ARMeilleure/Instructions/NativeInterface.cs
diff --git a/ARMeilleure/Instructions/SoftFallback.cs b/src/ARMeilleure/Instructions/SoftFallback.cs
index 06d76a67..06d76a67 100644
--- a/ARMeilleure/Instructions/SoftFallback.cs
+++ b/src/ARMeilleure/Instructions/SoftFallback.cs
diff --git a/ARMeilleure/Instructions/SoftFloat.cs b/src/ARMeilleure/Instructions/SoftFloat.cs
index 9e3db68d..9e3db68d 100644
--- a/ARMeilleure/Instructions/SoftFloat.cs
+++ b/src/ARMeilleure/Instructions/SoftFloat.cs
diff --git a/ARMeilleure/IntermediateRepresentation/BasicBlock.cs b/src/ARMeilleure/IntermediateRepresentation/BasicBlock.cs
index 07bd8b67..07bd8b67 100644
--- a/ARMeilleure/IntermediateRepresentation/BasicBlock.cs
+++ b/src/ARMeilleure/IntermediateRepresentation/BasicBlock.cs
diff --git a/ARMeilleure/IntermediateRepresentation/BasicBlockFrequency.cs b/src/ARMeilleure/IntermediateRepresentation/BasicBlockFrequency.cs
index 96cfee35..96cfee35 100644
--- a/ARMeilleure/IntermediateRepresentation/BasicBlockFrequency.cs
+++ b/src/ARMeilleure/IntermediateRepresentation/BasicBlockFrequency.cs
diff --git a/ARMeilleure/IntermediateRepresentation/Comparison.cs b/src/ARMeilleure/IntermediateRepresentation/Comparison.cs
index 628ce105..628ce105 100644
--- a/ARMeilleure/IntermediateRepresentation/Comparison.cs
+++ b/src/ARMeilleure/IntermediateRepresentation/Comparison.cs
diff --git a/ARMeilleure/IntermediateRepresentation/IIntrusiveListNode.cs b/src/ARMeilleure/IntermediateRepresentation/IIntrusiveListNode.cs
index caa9b83f..caa9b83f 100644
--- a/ARMeilleure/IntermediateRepresentation/IIntrusiveListNode.cs
+++ b/src/ARMeilleure/IntermediateRepresentation/IIntrusiveListNode.cs
diff --git a/ARMeilleure/IntermediateRepresentation/Instruction.cs b/src/ARMeilleure/IntermediateRepresentation/Instruction.cs
index b55fe1da..b55fe1da 100644
--- a/ARMeilleure/IntermediateRepresentation/Instruction.cs
+++ b/src/ARMeilleure/IntermediateRepresentation/Instruction.cs
diff --git a/ARMeilleure/IntermediateRepresentation/Intrinsic.cs b/src/ARMeilleure/IntermediateRepresentation/Intrinsic.cs
index f5a776fa..f5a776fa 100644
--- a/ARMeilleure/IntermediateRepresentation/Intrinsic.cs
+++ b/src/ARMeilleure/IntermediateRepresentation/Intrinsic.cs
diff --git a/ARMeilleure/IntermediateRepresentation/IntrusiveList.cs b/src/ARMeilleure/IntermediateRepresentation/IntrusiveList.cs
index 184df87c..184df87c 100644
--- a/ARMeilleure/IntermediateRepresentation/IntrusiveList.cs
+++ b/src/ARMeilleure/IntermediateRepresentation/IntrusiveList.cs
diff --git a/ARMeilleure/IntermediateRepresentation/MemoryOperand.cs b/src/ARMeilleure/IntermediateRepresentation/MemoryOperand.cs
index 07d2633b..07d2633b 100644
--- a/ARMeilleure/IntermediateRepresentation/MemoryOperand.cs
+++ b/src/ARMeilleure/IntermediateRepresentation/MemoryOperand.cs
diff --git a/ARMeilleure/IntermediateRepresentation/Multiplier.cs b/src/ARMeilleure/IntermediateRepresentation/Multiplier.cs
index d6bc7d99..d6bc7d99 100644
--- a/ARMeilleure/IntermediateRepresentation/Multiplier.cs
+++ b/src/ARMeilleure/IntermediateRepresentation/Multiplier.cs
diff --git a/ARMeilleure/IntermediateRepresentation/Operand.cs b/src/ARMeilleure/IntermediateRepresentation/Operand.cs
index 9e8de3ba..9e8de3ba 100644
--- a/ARMeilleure/IntermediateRepresentation/Operand.cs
+++ b/src/ARMeilleure/IntermediateRepresentation/Operand.cs
diff --git a/ARMeilleure/IntermediateRepresentation/OperandKind.cs b/src/ARMeilleure/IntermediateRepresentation/OperandKind.cs
index adb83561..adb83561 100644
--- a/ARMeilleure/IntermediateRepresentation/OperandKind.cs
+++ b/src/ARMeilleure/IntermediateRepresentation/OperandKind.cs
diff --git a/ARMeilleure/IntermediateRepresentation/OperandType.cs b/src/ARMeilleure/IntermediateRepresentation/OperandType.cs
index 81b22cf5..81b22cf5 100644
--- a/ARMeilleure/IntermediateRepresentation/OperandType.cs
+++ b/src/ARMeilleure/IntermediateRepresentation/OperandType.cs
diff --git a/ARMeilleure/IntermediateRepresentation/Operation.cs b/src/ARMeilleure/IntermediateRepresentation/Operation.cs
index c71e143c..c71e143c 100644
--- a/ARMeilleure/IntermediateRepresentation/Operation.cs
+++ b/src/ARMeilleure/IntermediateRepresentation/Operation.cs
diff --git a/ARMeilleure/IntermediateRepresentation/PhiOperation.cs b/src/ARMeilleure/IntermediateRepresentation/PhiOperation.cs
index d2a3cf21..d2a3cf21 100644
--- a/ARMeilleure/IntermediateRepresentation/PhiOperation.cs
+++ b/src/ARMeilleure/IntermediateRepresentation/PhiOperation.cs
diff --git a/ARMeilleure/IntermediateRepresentation/Register.cs b/src/ARMeilleure/IntermediateRepresentation/Register.cs
index 241e4d13..241e4d13 100644
--- a/ARMeilleure/IntermediateRepresentation/Register.cs
+++ b/src/ARMeilleure/IntermediateRepresentation/Register.cs
diff --git a/ARMeilleure/IntermediateRepresentation/RegisterType.cs b/src/ARMeilleure/IntermediateRepresentation/RegisterType.cs
index 88ac6c12..88ac6c12 100644
--- a/ARMeilleure/IntermediateRepresentation/RegisterType.cs
+++ b/src/ARMeilleure/IntermediateRepresentation/RegisterType.cs
diff --git a/ARMeilleure/Memory/IJitMemoryAllocator.cs b/src/ARMeilleure/Memory/IJitMemoryAllocator.cs
index 19b696b0..19b696b0 100644
--- a/ARMeilleure/Memory/IJitMemoryAllocator.cs
+++ b/src/ARMeilleure/Memory/IJitMemoryAllocator.cs
diff --git a/ARMeilleure/Memory/IJitMemoryBlock.cs b/src/ARMeilleure/Memory/IJitMemoryBlock.cs
index 670f2862..670f2862 100644
--- a/ARMeilleure/Memory/IJitMemoryBlock.cs
+++ b/src/ARMeilleure/Memory/IJitMemoryBlock.cs
diff --git a/ARMeilleure/Memory/IMemoryManager.cs b/src/ARMeilleure/Memory/IMemoryManager.cs
index 5eb1fadd..5eb1fadd 100644
--- a/ARMeilleure/Memory/IMemoryManager.cs
+++ b/src/ARMeilleure/Memory/IMemoryManager.cs
diff --git a/ARMeilleure/Memory/InvalidAccessException.cs b/src/ARMeilleure/Memory/InvalidAccessException.cs
index ad540719..ad540719 100644
--- a/ARMeilleure/Memory/InvalidAccessException.cs
+++ b/src/ARMeilleure/Memory/InvalidAccessException.cs
diff --git a/ARMeilleure/Memory/MemoryManagerType.cs b/src/ARMeilleure/Memory/MemoryManagerType.cs
index ce84ccaf..ce84ccaf 100644
--- a/ARMeilleure/Memory/MemoryManagerType.cs
+++ b/src/ARMeilleure/Memory/MemoryManagerType.cs
diff --git a/ARMeilleure/Memory/ReservedRegion.cs b/src/ARMeilleure/Memory/ReservedRegion.cs
index 2197afad..2197afad 100644
--- a/ARMeilleure/Memory/ReservedRegion.cs
+++ b/src/ARMeilleure/Memory/ReservedRegion.cs
diff --git a/ARMeilleure/Native/JitSupportDarwin.cs b/src/ARMeilleure/Native/JitSupportDarwin.cs
index 7d6a8634..7d6a8634 100644
--- a/ARMeilleure/Native/JitSupportDarwin.cs
+++ b/src/ARMeilleure/Native/JitSupportDarwin.cs
diff --git a/ARMeilleure/Native/libs/libarmeilleure-jitsupport.dylib b/src/ARMeilleure/Native/libs/libarmeilleure-jitsupport.dylib
index c65b0a4e..c65b0a4e 100644
--- a/ARMeilleure/Native/libs/libarmeilleure-jitsupport.dylib
+++ b/src/ARMeilleure/Native/libs/libarmeilleure-jitsupport.dylib
Binary files differ
diff --git a/ARMeilleure/Native/macos_jit_support/Makefile b/src/ARMeilleure/Native/macos_jit_support/Makefile
index d6da35d5..d6da35d5 100644
--- a/ARMeilleure/Native/macos_jit_support/Makefile
+++ b/src/ARMeilleure/Native/macos_jit_support/Makefile
diff --git a/ARMeilleure/Native/macos_jit_support/support.c b/src/ARMeilleure/Native/macos_jit_support/support.c
index 1b13d906..1b13d906 100644
--- a/ARMeilleure/Native/macos_jit_support/support.c
+++ b/src/ARMeilleure/Native/macos_jit_support/support.c
diff --git a/ARMeilleure/Optimizations.cs b/src/ARMeilleure/Optimizations.cs
index a84a4dc4..a84a4dc4 100644
--- a/ARMeilleure/Optimizations.cs
+++ b/src/ARMeilleure/Optimizations.cs
diff --git a/ARMeilleure/Signal/NativeSignalHandler.cs b/src/ARMeilleure/Signal/NativeSignalHandler.cs
index cddeb817..cddeb817 100644
--- a/ARMeilleure/Signal/NativeSignalHandler.cs
+++ b/src/ARMeilleure/Signal/NativeSignalHandler.cs
diff --git a/ARMeilleure/Signal/TestMethods.cs b/src/ARMeilleure/Signal/TestMethods.cs
index e2ecad24..e2ecad24 100644
--- a/ARMeilleure/Signal/TestMethods.cs
+++ b/src/ARMeilleure/Signal/TestMethods.cs
diff --git a/ARMeilleure/Signal/UnixSignalHandlerRegistration.cs b/src/ARMeilleure/Signal/UnixSignalHandlerRegistration.cs
index 22009240..22009240 100644
--- a/ARMeilleure/Signal/UnixSignalHandlerRegistration.cs
+++ b/src/ARMeilleure/Signal/UnixSignalHandlerRegistration.cs
diff --git a/ARMeilleure/Signal/WindowsPartialUnmapHandler.cs b/src/ARMeilleure/Signal/WindowsPartialUnmapHandler.cs
index 941e36e5..941e36e5 100644
--- a/ARMeilleure/Signal/WindowsPartialUnmapHandler.cs
+++ b/src/ARMeilleure/Signal/WindowsPartialUnmapHandler.cs
diff --git a/ARMeilleure/Signal/WindowsSignalHandlerRegistration.cs b/src/ARMeilleure/Signal/WindowsSignalHandlerRegistration.cs
index 3219e015..3219e015 100644
--- a/ARMeilleure/Signal/WindowsSignalHandlerRegistration.cs
+++ b/src/ARMeilleure/Signal/WindowsSignalHandlerRegistration.cs
diff --git a/ARMeilleure/State/Aarch32Mode.cs b/src/ARMeilleure/State/Aarch32Mode.cs
index 395e288a..395e288a 100644
--- a/ARMeilleure/State/Aarch32Mode.cs
+++ b/src/ARMeilleure/State/Aarch32Mode.cs
diff --git a/ARMeilleure/State/ExceptionCallback.cs b/src/ARMeilleure/State/ExceptionCallback.cs
index 38d6eef7..38d6eef7 100644
--- a/ARMeilleure/State/ExceptionCallback.cs
+++ b/src/ARMeilleure/State/ExceptionCallback.cs
diff --git a/ARMeilleure/State/ExecutionContext.cs b/src/ARMeilleure/State/ExecutionContext.cs
index 859fb3a5..859fb3a5 100644
--- a/ARMeilleure/State/ExecutionContext.cs
+++ b/src/ARMeilleure/State/ExecutionContext.cs
diff --git a/ARMeilleure/State/ExecutionMode.cs b/src/ARMeilleure/State/ExecutionMode.cs
index 29154a25..29154a25 100644
--- a/ARMeilleure/State/ExecutionMode.cs
+++ b/src/ARMeilleure/State/ExecutionMode.cs
diff --git a/ARMeilleure/State/FPCR.cs b/src/ARMeilleure/State/FPCR.cs
index 6f707de7..6f707de7 100644
--- a/ARMeilleure/State/FPCR.cs
+++ b/src/ARMeilleure/State/FPCR.cs
diff --git a/ARMeilleure/State/FPException.cs b/src/ARMeilleure/State/FPException.cs
index e24e07af..e24e07af 100644
--- a/ARMeilleure/State/FPException.cs
+++ b/src/ARMeilleure/State/FPException.cs
diff --git a/ARMeilleure/State/FPRoundingMode.cs b/src/ARMeilleure/State/FPRoundingMode.cs
index 8d757a15..8d757a15 100644
--- a/ARMeilleure/State/FPRoundingMode.cs
+++ b/src/ARMeilleure/State/FPRoundingMode.cs
diff --git a/ARMeilleure/State/FPSCR.cs b/src/ARMeilleure/State/FPSCR.cs
index d6d2fc26..d6d2fc26 100644
--- a/ARMeilleure/State/FPSCR.cs
+++ b/src/ARMeilleure/State/FPSCR.cs
diff --git a/ARMeilleure/State/FPSR.cs b/src/ARMeilleure/State/FPSR.cs
index 5e66d5ce..5e66d5ce 100644
--- a/ARMeilleure/State/FPSR.cs
+++ b/src/ARMeilleure/State/FPSR.cs
diff --git a/ARMeilleure/State/FPState.cs b/src/ARMeilleure/State/FPState.cs
index fa6ab9d4..fa6ab9d4 100644
--- a/ARMeilleure/State/FPState.cs
+++ b/src/ARMeilleure/State/FPState.cs
diff --git a/ARMeilleure/State/FPType.cs b/src/ARMeilleure/State/FPType.cs
index 84e0db8d..84e0db8d 100644
--- a/ARMeilleure/State/FPType.cs
+++ b/src/ARMeilleure/State/FPType.cs
diff --git a/ARMeilleure/State/ICounter.cs b/src/ARMeilleure/State/ICounter.cs
index 93e721ea..93e721ea 100644
--- a/ARMeilleure/State/ICounter.cs
+++ b/src/ARMeilleure/State/ICounter.cs
diff --git a/ARMeilleure/State/NativeContext.cs b/src/ARMeilleure/State/NativeContext.cs
index 3189bdd8..3189bdd8 100644
--- a/ARMeilleure/State/NativeContext.cs
+++ b/src/ARMeilleure/State/NativeContext.cs
diff --git a/ARMeilleure/State/PState.cs b/src/ARMeilleure/State/PState.cs
index 9a80bc57..9a80bc57 100644
--- a/ARMeilleure/State/PState.cs
+++ b/src/ARMeilleure/State/PState.cs
diff --git a/ARMeilleure/State/RegisterAlias.cs b/src/ARMeilleure/State/RegisterAlias.cs
index 7ebfa275..7ebfa275 100644
--- a/ARMeilleure/State/RegisterAlias.cs
+++ b/src/ARMeilleure/State/RegisterAlias.cs
diff --git a/ARMeilleure/State/RegisterConsts.cs b/src/ARMeilleure/State/RegisterConsts.cs
index d6294080..d6294080 100644
--- a/ARMeilleure/State/RegisterConsts.cs
+++ b/src/ARMeilleure/State/RegisterConsts.cs
diff --git a/ARMeilleure/State/V128.cs b/src/ARMeilleure/State/V128.cs
index 3fa9f9a9..3fa9f9a9 100644
--- a/ARMeilleure/State/V128.cs
+++ b/src/ARMeilleure/State/V128.cs
diff --git a/ARMeilleure/Statistics.cs b/src/ARMeilleure/Statistics.cs
index fbc64708..fbc64708 100644
--- a/ARMeilleure/Statistics.cs
+++ b/src/ARMeilleure/Statistics.cs
diff --git a/ARMeilleure/Translation/ArmEmitterContext.cs b/src/ARMeilleure/Translation/ArmEmitterContext.cs
index 565d2aad..565d2aad 100644
--- a/ARMeilleure/Translation/ArmEmitterContext.cs
+++ b/src/ARMeilleure/Translation/ArmEmitterContext.cs
diff --git a/ARMeilleure/Translation/Cache/CacheEntry.cs b/src/ARMeilleure/Translation/Cache/CacheEntry.cs
index dc5503b1..dc5503b1 100644
--- a/ARMeilleure/Translation/Cache/CacheEntry.cs
+++ b/src/ARMeilleure/Translation/Cache/CacheEntry.cs
diff --git a/ARMeilleure/Translation/Cache/CacheMemoryAllocator.cs b/src/ARMeilleure/Translation/Cache/CacheMemoryAllocator.cs
index 4c22de40..4c22de40 100644
--- a/ARMeilleure/Translation/Cache/CacheMemoryAllocator.cs
+++ b/src/ARMeilleure/Translation/Cache/CacheMemoryAllocator.cs
diff --git a/ARMeilleure/Translation/Cache/JitCache.cs b/src/ARMeilleure/Translation/Cache/JitCache.cs
index f496a8e9..f496a8e9 100644
--- a/ARMeilleure/Translation/Cache/JitCache.cs
+++ b/src/ARMeilleure/Translation/Cache/JitCache.cs
diff --git a/ARMeilleure/Translation/Cache/JitCacheInvalidation.cs b/src/ARMeilleure/Translation/Cache/JitCacheInvalidation.cs
index ec2ae73b..ec2ae73b 100644
--- a/ARMeilleure/Translation/Cache/JitCacheInvalidation.cs
+++ b/src/ARMeilleure/Translation/Cache/JitCacheInvalidation.cs
diff --git a/ARMeilleure/Translation/Cache/JitUnwindWindows.cs b/src/ARMeilleure/Translation/Cache/JitUnwindWindows.cs
index 77727bf1..77727bf1 100644
--- a/ARMeilleure/Translation/Cache/JitUnwindWindows.cs
+++ b/src/ARMeilleure/Translation/Cache/JitUnwindWindows.cs
diff --git a/ARMeilleure/Translation/Compiler.cs b/src/ARMeilleure/Translation/Compiler.cs
index d4aa5cd9..d4aa5cd9 100644
--- a/ARMeilleure/Translation/Compiler.cs
+++ b/src/ARMeilleure/Translation/Compiler.cs
diff --git a/ARMeilleure/Translation/CompilerContext.cs b/src/ARMeilleure/Translation/CompilerContext.cs
index 510dec58..510dec58 100644
--- a/ARMeilleure/Translation/CompilerContext.cs
+++ b/src/ARMeilleure/Translation/CompilerContext.cs
diff --git a/ARMeilleure/Translation/CompilerOptions.cs b/src/ARMeilleure/Translation/CompilerOptions.cs
index 0a07ed4a..0a07ed4a 100644
--- a/ARMeilleure/Translation/CompilerOptions.cs
+++ b/src/ARMeilleure/Translation/CompilerOptions.cs
diff --git a/ARMeilleure/Translation/ControlFlowGraph.cs b/src/ARMeilleure/Translation/ControlFlowGraph.cs
index c935f152..c935f152 100644
--- a/ARMeilleure/Translation/ControlFlowGraph.cs
+++ b/src/ARMeilleure/Translation/ControlFlowGraph.cs
diff --git a/ARMeilleure/Translation/DelegateHelper.cs b/src/ARMeilleure/Translation/DelegateHelper.cs
index 43a39bab..43a39bab 100644
--- a/ARMeilleure/Translation/DelegateHelper.cs
+++ b/src/ARMeilleure/Translation/DelegateHelper.cs
diff --git a/ARMeilleure/Translation/DelegateInfo.cs b/src/ARMeilleure/Translation/DelegateInfo.cs
index 36320ac3..36320ac3 100644
--- a/ARMeilleure/Translation/DelegateInfo.cs
+++ b/src/ARMeilleure/Translation/DelegateInfo.cs
diff --git a/ARMeilleure/Translation/Delegates.cs b/src/ARMeilleure/Translation/Delegates.cs
index 55f1e514..55f1e514 100644
--- a/ARMeilleure/Translation/Delegates.cs
+++ b/src/ARMeilleure/Translation/Delegates.cs
diff --git a/ARMeilleure/Translation/DispatcherFunction.cs b/src/ARMeilleure/Translation/DispatcherFunction.cs
index 7d5a3388..7d5a3388 100644
--- a/ARMeilleure/Translation/DispatcherFunction.cs
+++ b/src/ARMeilleure/Translation/DispatcherFunction.cs
diff --git a/ARMeilleure/Translation/Dominance.cs b/src/ARMeilleure/Translation/Dominance.cs
index b9b961d1..b9b961d1 100644
--- a/ARMeilleure/Translation/Dominance.cs
+++ b/src/ARMeilleure/Translation/Dominance.cs
diff --git a/ARMeilleure/Translation/EmitterContext.cs b/src/ARMeilleure/Translation/EmitterContext.cs
index 8fcb4dee..8fcb4dee 100644
--- a/ARMeilleure/Translation/EmitterContext.cs
+++ b/src/ARMeilleure/Translation/EmitterContext.cs
diff --git a/ARMeilleure/Translation/GuestFunction.cs b/src/ARMeilleure/Translation/GuestFunction.cs
index ac131a0d..ac131a0d 100644
--- a/ARMeilleure/Translation/GuestFunction.cs
+++ b/src/ARMeilleure/Translation/GuestFunction.cs
diff --git a/ARMeilleure/Translation/IntervalTree.cs b/src/ARMeilleure/Translation/IntervalTree.cs
index 9af01bea..9af01bea 100644
--- a/ARMeilleure/Translation/IntervalTree.cs
+++ b/src/ARMeilleure/Translation/IntervalTree.cs
diff --git a/ARMeilleure/Translation/PTC/EncodingCache.cs b/src/ARMeilleure/Translation/PTC/EncodingCache.cs
index 90d40c47..90d40c47 100644
--- a/ARMeilleure/Translation/PTC/EncodingCache.cs
+++ b/src/ARMeilleure/Translation/PTC/EncodingCache.cs
diff --git a/ARMeilleure/Translation/PTC/IPtcLoadState.cs b/src/ARMeilleure/Translation/PTC/IPtcLoadState.cs
index 1b11ac0b..1b11ac0b 100644
--- a/ARMeilleure/Translation/PTC/IPtcLoadState.cs
+++ b/src/ARMeilleure/Translation/PTC/IPtcLoadState.cs
diff --git a/ARMeilleure/Translation/PTC/Ptc.cs b/src/ARMeilleure/Translation/PTC/Ptc.cs
index ea4e715b..ea4e715b 100644
--- a/ARMeilleure/Translation/PTC/Ptc.cs
+++ b/src/ARMeilleure/Translation/PTC/Ptc.cs
diff --git a/ARMeilleure/Translation/PTC/PtcFormatter.cs b/src/ARMeilleure/Translation/PTC/PtcFormatter.cs
index 2f7a9c21..2f7a9c21 100644
--- a/ARMeilleure/Translation/PTC/PtcFormatter.cs
+++ b/src/ARMeilleure/Translation/PTC/PtcFormatter.cs
diff --git a/ARMeilleure/Translation/PTC/PtcLoadingState.cs b/src/ARMeilleure/Translation/PTC/PtcLoadingState.cs
index 526cf91f..526cf91f 100644
--- a/ARMeilleure/Translation/PTC/PtcLoadingState.cs
+++ b/src/ARMeilleure/Translation/PTC/PtcLoadingState.cs
diff --git a/ARMeilleure/Translation/PTC/PtcProfiler.cs b/src/ARMeilleure/Translation/PTC/PtcProfiler.cs
index 391e29c7..391e29c7 100644
--- a/ARMeilleure/Translation/PTC/PtcProfiler.cs
+++ b/src/ARMeilleure/Translation/PTC/PtcProfiler.cs
diff --git a/ARMeilleure/Translation/PTC/PtcState.cs b/src/ARMeilleure/Translation/PTC/PtcState.cs
index ca4f4108..ca4f4108 100644
--- a/ARMeilleure/Translation/PTC/PtcState.cs
+++ b/src/ARMeilleure/Translation/PTC/PtcState.cs
diff --git a/ARMeilleure/Translation/RegisterToLocal.cs b/src/ARMeilleure/Translation/RegisterToLocal.cs
index abb9b373..abb9b373 100644
--- a/ARMeilleure/Translation/RegisterToLocal.cs
+++ b/src/ARMeilleure/Translation/RegisterToLocal.cs
diff --git a/ARMeilleure/Translation/RegisterUsage.cs b/src/ARMeilleure/Translation/RegisterUsage.cs
index 3ec0a7b4..3ec0a7b4 100644
--- a/ARMeilleure/Translation/RegisterUsage.cs
+++ b/src/ARMeilleure/Translation/RegisterUsage.cs
diff --git a/ARMeilleure/Translation/RejitRequest.cs b/src/ARMeilleure/Translation/RejitRequest.cs
index 1bed5c0a..1bed5c0a 100644
--- a/ARMeilleure/Translation/RejitRequest.cs
+++ b/src/ARMeilleure/Translation/RejitRequest.cs
diff --git a/ARMeilleure/Translation/SsaConstruction.cs b/src/ARMeilleure/Translation/SsaConstruction.cs
index 2b6efc11..2b6efc11 100644
--- a/ARMeilleure/Translation/SsaConstruction.cs
+++ b/src/ARMeilleure/Translation/SsaConstruction.cs
diff --git a/ARMeilleure/Translation/SsaDeconstruction.cs b/src/ARMeilleure/Translation/SsaDeconstruction.cs
index cd6bcca1..cd6bcca1 100644
--- a/ARMeilleure/Translation/SsaDeconstruction.cs
+++ b/src/ARMeilleure/Translation/SsaDeconstruction.cs
diff --git a/ARMeilleure/Translation/TranslatedFunction.cs b/src/ARMeilleure/Translation/TranslatedFunction.cs
index f007883e..f007883e 100644
--- a/ARMeilleure/Translation/TranslatedFunction.cs
+++ b/src/ARMeilleure/Translation/TranslatedFunction.cs
diff --git a/ARMeilleure/Translation/Translator.cs b/src/ARMeilleure/Translation/Translator.cs
index f349c5eb..f349c5eb 100644
--- a/ARMeilleure/Translation/Translator.cs
+++ b/src/ARMeilleure/Translation/Translator.cs
diff --git a/ARMeilleure/Translation/TranslatorCache.cs b/src/ARMeilleure/Translation/TranslatorCache.cs
index 11286381..11286381 100644
--- a/ARMeilleure/Translation/TranslatorCache.cs
+++ b/src/ARMeilleure/Translation/TranslatorCache.cs
diff --git a/ARMeilleure/Translation/TranslatorQueue.cs b/src/ARMeilleure/Translation/TranslatorQueue.cs
index fc0aa64f..fc0aa64f 100644
--- a/ARMeilleure/Translation/TranslatorQueue.cs
+++ b/src/ARMeilleure/Translation/TranslatorQueue.cs
diff --git a/ARMeilleure/Translation/TranslatorStubs.cs b/src/ARMeilleure/Translation/TranslatorStubs.cs
index 69648df4..69648df4 100644
--- a/ARMeilleure/Translation/TranslatorStubs.cs
+++ b/src/ARMeilleure/Translation/TranslatorStubs.cs
diff --git a/ARMeilleure/Translation/TranslatorTestMethods.cs b/src/ARMeilleure/Translation/TranslatorTestMethods.cs
index ab96019a..ab96019a 100644
--- a/ARMeilleure/Translation/TranslatorTestMethods.cs
+++ b/src/ARMeilleure/Translation/TranslatorTestMethods.cs
diff --git a/Ryujinx.Audio.Backends.OpenAL/OpenALAudioBuffer.cs b/src/Ryujinx.Audio.Backends.OpenAL/OpenALAudioBuffer.cs
index 050b52a9..050b52a9 100644
--- a/Ryujinx.Audio.Backends.OpenAL/OpenALAudioBuffer.cs
+++ b/src/Ryujinx.Audio.Backends.OpenAL/OpenALAudioBuffer.cs
diff --git a/Ryujinx.Audio.Backends.OpenAL/OpenALHardwareDeviceDriver.cs b/src/Ryujinx.Audio.Backends.OpenAL/OpenALHardwareDeviceDriver.cs
index 0c793f24..0c793f24 100644
--- a/Ryujinx.Audio.Backends.OpenAL/OpenALHardwareDeviceDriver.cs
+++ b/src/Ryujinx.Audio.Backends.OpenAL/OpenALHardwareDeviceDriver.cs
diff --git a/Ryujinx.Audio.Backends.OpenAL/OpenALHardwareDeviceSession.cs b/src/Ryujinx.Audio.Backends.OpenAL/OpenALHardwareDeviceSession.cs
index ac3319e0..ac3319e0 100644
--- a/Ryujinx.Audio.Backends.OpenAL/OpenALHardwareDeviceSession.cs
+++ b/src/Ryujinx.Audio.Backends.OpenAL/OpenALHardwareDeviceSession.cs
diff --git a/Ryujinx.Audio.Backends.OpenAL/Ryujinx.Audio.Backends.OpenAL.csproj b/src/Ryujinx.Audio.Backends.OpenAL/Ryujinx.Audio.Backends.OpenAL.csproj
index 115a3760..115a3760 100644
--- a/Ryujinx.Audio.Backends.OpenAL/Ryujinx.Audio.Backends.OpenAL.csproj
+++ b/src/Ryujinx.Audio.Backends.OpenAL/Ryujinx.Audio.Backends.OpenAL.csproj
diff --git a/Ryujinx.Audio.Backends.SDL2/Ryujinx.Audio.Backends.SDL2.csproj b/src/Ryujinx.Audio.Backends.SDL2/Ryujinx.Audio.Backends.SDL2.csproj
index 525f1f5b..525f1f5b 100644
--- a/Ryujinx.Audio.Backends.SDL2/Ryujinx.Audio.Backends.SDL2.csproj
+++ b/src/Ryujinx.Audio.Backends.SDL2/Ryujinx.Audio.Backends.SDL2.csproj
diff --git a/Ryujinx.Audio.Backends.SDL2/SDL2AudioBuffer.cs b/src/Ryujinx.Audio.Backends.SDL2/SDL2AudioBuffer.cs
index 71ef414a..71ef414a 100644
--- a/Ryujinx.Audio.Backends.SDL2/SDL2AudioBuffer.cs
+++ b/src/Ryujinx.Audio.Backends.SDL2/SDL2AudioBuffer.cs
diff --git a/Ryujinx.Audio.Backends.SDL2/SDL2HardwareDeviceDriver.cs b/src/Ryujinx.Audio.Backends.SDL2/SDL2HardwareDeviceDriver.cs
index b190b4c8..b190b4c8 100644
--- a/Ryujinx.Audio.Backends.SDL2/SDL2HardwareDeviceDriver.cs
+++ b/src/Ryujinx.Audio.Backends.SDL2/SDL2HardwareDeviceDriver.cs
diff --git a/Ryujinx.Audio.Backends.SDL2/SDL2HardwareDeviceSession.cs b/src/Ryujinx.Audio.Backends.SDL2/SDL2HardwareDeviceSession.cs
index 14310b93..14310b93 100644
--- a/Ryujinx.Audio.Backends.SDL2/SDL2HardwareDeviceSession.cs
+++ b/src/Ryujinx.Audio.Backends.SDL2/SDL2HardwareDeviceSession.cs
diff --git a/Ryujinx.Audio.Backends.SoundIo/Native/SoundIo.cs b/src/Ryujinx.Audio.Backends.SoundIo/Native/SoundIo.cs
index 9c3e686d..9c3e686d 100644
--- a/Ryujinx.Audio.Backends.SoundIo/Native/SoundIo.cs
+++ b/src/Ryujinx.Audio.Backends.SoundIo/Native/SoundIo.cs
diff --git a/Ryujinx.Audio.Backends.SoundIo/Native/SoundIoBackend.cs b/src/Ryujinx.Audio.Backends.SoundIo/Native/SoundIoBackend.cs
index 92f8ea37..92f8ea37 100644
--- a/Ryujinx.Audio.Backends.SoundIo/Native/SoundIoBackend.cs
+++ b/src/Ryujinx.Audio.Backends.SoundIo/Native/SoundIoBackend.cs
diff --git a/Ryujinx.Audio.Backends.SoundIo/Native/SoundIoChannelId.cs b/src/Ryujinx.Audio.Backends.SoundIo/Native/SoundIoChannelId.cs
index 70346e0b..70346e0b 100644
--- a/Ryujinx.Audio.Backends.SoundIo/Native/SoundIoChannelId.cs
+++ b/src/Ryujinx.Audio.Backends.SoundIo/Native/SoundIoChannelId.cs
diff --git a/Ryujinx.Audio.Backends.SoundIo/Native/SoundIoContext.cs b/src/Ryujinx.Audio.Backends.SoundIo/Native/SoundIoContext.cs
index 3744c2e6..3744c2e6 100644
--- a/Ryujinx.Audio.Backends.SoundIo/Native/SoundIoContext.cs
+++ b/src/Ryujinx.Audio.Backends.SoundIo/Native/SoundIoContext.cs
diff --git a/Ryujinx.Audio.Backends.SoundIo/Native/SoundIoDeviceAim.cs b/src/Ryujinx.Audio.Backends.SoundIo/Native/SoundIoDeviceAim.cs
index a0689d6d..a0689d6d 100644
--- a/Ryujinx.Audio.Backends.SoundIo/Native/SoundIoDeviceAim.cs
+++ b/src/Ryujinx.Audio.Backends.SoundIo/Native/SoundIoDeviceAim.cs
diff --git a/Ryujinx.Audio.Backends.SoundIo/Native/SoundIoDeviceContext.cs b/src/Ryujinx.Audio.Backends.SoundIo/Native/SoundIoDeviceContext.cs
index 42bcc6e3..42bcc6e3 100644
--- a/Ryujinx.Audio.Backends.SoundIo/Native/SoundIoDeviceContext.cs
+++ b/src/Ryujinx.Audio.Backends.SoundIo/Native/SoundIoDeviceContext.cs
diff --git a/Ryujinx.Audio.Backends.SoundIo/Native/SoundIoError.cs b/src/Ryujinx.Audio.Backends.SoundIo/Native/SoundIoError.cs
index 9e33fa19..9e33fa19 100644
--- a/Ryujinx.Audio.Backends.SoundIo/Native/SoundIoError.cs
+++ b/src/Ryujinx.Audio.Backends.SoundIo/Native/SoundIoError.cs
diff --git a/Ryujinx.Audio.Backends.SoundIo/Native/SoundIoException.cs b/src/Ryujinx.Audio.Backends.SoundIo/Native/SoundIoException.cs
index a033356e..a033356e 100644
--- a/Ryujinx.Audio.Backends.SoundIo/Native/SoundIoException.cs
+++ b/src/Ryujinx.Audio.Backends.SoundIo/Native/SoundIoException.cs
diff --git a/Ryujinx.Audio.Backends.SoundIo/Native/SoundIoFormat.cs b/src/Ryujinx.Audio.Backends.SoundIo/Native/SoundIoFormat.cs
index 0eee9780..0eee9780 100644
--- a/Ryujinx.Audio.Backends.SoundIo/Native/SoundIoFormat.cs
+++ b/src/Ryujinx.Audio.Backends.SoundIo/Native/SoundIoFormat.cs
diff --git a/Ryujinx.Audio.Backends.SoundIo/Native/SoundIoOutStreamContext.cs b/src/Ryujinx.Audio.Backends.SoundIo/Native/SoundIoOutStreamContext.cs
index 2e432b31..2e432b31 100644
--- a/Ryujinx.Audio.Backends.SoundIo/Native/SoundIoOutStreamContext.cs
+++ b/src/Ryujinx.Audio.Backends.SoundIo/Native/SoundIoOutStreamContext.cs
diff --git a/Ryujinx.Audio.Backends.SoundIo/Native/libsoundio/libs/libsoundio.dll b/src/Ryujinx.Audio.Backends.SoundIo/Native/libsoundio/libs/libsoundio.dll
index 48804312..48804312 100644
--- a/Ryujinx.Audio.Backends.SoundIo/Native/libsoundio/libs/libsoundio.dll
+++ b/src/Ryujinx.Audio.Backends.SoundIo/Native/libsoundio/libs/libsoundio.dll
Binary files differ
diff --git a/Ryujinx.Audio.Backends.SoundIo/Native/libsoundio/libs/libsoundio.dylib b/src/Ryujinx.Audio.Backends.SoundIo/Native/libsoundio/libs/libsoundio.dylib
index 10171f4f..10171f4f 100644
--- a/Ryujinx.Audio.Backends.SoundIo/Native/libsoundio/libs/libsoundio.dylib
+++ b/src/Ryujinx.Audio.Backends.SoundIo/Native/libsoundio/libs/libsoundio.dylib
Binary files differ
diff --git a/Ryujinx.Audio.Backends.SoundIo/Native/libsoundio/libs/libsoundio.so b/src/Ryujinx.Audio.Backends.SoundIo/Native/libsoundio/libs/libsoundio.so
index 87c8b506..87c8b506 100644
--- a/Ryujinx.Audio.Backends.SoundIo/Native/libsoundio/libs/libsoundio.so
+++ b/src/Ryujinx.Audio.Backends.SoundIo/Native/libsoundio/libs/libsoundio.so
Binary files differ
diff --git a/Ryujinx.Audio.Backends.SoundIo/Ryujinx.Audio.Backends.SoundIo.csproj b/src/Ryujinx.Audio.Backends.SoundIo/Ryujinx.Audio.Backends.SoundIo.csproj
index 9f242dbe..9f242dbe 100644
--- a/Ryujinx.Audio.Backends.SoundIo/Ryujinx.Audio.Backends.SoundIo.csproj
+++ b/src/Ryujinx.Audio.Backends.SoundIo/Ryujinx.Audio.Backends.SoundIo.csproj
diff --git a/Ryujinx.Audio.Backends.SoundIo/SoundIoAudioBuffer.cs b/src/Ryujinx.Audio.Backends.SoundIo/SoundIoAudioBuffer.cs
index 7f32b953..7f32b953 100644
--- a/Ryujinx.Audio.Backends.SoundIo/SoundIoAudioBuffer.cs
+++ b/src/Ryujinx.Audio.Backends.SoundIo/SoundIoAudioBuffer.cs
diff --git a/Ryujinx.Audio.Backends.SoundIo/SoundIoHardwareDeviceDriver.cs b/src/Ryujinx.Audio.Backends.SoundIo/SoundIoHardwareDeviceDriver.cs
index 02da2776..02da2776 100644
--- a/Ryujinx.Audio.Backends.SoundIo/SoundIoHardwareDeviceDriver.cs
+++ b/src/Ryujinx.Audio.Backends.SoundIo/SoundIoHardwareDeviceDriver.cs
diff --git a/Ryujinx.Audio.Backends.SoundIo/SoundIoHardwareDeviceSession.cs b/src/Ryujinx.Audio.Backends.SoundIo/SoundIoHardwareDeviceSession.cs
index 96d9ce97..96d9ce97 100644
--- a/Ryujinx.Audio.Backends.SoundIo/SoundIoHardwareDeviceSession.cs
+++ b/src/Ryujinx.Audio.Backends.SoundIo/SoundIoHardwareDeviceSession.cs
diff --git a/Ryujinx.Audio/AudioManager.cs b/src/Ryujinx.Audio/AudioManager.cs
index c37ca4a3..c37ca4a3 100644
--- a/Ryujinx.Audio/AudioManager.cs
+++ b/src/Ryujinx.Audio/AudioManager.cs
diff --git a/Ryujinx.Audio/Backends/Common/BackendHelper.cs b/src/Ryujinx.Audio/Backends/Common/BackendHelper.cs
index 30db340f..30db340f 100644
--- a/Ryujinx.Audio/Backends/Common/BackendHelper.cs
+++ b/src/Ryujinx.Audio/Backends/Common/BackendHelper.cs
diff --git a/Ryujinx.Audio/Backends/Common/DynamicRingBuffer.cs b/src/Ryujinx.Audio/Backends/Common/DynamicRingBuffer.cs
index 9bf20d4b..9bf20d4b 100644
--- a/Ryujinx.Audio/Backends/Common/DynamicRingBuffer.cs
+++ b/src/Ryujinx.Audio/Backends/Common/DynamicRingBuffer.cs
diff --git a/Ryujinx.Audio/Backends/Common/HardwareDeviceSessionOutputBase.cs b/src/Ryujinx.Audio/Backends/Common/HardwareDeviceSessionOutputBase.cs
index 6fb3bee0..6fb3bee0 100644
--- a/Ryujinx.Audio/Backends/Common/HardwareDeviceSessionOutputBase.cs
+++ b/src/Ryujinx.Audio/Backends/Common/HardwareDeviceSessionOutputBase.cs
diff --git a/Ryujinx.Audio/Backends/CompatLayer/CompatLayerHardwareDeviceDriver.cs b/src/Ryujinx.Audio/Backends/CompatLayer/CompatLayerHardwareDeviceDriver.cs
index 22919f1e..22919f1e 100644
--- a/Ryujinx.Audio/Backends/CompatLayer/CompatLayerHardwareDeviceDriver.cs
+++ b/src/Ryujinx.Audio/Backends/CompatLayer/CompatLayerHardwareDeviceDriver.cs
diff --git a/Ryujinx.Audio/Backends/CompatLayer/CompatLayerHardwareDeviceSession.cs b/src/Ryujinx.Audio/Backends/CompatLayer/CompatLayerHardwareDeviceSession.cs
index f22a7a69..f22a7a69 100644
--- a/Ryujinx.Audio/Backends/CompatLayer/CompatLayerHardwareDeviceSession.cs
+++ b/src/Ryujinx.Audio/Backends/CompatLayer/CompatLayerHardwareDeviceSession.cs
diff --git a/Ryujinx.Audio/Backends/CompatLayer/Downmixing.cs b/src/Ryujinx.Audio/Backends/CompatLayer/Downmixing.cs
index 6959c158..6959c158 100644
--- a/Ryujinx.Audio/Backends/CompatLayer/Downmixing.cs
+++ b/src/Ryujinx.Audio/Backends/CompatLayer/Downmixing.cs
diff --git a/Ryujinx.Audio/Backends/Dummy/DummyHardwareDeviceDriver.cs b/src/Ryujinx.Audio/Backends/Dummy/DummyHardwareDeviceDriver.cs
index 641640f0..641640f0 100644
--- a/Ryujinx.Audio/Backends/Dummy/DummyHardwareDeviceDriver.cs
+++ b/src/Ryujinx.Audio/Backends/Dummy/DummyHardwareDeviceDriver.cs
diff --git a/Ryujinx.Audio/Backends/Dummy/DummyHardwareDeviceSessionInput.cs b/src/Ryujinx.Audio/Backends/Dummy/DummyHardwareDeviceSessionInput.cs
index 845713a1..845713a1 100644
--- a/Ryujinx.Audio/Backends/Dummy/DummyHardwareDeviceSessionInput.cs
+++ b/src/Ryujinx.Audio/Backends/Dummy/DummyHardwareDeviceSessionInput.cs
diff --git a/Ryujinx.Audio/Backends/Dummy/DummyHardwareDeviceSessionOutput.cs b/src/Ryujinx.Audio/Backends/Dummy/DummyHardwareDeviceSessionOutput.cs
index 8e2c949e..8e2c949e 100644
--- a/Ryujinx.Audio/Backends/Dummy/DummyHardwareDeviceSessionOutput.cs
+++ b/src/Ryujinx.Audio/Backends/Dummy/DummyHardwareDeviceSessionOutput.cs
diff --git a/Ryujinx.Audio/Common/AudioBuffer.cs b/src/Ryujinx.Audio/Common/AudioBuffer.cs
index b79401b7..b79401b7 100644
--- a/Ryujinx.Audio/Common/AudioBuffer.cs
+++ b/src/Ryujinx.Audio/Common/AudioBuffer.cs
diff --git a/Ryujinx.Audio/Common/AudioDeviceSession.cs b/src/Ryujinx.Audio/Common/AudioDeviceSession.cs
index 0191f7cc..0191f7cc 100644
--- a/Ryujinx.Audio/Common/AudioDeviceSession.cs
+++ b/src/Ryujinx.Audio/Common/AudioDeviceSession.cs
diff --git a/Ryujinx.Audio/Common/AudioDeviceState.cs b/src/Ryujinx.Audio/Common/AudioDeviceState.cs
index b3f968da..b3f968da 100644
--- a/Ryujinx.Audio/Common/AudioDeviceState.cs
+++ b/src/Ryujinx.Audio/Common/AudioDeviceState.cs
diff --git a/Ryujinx.Audio/Common/AudioInputConfiguration.cs b/src/Ryujinx.Audio/Common/AudioInputConfiguration.cs
index d3cfdd47..d3cfdd47 100644
--- a/Ryujinx.Audio/Common/AudioInputConfiguration.cs
+++ b/src/Ryujinx.Audio/Common/AudioInputConfiguration.cs
diff --git a/Ryujinx.Audio/Common/AudioOutputConfiguration.cs b/src/Ryujinx.Audio/Common/AudioOutputConfiguration.cs
index e17e1757..e17e1757 100644
--- a/Ryujinx.Audio/Common/AudioOutputConfiguration.cs
+++ b/src/Ryujinx.Audio/Common/AudioOutputConfiguration.cs
diff --git a/Ryujinx.Audio/Common/AudioUserBuffer.cs b/src/Ryujinx.Audio/Common/AudioUserBuffer.cs
index 50ab67fa..50ab67fa 100644
--- a/Ryujinx.Audio/Common/AudioUserBuffer.cs
+++ b/src/Ryujinx.Audio/Common/AudioUserBuffer.cs
diff --git a/Ryujinx.Audio/Common/SampleFormat.cs b/src/Ryujinx.Audio/Common/SampleFormat.cs
index 901410a2..901410a2 100644
--- a/Ryujinx.Audio/Common/SampleFormat.cs
+++ b/src/Ryujinx.Audio/Common/SampleFormat.cs
diff --git a/Ryujinx.Audio/Constants.cs b/src/Ryujinx.Audio/Constants.cs
index 7d2ffa57..7d2ffa57 100644
--- a/Ryujinx.Audio/Constants.cs
+++ b/src/Ryujinx.Audio/Constants.cs
diff --git a/Ryujinx.Audio/Input/AudioInputManager.cs b/src/Ryujinx.Audio/Input/AudioInputManager.cs
index ac012c4a..ac012c4a 100644
--- a/Ryujinx.Audio/Input/AudioInputManager.cs
+++ b/src/Ryujinx.Audio/Input/AudioInputManager.cs
diff --git a/Ryujinx.Audio/Input/AudioInputSystem.cs b/src/Ryujinx.Audio/Input/AudioInputSystem.cs
index b3ca0fd6..b3ca0fd6 100644
--- a/Ryujinx.Audio/Input/AudioInputSystem.cs
+++ b/src/Ryujinx.Audio/Input/AudioInputSystem.cs
diff --git a/Ryujinx.Audio/Integration/HardwareDeviceImpl.cs b/src/Ryujinx.Audio/Integration/HardwareDeviceImpl.cs
index 552f1ab2..552f1ab2 100644
--- a/Ryujinx.Audio/Integration/HardwareDeviceImpl.cs
+++ b/src/Ryujinx.Audio/Integration/HardwareDeviceImpl.cs
diff --git a/Ryujinx.Audio/Integration/IHardwareDevice.cs b/src/Ryujinx.Audio/Integration/IHardwareDevice.cs
index 300de8c5..300de8c5 100644
--- a/Ryujinx.Audio/Integration/IHardwareDevice.cs
+++ b/src/Ryujinx.Audio/Integration/IHardwareDevice.cs
diff --git a/Ryujinx.Audio/Integration/IHardwareDeviceDriver.cs b/src/Ryujinx.Audio/Integration/IHardwareDeviceDriver.cs
index 4ed17951..4ed17951 100644
--- a/Ryujinx.Audio/Integration/IHardwareDeviceDriver.cs
+++ b/src/Ryujinx.Audio/Integration/IHardwareDeviceDriver.cs
diff --git a/Ryujinx.Audio/Integration/IHardwareDeviceSession.cs b/src/Ryujinx.Audio/Integration/IHardwareDeviceSession.cs
index 400daec0..400daec0 100644
--- a/Ryujinx.Audio/Integration/IHardwareDeviceSession.cs
+++ b/src/Ryujinx.Audio/Integration/IHardwareDeviceSession.cs
diff --git a/Ryujinx.Audio/Integration/IWritableEvent.cs b/src/Ryujinx.Audio/Integration/IWritableEvent.cs
index 9a12e3d2..9a12e3d2 100644
--- a/Ryujinx.Audio/Integration/IWritableEvent.cs
+++ b/src/Ryujinx.Audio/Integration/IWritableEvent.cs
diff --git a/Ryujinx.Audio/Output/AudioOutputManager.cs b/src/Ryujinx.Audio/Output/AudioOutputManager.cs
index 8c21f76a..8c21f76a 100644
--- a/Ryujinx.Audio/Output/AudioOutputManager.cs
+++ b/src/Ryujinx.Audio/Output/AudioOutputManager.cs
diff --git a/Ryujinx.Audio/Output/AudioOutputSystem.cs b/src/Ryujinx.Audio/Output/AudioOutputSystem.cs
index 93df87aa..93df87aa 100644
--- a/Ryujinx.Audio/Output/AudioOutputSystem.cs
+++ b/src/Ryujinx.Audio/Output/AudioOutputSystem.cs
diff --git a/Ryujinx.Audio/Renderer/Common/AuxiliaryBufferAddresses.cs b/src/Ryujinx.Audio/Renderer/Common/AuxiliaryBufferAddresses.cs
index 96647405..96647405 100644
--- a/Ryujinx.Audio/Renderer/Common/AuxiliaryBufferAddresses.cs
+++ b/src/Ryujinx.Audio/Renderer/Common/AuxiliaryBufferAddresses.cs
diff --git a/Ryujinx.Audio/Renderer/Common/BehaviourParameter.cs b/src/Ryujinx.Audio/Renderer/Common/BehaviourParameter.cs
index 270f84d5..270f84d5 100644
--- a/Ryujinx.Audio/Renderer/Common/BehaviourParameter.cs
+++ b/src/Ryujinx.Audio/Renderer/Common/BehaviourParameter.cs
diff --git a/Ryujinx.Audio/Renderer/Common/EdgeMatrix.cs b/src/Ryujinx.Audio/Renderer/Common/EdgeMatrix.cs
index 24a9350f..24a9350f 100644
--- a/Ryujinx.Audio/Renderer/Common/EdgeMatrix.cs
+++ b/src/Ryujinx.Audio/Renderer/Common/EdgeMatrix.cs
diff --git a/Ryujinx.Audio/Renderer/Common/EffectType.cs b/src/Ryujinx.Audio/Renderer/Common/EffectType.cs
index 7128db4c..7128db4c 100644
--- a/Ryujinx.Audio/Renderer/Common/EffectType.cs
+++ b/src/Ryujinx.Audio/Renderer/Common/EffectType.cs
diff --git a/Ryujinx.Audio/Renderer/Common/MemoryPoolUserState.cs b/src/Ryujinx.Audio/Renderer/Common/MemoryPoolUserState.cs
index 590731c3..590731c3 100644
--- a/Ryujinx.Audio/Renderer/Common/MemoryPoolUserState.cs
+++ b/src/Ryujinx.Audio/Renderer/Common/MemoryPoolUserState.cs
diff --git a/Ryujinx.Audio/Renderer/Common/NodeIdHelper.cs b/src/Ryujinx.Audio/Renderer/Common/NodeIdHelper.cs
index a999e3ad..a999e3ad 100644
--- a/Ryujinx.Audio/Renderer/Common/NodeIdHelper.cs
+++ b/src/Ryujinx.Audio/Renderer/Common/NodeIdHelper.cs
diff --git a/Ryujinx.Audio/Renderer/Common/NodeIdType.cs b/src/Ryujinx.Audio/Renderer/Common/NodeIdType.cs
index 69b58f6b..69b58f6b 100644
--- a/Ryujinx.Audio/Renderer/Common/NodeIdType.cs
+++ b/src/Ryujinx.Audio/Renderer/Common/NodeIdType.cs
diff --git a/Ryujinx.Audio/Renderer/Common/NodeStates.cs b/src/Ryujinx.Audio/Renderer/Common/NodeStates.cs
index 45748d60..45748d60 100644
--- a/Ryujinx.Audio/Renderer/Common/NodeStates.cs
+++ b/src/Ryujinx.Audio/Renderer/Common/NodeStates.cs
diff --git a/Ryujinx.Audio/Renderer/Common/PerformanceDetailType.cs b/src/Ryujinx.Audio/Renderer/Common/PerformanceDetailType.cs
index 805d5518..805d5518 100644
--- a/Ryujinx.Audio/Renderer/Common/PerformanceDetailType.cs
+++ b/src/Ryujinx.Audio/Renderer/Common/PerformanceDetailType.cs
diff --git a/Ryujinx.Audio/Renderer/Common/PerformanceEntryType.cs b/src/Ryujinx.Audio/Renderer/Common/PerformanceEntryType.cs
index bde72aae..bde72aae 100644
--- a/Ryujinx.Audio/Renderer/Common/PerformanceEntryType.cs
+++ b/src/Ryujinx.Audio/Renderer/Common/PerformanceEntryType.cs
diff --git a/Ryujinx.Audio/Renderer/Common/PlayState.cs b/src/Ryujinx.Audio/Renderer/Common/PlayState.cs
index 4a6929e0..4a6929e0 100644
--- a/Ryujinx.Audio/Renderer/Common/PlayState.cs
+++ b/src/Ryujinx.Audio/Renderer/Common/PlayState.cs
diff --git a/Ryujinx.Audio/Renderer/Common/ReverbEarlyMode.cs b/src/Ryujinx.Audio/Renderer/Common/ReverbEarlyMode.cs
index aa768562..aa768562 100644
--- a/Ryujinx.Audio/Renderer/Common/ReverbEarlyMode.cs
+++ b/src/Ryujinx.Audio/Renderer/Common/ReverbEarlyMode.cs
diff --git a/Ryujinx.Audio/Renderer/Common/ReverbLateMode.cs b/src/Ryujinx.Audio/Renderer/Common/ReverbLateMode.cs
index 8aa88165..8aa88165 100644
--- a/Ryujinx.Audio/Renderer/Common/ReverbLateMode.cs
+++ b/src/Ryujinx.Audio/Renderer/Common/ReverbLateMode.cs
diff --git a/Ryujinx.Audio/Renderer/Common/SinkType.cs b/src/Ryujinx.Audio/Renderer/Common/SinkType.cs
index 2e17201e..2e17201e 100644
--- a/Ryujinx.Audio/Renderer/Common/SinkType.cs
+++ b/src/Ryujinx.Audio/Renderer/Common/SinkType.cs
diff --git a/Ryujinx.Audio/Renderer/Common/UpdateDataHeader.cs b/src/Ryujinx.Audio/Renderer/Common/UpdateDataHeader.cs
index 70dbfa94..70dbfa94 100644
--- a/Ryujinx.Audio/Renderer/Common/UpdateDataHeader.cs
+++ b/src/Ryujinx.Audio/Renderer/Common/UpdateDataHeader.cs
diff --git a/Ryujinx.Audio/Renderer/Common/VoiceUpdateState.cs b/src/Ryujinx.Audio/Renderer/Common/VoiceUpdateState.cs
index f52c2f4c..f52c2f4c 100644
--- a/Ryujinx.Audio/Renderer/Common/VoiceUpdateState.cs
+++ b/src/Ryujinx.Audio/Renderer/Common/VoiceUpdateState.cs
diff --git a/Ryujinx.Audio/Renderer/Common/WaveBuffer.cs b/src/Ryujinx.Audio/Renderer/Common/WaveBuffer.cs
index 0d00e838..0d00e838 100644
--- a/Ryujinx.Audio/Renderer/Common/WaveBuffer.cs
+++ b/src/Ryujinx.Audio/Renderer/Common/WaveBuffer.cs
diff --git a/Ryujinx.Audio/Renderer/Common/WorkBufferAllocator.cs b/src/Ryujinx.Audio/Renderer/Common/WorkBufferAllocator.cs
index f35dbec7..f35dbec7 100644
--- a/Ryujinx.Audio/Renderer/Common/WorkBufferAllocator.cs
+++ b/src/Ryujinx.Audio/Renderer/Common/WorkBufferAllocator.cs
diff --git a/Ryujinx.Audio/Renderer/Device/VirtualDevice.cs b/src/Ryujinx.Audio/Renderer/Device/VirtualDevice.cs
index 2fa030a8..2fa030a8 100644
--- a/Ryujinx.Audio/Renderer/Device/VirtualDevice.cs
+++ b/src/Ryujinx.Audio/Renderer/Device/VirtualDevice.cs
diff --git a/Ryujinx.Audio/Renderer/Device/VirtualDeviceSession.cs b/src/Ryujinx.Audio/Renderer/Device/VirtualDeviceSession.cs
index db35d26d..db35d26d 100644
--- a/Ryujinx.Audio/Renderer/Device/VirtualDeviceSession.cs
+++ b/src/Ryujinx.Audio/Renderer/Device/VirtualDeviceSession.cs
diff --git a/Ryujinx.Audio/Renderer/Device/VirtualDeviceSessionRegistry.cs b/src/Ryujinx.Audio/Renderer/Device/VirtualDeviceSessionRegistry.cs
index 927e45ad..927e45ad 100644
--- a/Ryujinx.Audio/Renderer/Device/VirtualDeviceSessionRegistry.cs
+++ b/src/Ryujinx.Audio/Renderer/Device/VirtualDeviceSessionRegistry.cs
diff --git a/Ryujinx.Audio/Renderer/Dsp/AdpcmHelper.cs b/src/Ryujinx.Audio/Renderer/Dsp/AdpcmHelper.cs
index 2680dcb1..2680dcb1 100644
--- a/Ryujinx.Audio/Renderer/Dsp/AdpcmHelper.cs
+++ b/src/Ryujinx.Audio/Renderer/Dsp/AdpcmHelper.cs
diff --git a/Ryujinx.Audio/Renderer/Dsp/AudioProcessor.cs b/src/Ryujinx.Audio/Renderer/Dsp/AudioProcessor.cs
index 7bd0443c..7bd0443c 100644
--- a/Ryujinx.Audio/Renderer/Dsp/AudioProcessor.cs
+++ b/src/Ryujinx.Audio/Renderer/Dsp/AudioProcessor.cs
diff --git a/Ryujinx.Audio/Renderer/Dsp/BiquadFilterHelper.cs b/src/Ryujinx.Audio/Renderer/Dsp/BiquadFilterHelper.cs
index 98460ff1..98460ff1 100644
--- a/Ryujinx.Audio/Renderer/Dsp/BiquadFilterHelper.cs
+++ b/src/Ryujinx.Audio/Renderer/Dsp/BiquadFilterHelper.cs
diff --git a/Ryujinx.Audio/Renderer/Dsp/Command/AdpcmDataSourceCommandVersion1.cs b/src/Ryujinx.Audio/Renderer/Dsp/Command/AdpcmDataSourceCommandVersion1.cs
index 1fe6069f..1fe6069f 100644
--- a/Ryujinx.Audio/Renderer/Dsp/Command/AdpcmDataSourceCommandVersion1.cs
+++ b/src/Ryujinx.Audio/Renderer/Dsp/Command/AdpcmDataSourceCommandVersion1.cs
diff --git a/Ryujinx.Audio/Renderer/Dsp/Command/AuxiliaryBufferCommand.cs b/src/Ryujinx.Audio/Renderer/Dsp/Command/AuxiliaryBufferCommand.cs
index 5c3c0324..5c3c0324 100644
--- a/Ryujinx.Audio/Renderer/Dsp/Command/AuxiliaryBufferCommand.cs
+++ b/src/Ryujinx.Audio/Renderer/Dsp/Command/AuxiliaryBufferCommand.cs
diff --git a/Ryujinx.Audio/Renderer/Dsp/Command/BiquadFilterCommand.cs b/src/Ryujinx.Audio/Renderer/Dsp/Command/BiquadFilterCommand.cs
index b994c1cb..b994c1cb 100644
--- a/Ryujinx.Audio/Renderer/Dsp/Command/BiquadFilterCommand.cs
+++ b/src/Ryujinx.Audio/Renderer/Dsp/Command/BiquadFilterCommand.cs
diff --git a/Ryujinx.Audio/Renderer/Dsp/Command/CaptureBufferCommand.cs b/src/Ryujinx.Audio/Renderer/Dsp/Command/CaptureBufferCommand.cs
index da1cb254..da1cb254 100644
--- a/Ryujinx.Audio/Renderer/Dsp/Command/CaptureBufferCommand.cs
+++ b/src/Ryujinx.Audio/Renderer/Dsp/Command/CaptureBufferCommand.cs
diff --git a/Ryujinx.Audio/Renderer/Dsp/Command/CircularBufferSinkCommand.cs b/src/Ryujinx.Audio/Renderer/Dsp/Command/CircularBufferSinkCommand.cs
index e50637eb..e50637eb 100644
--- a/Ryujinx.Audio/Renderer/Dsp/Command/CircularBufferSinkCommand.cs
+++ b/src/Ryujinx.Audio/Renderer/Dsp/Command/CircularBufferSinkCommand.cs
diff --git a/Ryujinx.Audio/Renderer/Dsp/Command/ClearMixBufferCommand.cs b/src/Ryujinx.Audio/Renderer/Dsp/Command/ClearMixBufferCommand.cs
index 9e653e80..9e653e80 100644
--- a/Ryujinx.Audio/Renderer/Dsp/Command/ClearMixBufferCommand.cs
+++ b/src/Ryujinx.Audio/Renderer/Dsp/Command/ClearMixBufferCommand.cs
diff --git a/Ryujinx.Audio/Renderer/Dsp/Command/CommandList.cs b/src/Ryujinx.Audio/Renderer/Dsp/Command/CommandList.cs
index 2cbed9c2..2cbed9c2 100644
--- a/Ryujinx.Audio/Renderer/Dsp/Command/CommandList.cs
+++ b/src/Ryujinx.Audio/Renderer/Dsp/Command/CommandList.cs
diff --git a/Ryujinx.Audio/Renderer/Dsp/Command/CommandType.cs b/src/Ryujinx.Audio/Renderer/Dsp/Command/CommandType.cs
index 9ce181b1..9ce181b1 100644
--- a/Ryujinx.Audio/Renderer/Dsp/Command/CommandType.cs
+++ b/src/Ryujinx.Audio/Renderer/Dsp/Command/CommandType.cs
diff --git a/Ryujinx.Audio/Renderer/Dsp/Command/CompressorCommand.cs b/src/Ryujinx.Audio/Renderer/Dsp/Command/CompressorCommand.cs
index 34231e61..34231e61 100644
--- a/Ryujinx.Audio/Renderer/Dsp/Command/CompressorCommand.cs
+++ b/src/Ryujinx.Audio/Renderer/Dsp/Command/CompressorCommand.cs
diff --git a/Ryujinx.Audio/Renderer/Dsp/Command/CopyMixBufferCommand.cs b/src/Ryujinx.Audio/Renderer/Dsp/Command/CopyMixBufferCommand.cs
index 7237fddf..7237fddf 100644
--- a/Ryujinx.Audio/Renderer/Dsp/Command/CopyMixBufferCommand.cs
+++ b/src/Ryujinx.Audio/Renderer/Dsp/Command/CopyMixBufferCommand.cs
diff --git a/Ryujinx.Audio/Renderer/Dsp/Command/DataSourceVersion2Command.cs b/src/Ryujinx.Audio/Renderer/Dsp/Command/DataSourceVersion2Command.cs
index c1503b6a..c1503b6a 100644
--- a/Ryujinx.Audio/Renderer/Dsp/Command/DataSourceVersion2Command.cs
+++ b/src/Ryujinx.Audio/Renderer/Dsp/Command/DataSourceVersion2Command.cs
diff --git a/Ryujinx.Audio/Renderer/Dsp/Command/DelayCommand.cs b/src/Ryujinx.Audio/Renderer/Dsp/Command/DelayCommand.cs
index cb5678c7..cb5678c7 100644
--- a/Ryujinx.Audio/Renderer/Dsp/Command/DelayCommand.cs
+++ b/src/Ryujinx.Audio/Renderer/Dsp/Command/DelayCommand.cs
diff --git a/Ryujinx.Audio/Renderer/Dsp/Command/DepopForMixBuffersCommand.cs b/src/Ryujinx.Audio/Renderer/Dsp/Command/DepopForMixBuffersCommand.cs
index 1dba56e6..1dba56e6 100644
--- a/Ryujinx.Audio/Renderer/Dsp/Command/DepopForMixBuffersCommand.cs
+++ b/src/Ryujinx.Audio/Renderer/Dsp/Command/DepopForMixBuffersCommand.cs
diff --git a/Ryujinx.Audio/Renderer/Dsp/Command/DepopPrepareCommand.cs b/src/Ryujinx.Audio/Renderer/Dsp/Command/DepopPrepareCommand.cs
index d02f7c12..d02f7c12 100644
--- a/Ryujinx.Audio/Renderer/Dsp/Command/DepopPrepareCommand.cs
+++ b/src/Ryujinx.Audio/Renderer/Dsp/Command/DepopPrepareCommand.cs
diff --git a/Ryujinx.Audio/Renderer/Dsp/Command/DeviceSinkCommand.cs b/src/Ryujinx.Audio/Renderer/Dsp/Command/DeviceSinkCommand.cs
index 9c88a4e7..9c88a4e7 100644
--- a/Ryujinx.Audio/Renderer/Dsp/Command/DeviceSinkCommand.cs
+++ b/src/Ryujinx.Audio/Renderer/Dsp/Command/DeviceSinkCommand.cs
diff --git a/Ryujinx.Audio/Renderer/Dsp/Command/DownMixSurroundToStereoCommand.cs b/src/Ryujinx.Audio/Renderer/Dsp/Command/DownMixSurroundToStereoCommand.cs
index 79cefcc5..79cefcc5 100644
--- a/Ryujinx.Audio/Renderer/Dsp/Command/DownMixSurroundToStereoCommand.cs
+++ b/src/Ryujinx.Audio/Renderer/Dsp/Command/DownMixSurroundToStereoCommand.cs
diff --git a/Ryujinx.Audio/Renderer/Dsp/Command/GroupedBiquadFilterCommand.cs b/src/Ryujinx.Audio/Renderer/Dsp/Command/GroupedBiquadFilterCommand.cs
index b190cc10..b190cc10 100644
--- a/Ryujinx.Audio/Renderer/Dsp/Command/GroupedBiquadFilterCommand.cs
+++ b/src/Ryujinx.Audio/Renderer/Dsp/Command/GroupedBiquadFilterCommand.cs
diff --git a/Ryujinx.Audio/Renderer/Dsp/Command/ICommand.cs b/src/Ryujinx.Audio/Renderer/Dsp/Command/ICommand.cs
index d281e6e9..d281e6e9 100644
--- a/Ryujinx.Audio/Renderer/Dsp/Command/ICommand.cs
+++ b/src/Ryujinx.Audio/Renderer/Dsp/Command/ICommand.cs
diff --git a/Ryujinx.Audio/Renderer/Dsp/Command/LimiterCommandVersion1.cs b/src/Ryujinx.Audio/Renderer/Dsp/Command/LimiterCommandVersion1.cs
index a464ad70..a464ad70 100644
--- a/Ryujinx.Audio/Renderer/Dsp/Command/LimiterCommandVersion1.cs
+++ b/src/Ryujinx.Audio/Renderer/Dsp/Command/LimiterCommandVersion1.cs
diff --git a/Ryujinx.Audio/Renderer/Dsp/Command/LimiterCommandVersion2.cs b/src/Ryujinx.Audio/Renderer/Dsp/Command/LimiterCommandVersion2.cs
index 950de97b..950de97b 100644
--- a/Ryujinx.Audio/Renderer/Dsp/Command/LimiterCommandVersion2.cs
+++ b/src/Ryujinx.Audio/Renderer/Dsp/Command/LimiterCommandVersion2.cs
diff --git a/Ryujinx.Audio/Renderer/Dsp/Command/MixCommand.cs b/src/Ryujinx.Audio/Renderer/Dsp/Command/MixCommand.cs
index 2616bda5..2616bda5 100644
--- a/Ryujinx.Audio/Renderer/Dsp/Command/MixCommand.cs
+++ b/src/Ryujinx.Audio/Renderer/Dsp/Command/MixCommand.cs
diff --git a/Ryujinx.Audio/Renderer/Dsp/Command/MixRampCommand.cs b/src/Ryujinx.Audio/Renderer/Dsp/Command/MixRampCommand.cs
index 76a1aba2..76a1aba2 100644
--- a/Ryujinx.Audio/Renderer/Dsp/Command/MixRampCommand.cs
+++ b/src/Ryujinx.Audio/Renderer/Dsp/Command/MixRampCommand.cs
diff --git a/Ryujinx.Audio/Renderer/Dsp/Command/MixRampGroupedCommand.cs b/src/Ryujinx.Audio/Renderer/Dsp/Command/MixRampGroupedCommand.cs
index e348e358..e348e358 100644
--- a/Ryujinx.Audio/Renderer/Dsp/Command/MixRampGroupedCommand.cs
+++ b/src/Ryujinx.Audio/Renderer/Dsp/Command/MixRampGroupedCommand.cs
diff --git a/Ryujinx.Audio/Renderer/Dsp/Command/PcmFloatDataSourceCommandVersion1.cs b/src/Ryujinx.Audio/Renderer/Dsp/Command/PcmFloatDataSourceCommandVersion1.cs
index 7cec7d2a..7cec7d2a 100644
--- a/Ryujinx.Audio/Renderer/Dsp/Command/PcmFloatDataSourceCommandVersion1.cs
+++ b/src/Ryujinx.Audio/Renderer/Dsp/Command/PcmFloatDataSourceCommandVersion1.cs
diff --git a/Ryujinx.Audio/Renderer/Dsp/Command/PcmInt16DataSourceCommandVersion1.cs b/src/Ryujinx.Audio/Renderer/Dsp/Command/PcmInt16DataSourceCommandVersion1.cs
index dfe9814f..dfe9814f 100644
--- a/Ryujinx.Audio/Renderer/Dsp/Command/PcmInt16DataSourceCommandVersion1.cs
+++ b/src/Ryujinx.Audio/Renderer/Dsp/Command/PcmInt16DataSourceCommandVersion1.cs
diff --git a/Ryujinx.Audio/Renderer/Dsp/Command/PerformanceCommand.cs b/src/Ryujinx.Audio/Renderer/Dsp/Command/PerformanceCommand.cs
index d3e3f805..d3e3f805 100644
--- a/Ryujinx.Audio/Renderer/Dsp/Command/PerformanceCommand.cs
+++ b/src/Ryujinx.Audio/Renderer/Dsp/Command/PerformanceCommand.cs
diff --git a/Ryujinx.Audio/Renderer/Dsp/Command/Reverb3dCommand.cs b/src/Ryujinx.Audio/Renderer/Dsp/Command/Reverb3dCommand.cs
index eeb64567..eeb64567 100644
--- a/Ryujinx.Audio/Renderer/Dsp/Command/Reverb3dCommand.cs
+++ b/src/Ryujinx.Audio/Renderer/Dsp/Command/Reverb3dCommand.cs
diff --git a/Ryujinx.Audio/Renderer/Dsp/Command/ReverbCommand.cs b/src/Ryujinx.Audio/Renderer/Dsp/Command/ReverbCommand.cs
index 0a32a065..0a32a065 100644
--- a/Ryujinx.Audio/Renderer/Dsp/Command/ReverbCommand.cs
+++ b/src/Ryujinx.Audio/Renderer/Dsp/Command/ReverbCommand.cs
diff --git a/Ryujinx.Audio/Renderer/Dsp/Command/UpsampleCommand.cs b/src/Ryujinx.Audio/Renderer/Dsp/Command/UpsampleCommand.cs
index 0870d59c..0870d59c 100644
--- a/Ryujinx.Audio/Renderer/Dsp/Command/UpsampleCommand.cs
+++ b/src/Ryujinx.Audio/Renderer/Dsp/Command/UpsampleCommand.cs
diff --git a/Ryujinx.Audio/Renderer/Dsp/Command/VolumeCommand.cs b/src/Ryujinx.Audio/Renderer/Dsp/Command/VolumeCommand.cs
index 0628f6d8..0628f6d8 100644
--- a/Ryujinx.Audio/Renderer/Dsp/Command/VolumeCommand.cs
+++ b/src/Ryujinx.Audio/Renderer/Dsp/Command/VolumeCommand.cs
diff --git a/Ryujinx.Audio/Renderer/Dsp/Command/VolumeRampCommand.cs b/src/Ryujinx.Audio/Renderer/Dsp/Command/VolumeRampCommand.cs
index 5c0c8845..5c0c8845 100644
--- a/Ryujinx.Audio/Renderer/Dsp/Command/VolumeRampCommand.cs
+++ b/src/Ryujinx.Audio/Renderer/Dsp/Command/VolumeRampCommand.cs
diff --git a/Ryujinx.Audio/Renderer/Dsp/DataSourceHelper.cs b/src/Ryujinx.Audio/Renderer/Dsp/DataSourceHelper.cs
index 5ca1ddba..5ca1ddba 100644
--- a/Ryujinx.Audio/Renderer/Dsp/DataSourceHelper.cs
+++ b/src/Ryujinx.Audio/Renderer/Dsp/DataSourceHelper.cs
diff --git a/Ryujinx.Audio/Renderer/Dsp/Effect/DecayDelay.cs b/src/Ryujinx.Audio/Renderer/Dsp/Effect/DecayDelay.cs
index 37e066bf..37e066bf 100644
--- a/Ryujinx.Audio/Renderer/Dsp/Effect/DecayDelay.cs
+++ b/src/Ryujinx.Audio/Renderer/Dsp/Effect/DecayDelay.cs
diff --git a/Ryujinx.Audio/Renderer/Dsp/Effect/DelayLine.cs b/src/Ryujinx.Audio/Renderer/Dsp/Effect/DelayLine.cs
index 56890ebe..56890ebe 100644
--- a/Ryujinx.Audio/Renderer/Dsp/Effect/DelayLine.cs
+++ b/src/Ryujinx.Audio/Renderer/Dsp/Effect/DelayLine.cs
diff --git a/Ryujinx.Audio/Renderer/Dsp/Effect/DelayLineReverb3d.cs b/src/Ryujinx.Audio/Renderer/Dsp/Effect/DelayLineReverb3d.cs
index a2ac9d26..a2ac9d26 100644
--- a/Ryujinx.Audio/Renderer/Dsp/Effect/DelayLineReverb3d.cs
+++ b/src/Ryujinx.Audio/Renderer/Dsp/Effect/DelayLineReverb3d.cs
diff --git a/Ryujinx.Audio/Renderer/Dsp/Effect/ExponentialMovingAverage.cs b/src/Ryujinx.Audio/Renderer/Dsp/Effect/ExponentialMovingAverage.cs
index 78e46bf9..78e46bf9 100644
--- a/Ryujinx.Audio/Renderer/Dsp/Effect/ExponentialMovingAverage.cs
+++ b/src/Ryujinx.Audio/Renderer/Dsp/Effect/ExponentialMovingAverage.cs
diff --git a/Ryujinx.Audio/Renderer/Dsp/Effect/IDelayLine.cs b/src/Ryujinx.Audio/Renderer/Dsp/Effect/IDelayLine.cs
index fd902525..fd902525 100644
--- a/Ryujinx.Audio/Renderer/Dsp/Effect/IDelayLine.cs
+++ b/src/Ryujinx.Audio/Renderer/Dsp/Effect/IDelayLine.cs
diff --git a/Ryujinx.Audio/Renderer/Dsp/FixedPointHelper.cs b/src/Ryujinx.Audio/Renderer/Dsp/FixedPointHelper.cs
index 280e47c0..280e47c0 100644
--- a/Ryujinx.Audio/Renderer/Dsp/FixedPointHelper.cs
+++ b/src/Ryujinx.Audio/Renderer/Dsp/FixedPointHelper.cs
diff --git a/Ryujinx.Audio/Renderer/Dsp/FloatingPointHelper.cs b/src/Ryujinx.Audio/Renderer/Dsp/FloatingPointHelper.cs
index 6645e20a..6645e20a 100644
--- a/Ryujinx.Audio/Renderer/Dsp/FloatingPointHelper.cs
+++ b/src/Ryujinx.Audio/Renderer/Dsp/FloatingPointHelper.cs
diff --git a/Ryujinx.Audio/Renderer/Dsp/PcmHelper.cs b/src/Ryujinx.Audio/Renderer/Dsp/PcmHelper.cs
index 0233a8d7..0233a8d7 100644
--- a/Ryujinx.Audio/Renderer/Dsp/PcmHelper.cs
+++ b/src/Ryujinx.Audio/Renderer/Dsp/PcmHelper.cs
diff --git a/Ryujinx.Audio/Renderer/Dsp/ResamplerHelper.cs b/src/Ryujinx.Audio/Renderer/Dsp/ResamplerHelper.cs
index 7873c4d2..7873c4d2 100644
--- a/Ryujinx.Audio/Renderer/Dsp/ResamplerHelper.cs
+++ b/src/Ryujinx.Audio/Renderer/Dsp/ResamplerHelper.cs
diff --git a/Ryujinx.Audio/Renderer/Dsp/State/AdpcmLoopContext.cs b/src/Ryujinx.Audio/Renderer/Dsp/State/AdpcmLoopContext.cs
index 821a135e..821a135e 100644
--- a/Ryujinx.Audio/Renderer/Dsp/State/AdpcmLoopContext.cs
+++ b/src/Ryujinx.Audio/Renderer/Dsp/State/AdpcmLoopContext.cs
diff --git a/Ryujinx.Audio/Renderer/Dsp/State/AuxiliaryBufferHeader.cs b/src/Ryujinx.Audio/Renderer/Dsp/State/AuxiliaryBufferHeader.cs
index 4e8d11e4..4e8d11e4 100644
--- a/Ryujinx.Audio/Renderer/Dsp/State/AuxiliaryBufferHeader.cs
+++ b/src/Ryujinx.Audio/Renderer/Dsp/State/AuxiliaryBufferHeader.cs
diff --git a/Ryujinx.Audio/Renderer/Dsp/State/BiquadFilterState.cs b/src/Ryujinx.Audio/Renderer/Dsp/State/BiquadFilterState.cs
index 4220e6d5..4220e6d5 100644
--- a/Ryujinx.Audio/Renderer/Dsp/State/BiquadFilterState.cs
+++ b/src/Ryujinx.Audio/Renderer/Dsp/State/BiquadFilterState.cs
diff --git a/Ryujinx.Audio/Renderer/Dsp/State/CompressorState.cs b/src/Ryujinx.Audio/Renderer/Dsp/State/CompressorState.cs
index 76aff807..76aff807 100644
--- a/Ryujinx.Audio/Renderer/Dsp/State/CompressorState.cs
+++ b/src/Ryujinx.Audio/Renderer/Dsp/State/CompressorState.cs
diff --git a/Ryujinx.Audio/Renderer/Dsp/State/DelayState.cs b/src/Ryujinx.Audio/Renderer/Dsp/State/DelayState.cs
index 2a1e7f83..2a1e7f83 100644
--- a/Ryujinx.Audio/Renderer/Dsp/State/DelayState.cs
+++ b/src/Ryujinx.Audio/Renderer/Dsp/State/DelayState.cs
diff --git a/Ryujinx.Audio/Renderer/Dsp/State/LimiterState.cs b/src/Ryujinx.Audio/Renderer/Dsp/State/LimiterState.cs
index 0560757c..0560757c 100644
--- a/Ryujinx.Audio/Renderer/Dsp/State/LimiterState.cs
+++ b/src/Ryujinx.Audio/Renderer/Dsp/State/LimiterState.cs
diff --git a/Ryujinx.Audio/Renderer/Dsp/State/Reverb3dState.cs b/src/Ryujinx.Audio/Renderer/Dsp/State/Reverb3dState.cs
index c0646603..c0646603 100644
--- a/Ryujinx.Audio/Renderer/Dsp/State/Reverb3dState.cs
+++ b/src/Ryujinx.Audio/Renderer/Dsp/State/Reverb3dState.cs
diff --git a/Ryujinx.Audio/Renderer/Dsp/State/ReverbState.cs b/src/Ryujinx.Audio/Renderer/Dsp/State/ReverbState.cs
index 1ffabe05..1ffabe05 100644
--- a/Ryujinx.Audio/Renderer/Dsp/State/ReverbState.cs
+++ b/src/Ryujinx.Audio/Renderer/Dsp/State/ReverbState.cs
diff --git a/Ryujinx.Audio/Renderer/Dsp/UpsamplerHelper.cs b/src/Ryujinx.Audio/Renderer/Dsp/UpsamplerHelper.cs
index 6cdab5a7..6cdab5a7 100644
--- a/Ryujinx.Audio/Renderer/Dsp/UpsamplerHelper.cs
+++ b/src/Ryujinx.Audio/Renderer/Dsp/UpsamplerHelper.cs
diff --git a/Ryujinx.Audio/Renderer/Parameter/AudioRendererConfiguration.cs b/src/Ryujinx.Audio/Renderer/Parameter/AudioRendererConfiguration.cs
index 359cd4c0..359cd4c0 100644
--- a/Ryujinx.Audio/Renderer/Parameter/AudioRendererConfiguration.cs
+++ b/src/Ryujinx.Audio/Renderer/Parameter/AudioRendererConfiguration.cs
diff --git a/Ryujinx.Audio/Renderer/Parameter/BehaviourErrorInfoOutStatus.cs b/src/Ryujinx.Audio/Renderer/Parameter/BehaviourErrorInfoOutStatus.cs
index aba7dcd6..aba7dcd6 100644
--- a/Ryujinx.Audio/Renderer/Parameter/BehaviourErrorInfoOutStatus.cs
+++ b/src/Ryujinx.Audio/Renderer/Parameter/BehaviourErrorInfoOutStatus.cs
diff --git a/Ryujinx.Audio/Renderer/Parameter/BiquadFilterParameter.cs b/src/Ryujinx.Audio/Renderer/Parameter/BiquadFilterParameter.cs
index ef86015f..ef86015f 100644
--- a/Ryujinx.Audio/Renderer/Parameter/BiquadFilterParameter.cs
+++ b/src/Ryujinx.Audio/Renderer/Parameter/BiquadFilterParameter.cs
diff --git a/Ryujinx.Audio/Renderer/Parameter/Effect/AuxiliaryBufferParameter.cs b/src/Ryujinx.Audio/Renderer/Parameter/Effect/AuxiliaryBufferParameter.cs
index 36f28677..36f28677 100644
--- a/Ryujinx.Audio/Renderer/Parameter/Effect/AuxiliaryBufferParameter.cs
+++ b/src/Ryujinx.Audio/Renderer/Parameter/Effect/AuxiliaryBufferParameter.cs
diff --git a/Ryujinx.Audio/Renderer/Parameter/Effect/BiquadFilterEffectParameter.cs b/src/Ryujinx.Audio/Renderer/Parameter/Effect/BiquadFilterEffectParameter.cs
index 73e0e9bb..73e0e9bb 100644
--- a/Ryujinx.Audio/Renderer/Parameter/Effect/BiquadFilterEffectParameter.cs
+++ b/src/Ryujinx.Audio/Renderer/Parameter/Effect/BiquadFilterEffectParameter.cs
diff --git a/Ryujinx.Audio/Renderer/Parameter/Effect/BufferMixerParameter.cs b/src/Ryujinx.Audio/Renderer/Parameter/Effect/BufferMixerParameter.cs
index b03559eb..b03559eb 100644
--- a/Ryujinx.Audio/Renderer/Parameter/Effect/BufferMixerParameter.cs
+++ b/src/Ryujinx.Audio/Renderer/Parameter/Effect/BufferMixerParameter.cs
diff --git a/Ryujinx.Audio/Renderer/Parameter/Effect/CompressorParameter.cs b/src/Ryujinx.Audio/Renderer/Parameter/Effect/CompressorParameter.cs
index 0be37608..0be37608 100644
--- a/Ryujinx.Audio/Renderer/Parameter/Effect/CompressorParameter.cs
+++ b/src/Ryujinx.Audio/Renderer/Parameter/Effect/CompressorParameter.cs
diff --git a/Ryujinx.Audio/Renderer/Parameter/Effect/DelayParameter.cs b/src/Ryujinx.Audio/Renderer/Parameter/Effect/DelayParameter.cs
index 72332c17..72332c17 100644
--- a/Ryujinx.Audio/Renderer/Parameter/Effect/DelayParameter.cs
+++ b/src/Ryujinx.Audio/Renderer/Parameter/Effect/DelayParameter.cs
diff --git a/Ryujinx.Audio/Renderer/Parameter/Effect/LimiterParameter.cs b/src/Ryujinx.Audio/Renderer/Parameter/Effect/LimiterParameter.cs
index 0bce94a2..0bce94a2 100644
--- a/Ryujinx.Audio/Renderer/Parameter/Effect/LimiterParameter.cs
+++ b/src/Ryujinx.Audio/Renderer/Parameter/Effect/LimiterParameter.cs
diff --git a/Ryujinx.Audio/Renderer/Parameter/Effect/LimiterStatistics.cs b/src/Ryujinx.Audio/Renderer/Parameter/Effect/LimiterStatistics.cs
index f353f18d..f353f18d 100644
--- a/Ryujinx.Audio/Renderer/Parameter/Effect/LimiterStatistics.cs
+++ b/src/Ryujinx.Audio/Renderer/Parameter/Effect/LimiterStatistics.cs
diff --git a/Ryujinx.Audio/Renderer/Parameter/Effect/Reverb3dParameter.cs b/src/Ryujinx.Audio/Renderer/Parameter/Effect/Reverb3dParameter.cs
index c78ce595..c78ce595 100644
--- a/Ryujinx.Audio/Renderer/Parameter/Effect/Reverb3dParameter.cs
+++ b/src/Ryujinx.Audio/Renderer/Parameter/Effect/Reverb3dParameter.cs
diff --git a/Ryujinx.Audio/Renderer/Parameter/Effect/ReverbParameter.cs b/src/Ryujinx.Audio/Renderer/Parameter/Effect/ReverbParameter.cs
index baf049fb..baf049fb 100644
--- a/Ryujinx.Audio/Renderer/Parameter/Effect/ReverbParameter.cs
+++ b/src/Ryujinx.Audio/Renderer/Parameter/Effect/ReverbParameter.cs
diff --git a/Ryujinx.Audio/Renderer/Parameter/EffectInParameterVersion1.cs b/src/Ryujinx.Audio/Renderer/Parameter/EffectInParameterVersion1.cs
index e5419f70..e5419f70 100644
--- a/Ryujinx.Audio/Renderer/Parameter/EffectInParameterVersion1.cs
+++ b/src/Ryujinx.Audio/Renderer/Parameter/EffectInParameterVersion1.cs
diff --git a/Ryujinx.Audio/Renderer/Parameter/EffectInParameterVersion2.cs b/src/Ryujinx.Audio/Renderer/Parameter/EffectInParameterVersion2.cs
index 250012d1..250012d1 100644
--- a/Ryujinx.Audio/Renderer/Parameter/EffectInParameterVersion2.cs
+++ b/src/Ryujinx.Audio/Renderer/Parameter/EffectInParameterVersion2.cs
diff --git a/Ryujinx.Audio/Renderer/Parameter/EffectOutStatusVersion1.cs b/src/Ryujinx.Audio/Renderer/Parameter/EffectOutStatusVersion1.cs
index 5e6a33ac..5e6a33ac 100644
--- a/Ryujinx.Audio/Renderer/Parameter/EffectOutStatusVersion1.cs
+++ b/src/Ryujinx.Audio/Renderer/Parameter/EffectOutStatusVersion1.cs
diff --git a/Ryujinx.Audio/Renderer/Parameter/EffectOutStatusVersion2.cs b/src/Ryujinx.Audio/Renderer/Parameter/EffectOutStatusVersion2.cs
index f2c9768b..f2c9768b 100644
--- a/Ryujinx.Audio/Renderer/Parameter/EffectOutStatusVersion2.cs
+++ b/src/Ryujinx.Audio/Renderer/Parameter/EffectOutStatusVersion2.cs
diff --git a/Ryujinx.Audio/Renderer/Parameter/EffectResultState.cs b/src/Ryujinx.Audio/Renderer/Parameter/EffectResultState.cs
index bd96c22b..bd96c22b 100644
--- a/Ryujinx.Audio/Renderer/Parameter/EffectResultState.cs
+++ b/src/Ryujinx.Audio/Renderer/Parameter/EffectResultState.cs
diff --git a/Ryujinx.Audio/Renderer/Parameter/EffectState.cs b/src/Ryujinx.Audio/Renderer/Parameter/EffectState.cs
index 911ba6d8..911ba6d8 100644
--- a/Ryujinx.Audio/Renderer/Parameter/EffectState.cs
+++ b/src/Ryujinx.Audio/Renderer/Parameter/EffectState.cs
diff --git a/Ryujinx.Audio/Renderer/Parameter/IEffectInParameter.cs b/src/Ryujinx.Audio/Renderer/Parameter/IEffectInParameter.cs
index bdd1ca45..bdd1ca45 100644
--- a/Ryujinx.Audio/Renderer/Parameter/IEffectInParameter.cs
+++ b/src/Ryujinx.Audio/Renderer/Parameter/IEffectInParameter.cs
diff --git a/Ryujinx.Audio/Renderer/Parameter/IEffectOutStatus.cs b/src/Ryujinx.Audio/Renderer/Parameter/IEffectOutStatus.cs
index a5addbcb..a5addbcb 100644
--- a/Ryujinx.Audio/Renderer/Parameter/IEffectOutStatus.cs
+++ b/src/Ryujinx.Audio/Renderer/Parameter/IEffectOutStatus.cs
diff --git a/Ryujinx.Audio/Renderer/Parameter/MemoryPoolInParameter.cs b/src/Ryujinx.Audio/Renderer/Parameter/MemoryPoolInParameter.cs
index 242e3843..242e3843 100644
--- a/Ryujinx.Audio/Renderer/Parameter/MemoryPoolInParameter.cs
+++ b/src/Ryujinx.Audio/Renderer/Parameter/MemoryPoolInParameter.cs
diff --git a/Ryujinx.Audio/Renderer/Parameter/MemoryPoolOutStatus.cs b/src/Ryujinx.Audio/Renderer/Parameter/MemoryPoolOutStatus.cs
index 29a6e261..29a6e261 100644
--- a/Ryujinx.Audio/Renderer/Parameter/MemoryPoolOutStatus.cs
+++ b/src/Ryujinx.Audio/Renderer/Parameter/MemoryPoolOutStatus.cs
diff --git a/Ryujinx.Audio/Renderer/Parameter/MixInParameterDirtyOnlyUpdate.cs b/src/Ryujinx.Audio/Renderer/Parameter/MixInParameterDirtyOnlyUpdate.cs
index c0954cda..c0954cda 100644
--- a/Ryujinx.Audio/Renderer/Parameter/MixInParameterDirtyOnlyUpdate.cs
+++ b/src/Ryujinx.Audio/Renderer/Parameter/MixInParameterDirtyOnlyUpdate.cs
diff --git a/Ryujinx.Audio/Renderer/Parameter/MixParameter.cs b/src/Ryujinx.Audio/Renderer/Parameter/MixParameter.cs
index 5b9a969a..5b9a969a 100644
--- a/Ryujinx.Audio/Renderer/Parameter/MixParameter.cs
+++ b/src/Ryujinx.Audio/Renderer/Parameter/MixParameter.cs
diff --git a/Ryujinx.Audio/Renderer/Parameter/Performance/PerformanceInParameter.cs b/src/Ryujinx.Audio/Renderer/Parameter/Performance/PerformanceInParameter.cs
index 0f9a3aa3..0f9a3aa3 100644
--- a/Ryujinx.Audio/Renderer/Parameter/Performance/PerformanceInParameter.cs
+++ b/src/Ryujinx.Audio/Renderer/Parameter/Performance/PerformanceInParameter.cs
diff --git a/Ryujinx.Audio/Renderer/Parameter/Performance/PerformanceOutStatus.cs b/src/Ryujinx.Audio/Renderer/Parameter/Performance/PerformanceOutStatus.cs
index 64bbe080..64bbe080 100644
--- a/Ryujinx.Audio/Renderer/Parameter/Performance/PerformanceOutStatus.cs
+++ b/src/Ryujinx.Audio/Renderer/Parameter/Performance/PerformanceOutStatus.cs
diff --git a/Ryujinx.Audio/Renderer/Parameter/RendererInfoOutStatus.cs b/src/Ryujinx.Audio/Renderer/Parameter/RendererInfoOutStatus.cs
index a42ea833..a42ea833 100644
--- a/Ryujinx.Audio/Renderer/Parameter/RendererInfoOutStatus.cs
+++ b/src/Ryujinx.Audio/Renderer/Parameter/RendererInfoOutStatus.cs
diff --git a/Ryujinx.Audio/Renderer/Parameter/Sink/CircularBufferParameter.cs b/src/Ryujinx.Audio/Renderer/Parameter/Sink/CircularBufferParameter.cs
index 7c02d65f..7c02d65f 100644
--- a/Ryujinx.Audio/Renderer/Parameter/Sink/CircularBufferParameter.cs
+++ b/src/Ryujinx.Audio/Renderer/Parameter/Sink/CircularBufferParameter.cs
diff --git a/Ryujinx.Audio/Renderer/Parameter/Sink/DeviceParameter.cs b/src/Ryujinx.Audio/Renderer/Parameter/Sink/DeviceParameter.cs
index abeadacc..abeadacc 100644
--- a/Ryujinx.Audio/Renderer/Parameter/Sink/DeviceParameter.cs
+++ b/src/Ryujinx.Audio/Renderer/Parameter/Sink/DeviceParameter.cs
diff --git a/Ryujinx.Audio/Renderer/Parameter/SinkInParameter.cs b/src/Ryujinx.Audio/Renderer/Parameter/SinkInParameter.cs
index 1ee4eb53..1ee4eb53 100644
--- a/Ryujinx.Audio/Renderer/Parameter/SinkInParameter.cs
+++ b/src/Ryujinx.Audio/Renderer/Parameter/SinkInParameter.cs
diff --git a/Ryujinx.Audio/Renderer/Parameter/SinkOutStatus.cs b/src/Ryujinx.Audio/Renderer/Parameter/SinkOutStatus.cs
index 426b861c..426b861c 100644
--- a/Ryujinx.Audio/Renderer/Parameter/SinkOutStatus.cs
+++ b/src/Ryujinx.Audio/Renderer/Parameter/SinkOutStatus.cs
diff --git a/Ryujinx.Audio/Renderer/Parameter/SplitterDestinationInParameter.cs b/src/Ryujinx.Audio/Renderer/Parameter/SplitterDestinationInParameter.cs
index 96c43092..96c43092 100644
--- a/Ryujinx.Audio/Renderer/Parameter/SplitterDestinationInParameter.cs
+++ b/src/Ryujinx.Audio/Renderer/Parameter/SplitterDestinationInParameter.cs
diff --git a/Ryujinx.Audio/Renderer/Parameter/SplitterInParameter.cs b/src/Ryujinx.Audio/Renderer/Parameter/SplitterInParameter.cs
index 0220497d..0220497d 100644
--- a/Ryujinx.Audio/Renderer/Parameter/SplitterInParameter.cs
+++ b/src/Ryujinx.Audio/Renderer/Parameter/SplitterInParameter.cs
diff --git a/Ryujinx.Audio/Renderer/Parameter/SplitterInParameterHeader.cs b/src/Ryujinx.Audio/Renderer/Parameter/SplitterInParameterHeader.cs
index dbae17a9..dbae17a9 100644
--- a/Ryujinx.Audio/Renderer/Parameter/SplitterInParameterHeader.cs
+++ b/src/Ryujinx.Audio/Renderer/Parameter/SplitterInParameterHeader.cs
diff --git a/Ryujinx.Audio/Renderer/Parameter/VoiceChannelResourceInParameter.cs b/src/Ryujinx.Audio/Renderer/Parameter/VoiceChannelResourceInParameter.cs
index 6a863237..6a863237 100644
--- a/Ryujinx.Audio/Renderer/Parameter/VoiceChannelResourceInParameter.cs
+++ b/src/Ryujinx.Audio/Renderer/Parameter/VoiceChannelResourceInParameter.cs
diff --git a/Ryujinx.Audio/Renderer/Parameter/VoiceInParameter.cs b/src/Ryujinx.Audio/Renderer/Parameter/VoiceInParameter.cs
index c4b4ba31..c4b4ba31 100644
--- a/Ryujinx.Audio/Renderer/Parameter/VoiceInParameter.cs
+++ b/src/Ryujinx.Audio/Renderer/Parameter/VoiceInParameter.cs
diff --git a/Ryujinx.Audio/Renderer/Parameter/VoiceOutStatus.cs b/src/Ryujinx.Audio/Renderer/Parameter/VoiceOutStatus.cs
index be9d3584..be9d3584 100644
--- a/Ryujinx.Audio/Renderer/Parameter/VoiceOutStatus.cs
+++ b/src/Ryujinx.Audio/Renderer/Parameter/VoiceOutStatus.cs
diff --git a/Ryujinx.Audio/Renderer/Server/AudioRenderSystem.cs b/src/Ryujinx.Audio/Renderer/Server/AudioRenderSystem.cs
index 53570243..53570243 100644
--- a/Ryujinx.Audio/Renderer/Server/AudioRenderSystem.cs
+++ b/src/Ryujinx.Audio/Renderer/Server/AudioRenderSystem.cs
diff --git a/Ryujinx.Audio/Renderer/Server/AudioRendererManager.cs b/src/Ryujinx.Audio/Renderer/Server/AudioRendererManager.cs
index 4de0ad16..4de0ad16 100644
--- a/Ryujinx.Audio/Renderer/Server/AudioRendererManager.cs
+++ b/src/Ryujinx.Audio/Renderer/Server/AudioRendererManager.cs
diff --git a/Ryujinx.Audio/Renderer/Server/BehaviourContext.cs b/src/Ryujinx.Audio/Renderer/Server/BehaviourContext.cs
index 821947a9..821947a9 100644
--- a/Ryujinx.Audio/Renderer/Server/BehaviourContext.cs
+++ b/src/Ryujinx.Audio/Renderer/Server/BehaviourContext.cs
diff --git a/Ryujinx.Audio/Renderer/Server/CommandBuffer.cs b/src/Ryujinx.Audio/Renderer/Server/CommandBuffer.cs
index 905cb205..905cb205 100644
--- a/Ryujinx.Audio/Renderer/Server/CommandBuffer.cs
+++ b/src/Ryujinx.Audio/Renderer/Server/CommandBuffer.cs
diff --git a/Ryujinx.Audio/Renderer/Server/CommandGenerator.cs b/src/Ryujinx.Audio/Renderer/Server/CommandGenerator.cs
index afc1e39b..afc1e39b 100644
--- a/Ryujinx.Audio/Renderer/Server/CommandGenerator.cs
+++ b/src/Ryujinx.Audio/Renderer/Server/CommandGenerator.cs
diff --git a/Ryujinx.Audio/Renderer/Server/CommandProcessingTimeEstimatorVersion1.cs b/src/Ryujinx.Audio/Renderer/Server/CommandProcessingTimeEstimatorVersion1.cs
index 63dc9ca9..63dc9ca9 100644
--- a/Ryujinx.Audio/Renderer/Server/CommandProcessingTimeEstimatorVersion1.cs
+++ b/src/Ryujinx.Audio/Renderer/Server/CommandProcessingTimeEstimatorVersion1.cs
diff --git a/Ryujinx.Audio/Renderer/Server/CommandProcessingTimeEstimatorVersion2.cs b/src/Ryujinx.Audio/Renderer/Server/CommandProcessingTimeEstimatorVersion2.cs
index 7ee491cd..7ee491cd 100644
--- a/Ryujinx.Audio/Renderer/Server/CommandProcessingTimeEstimatorVersion2.cs
+++ b/src/Ryujinx.Audio/Renderer/Server/CommandProcessingTimeEstimatorVersion2.cs
diff --git a/Ryujinx.Audio/Renderer/Server/CommandProcessingTimeEstimatorVersion3.cs b/src/Ryujinx.Audio/Renderer/Server/CommandProcessingTimeEstimatorVersion3.cs
index b79ca136..b79ca136 100644
--- a/Ryujinx.Audio/Renderer/Server/CommandProcessingTimeEstimatorVersion3.cs
+++ b/src/Ryujinx.Audio/Renderer/Server/CommandProcessingTimeEstimatorVersion3.cs
diff --git a/Ryujinx.Audio/Renderer/Server/CommandProcessingTimeEstimatorVersion4.cs b/src/Ryujinx.Audio/Renderer/Server/CommandProcessingTimeEstimatorVersion4.cs
index c60d8ebc..c60d8ebc 100644
--- a/Ryujinx.Audio/Renderer/Server/CommandProcessingTimeEstimatorVersion4.cs
+++ b/src/Ryujinx.Audio/Renderer/Server/CommandProcessingTimeEstimatorVersion4.cs
diff --git a/Ryujinx.Audio/Renderer/Server/CommandProcessingTimeEstimatorVersion5.cs b/src/Ryujinx.Audio/Renderer/Server/CommandProcessingTimeEstimatorVersion5.cs
index 2ed7e6a5..2ed7e6a5 100644
--- a/Ryujinx.Audio/Renderer/Server/CommandProcessingTimeEstimatorVersion5.cs
+++ b/src/Ryujinx.Audio/Renderer/Server/CommandProcessingTimeEstimatorVersion5.cs
diff --git a/Ryujinx.Audio/Renderer/Server/Effect/AuxiliaryBufferEffect.cs b/src/Ryujinx.Audio/Renderer/Server/Effect/AuxiliaryBufferEffect.cs
index 16406527..16406527 100644
--- a/Ryujinx.Audio/Renderer/Server/Effect/AuxiliaryBufferEffect.cs
+++ b/src/Ryujinx.Audio/Renderer/Server/Effect/AuxiliaryBufferEffect.cs
diff --git a/Ryujinx.Audio/Renderer/Server/Effect/BaseEffect.cs b/src/Ryujinx.Audio/Renderer/Server/Effect/BaseEffect.cs
index 825b3bf7..825b3bf7 100644
--- a/Ryujinx.Audio/Renderer/Server/Effect/BaseEffect.cs
+++ b/src/Ryujinx.Audio/Renderer/Server/Effect/BaseEffect.cs
diff --git a/Ryujinx.Audio/Renderer/Server/Effect/BiquadFilterEffect.cs b/src/Ryujinx.Audio/Renderer/Server/Effect/BiquadFilterEffect.cs
index de91046d..de91046d 100644
--- a/Ryujinx.Audio/Renderer/Server/Effect/BiquadFilterEffect.cs
+++ b/src/Ryujinx.Audio/Renderer/Server/Effect/BiquadFilterEffect.cs
diff --git a/Ryujinx.Audio/Renderer/Server/Effect/BufferMixEffect.cs b/src/Ryujinx.Audio/Renderer/Server/Effect/BufferMixEffect.cs
index 82c0a055..82c0a055 100644
--- a/Ryujinx.Audio/Renderer/Server/Effect/BufferMixEffect.cs
+++ b/src/Ryujinx.Audio/Renderer/Server/Effect/BufferMixEffect.cs
diff --git a/Ryujinx.Audio/Renderer/Server/Effect/CaptureBufferEffect.cs b/src/Ryujinx.Audio/Renderer/Server/Effect/CaptureBufferEffect.cs
index c445798d..c445798d 100644
--- a/Ryujinx.Audio/Renderer/Server/Effect/CaptureBufferEffect.cs
+++ b/src/Ryujinx.Audio/Renderer/Server/Effect/CaptureBufferEffect.cs
diff --git a/Ryujinx.Audio/Renderer/Server/Effect/CompressorEffect.cs b/src/Ryujinx.Audio/Renderer/Server/Effect/CompressorEffect.cs
index 32162abc..32162abc 100644
--- a/Ryujinx.Audio/Renderer/Server/Effect/CompressorEffect.cs
+++ b/src/Ryujinx.Audio/Renderer/Server/Effect/CompressorEffect.cs
diff --git a/Ryujinx.Audio/Renderer/Server/Effect/DelayEffect.cs b/src/Ryujinx.Audio/Renderer/Server/Effect/DelayEffect.cs
index 3f5d70bc..3f5d70bc 100644
--- a/Ryujinx.Audio/Renderer/Server/Effect/DelayEffect.cs
+++ b/src/Ryujinx.Audio/Renderer/Server/Effect/DelayEffect.cs
diff --git a/Ryujinx.Audio/Renderer/Server/Effect/EffectContext.cs b/src/Ryujinx.Audio/Renderer/Server/Effect/EffectContext.cs
index bfb6528b..bfb6528b 100644
--- a/Ryujinx.Audio/Renderer/Server/Effect/EffectContext.cs
+++ b/src/Ryujinx.Audio/Renderer/Server/Effect/EffectContext.cs
diff --git a/Ryujinx.Audio/Renderer/Server/Effect/LimiterEffect.cs b/src/Ryujinx.Audio/Renderer/Server/Effect/LimiterEffect.cs
index 6e17ef3d..6e17ef3d 100644
--- a/Ryujinx.Audio/Renderer/Server/Effect/LimiterEffect.cs
+++ b/src/Ryujinx.Audio/Renderer/Server/Effect/LimiterEffect.cs
diff --git a/Ryujinx.Audio/Renderer/Server/Effect/Reverb3dEffect.cs b/src/Ryujinx.Audio/Renderer/Server/Effect/Reverb3dEffect.cs
index 473fddb8..473fddb8 100644
--- a/Ryujinx.Audio/Renderer/Server/Effect/Reverb3dEffect.cs
+++ b/src/Ryujinx.Audio/Renderer/Server/Effect/Reverb3dEffect.cs
diff --git a/Ryujinx.Audio/Renderer/Server/Effect/ReverbEffect.cs b/src/Ryujinx.Audio/Renderer/Server/Effect/ReverbEffect.cs
index e1543fd1..e1543fd1 100644
--- a/Ryujinx.Audio/Renderer/Server/Effect/ReverbEffect.cs
+++ b/src/Ryujinx.Audio/Renderer/Server/Effect/ReverbEffect.cs
diff --git a/Ryujinx.Audio/Renderer/Server/Effect/UsageState.cs b/src/Ryujinx.Audio/Renderer/Server/Effect/UsageState.cs
index 8648aa2c..8648aa2c 100644
--- a/Ryujinx.Audio/Renderer/Server/Effect/UsageState.cs
+++ b/src/Ryujinx.Audio/Renderer/Server/Effect/UsageState.cs
diff --git a/Ryujinx.Audio/Renderer/Server/ICommandProcessingTimeEstimator.cs b/src/Ryujinx.Audio/Renderer/Server/ICommandProcessingTimeEstimator.cs
index 4872ddb3..4872ddb3 100644
--- a/Ryujinx.Audio/Renderer/Server/ICommandProcessingTimeEstimator.cs
+++ b/src/Ryujinx.Audio/Renderer/Server/ICommandProcessingTimeEstimator.cs
diff --git a/Ryujinx.Audio/Renderer/Server/MemoryPool/AddressInfo.cs b/src/Ryujinx.Audio/Renderer/Server/MemoryPool/AddressInfo.cs
index 5fd6b2b9..5fd6b2b9 100644
--- a/Ryujinx.Audio/Renderer/Server/MemoryPool/AddressInfo.cs
+++ b/src/Ryujinx.Audio/Renderer/Server/MemoryPool/AddressInfo.cs
diff --git a/Ryujinx.Audio/Renderer/Server/MemoryPool/MemoryPoolState.cs b/src/Ryujinx.Audio/Renderer/Server/MemoryPool/MemoryPoolState.cs
index 69466bab..69466bab 100644
--- a/Ryujinx.Audio/Renderer/Server/MemoryPool/MemoryPoolState.cs
+++ b/src/Ryujinx.Audio/Renderer/Server/MemoryPool/MemoryPoolState.cs
diff --git a/Ryujinx.Audio/Renderer/Server/MemoryPool/PoolMapper.cs b/src/Ryujinx.Audio/Renderer/Server/MemoryPool/PoolMapper.cs
index 6c79da15..6c79da15 100644
--- a/Ryujinx.Audio/Renderer/Server/MemoryPool/PoolMapper.cs
+++ b/src/Ryujinx.Audio/Renderer/Server/MemoryPool/PoolMapper.cs
diff --git a/Ryujinx.Audio/Renderer/Server/Mix/MixContext.cs b/src/Ryujinx.Audio/Renderer/Server/Mix/MixContext.cs
index cda6f737..cda6f737 100644
--- a/Ryujinx.Audio/Renderer/Server/Mix/MixContext.cs
+++ b/src/Ryujinx.Audio/Renderer/Server/Mix/MixContext.cs
diff --git a/Ryujinx.Audio/Renderer/Server/Mix/MixState.cs b/src/Ryujinx.Audio/Renderer/Server/Mix/MixState.cs
index 146e6781..146e6781 100644
--- a/Ryujinx.Audio/Renderer/Server/Mix/MixState.cs
+++ b/src/Ryujinx.Audio/Renderer/Server/Mix/MixState.cs
diff --git a/Ryujinx.Audio/Renderer/Server/Performance/IPerformanceDetailEntry.cs b/src/Ryujinx.Audio/Renderer/Server/Performance/IPerformanceDetailEntry.cs
index dbe59cb0..dbe59cb0 100644
--- a/Ryujinx.Audio/Renderer/Server/Performance/IPerformanceDetailEntry.cs
+++ b/src/Ryujinx.Audio/Renderer/Server/Performance/IPerformanceDetailEntry.cs
diff --git a/Ryujinx.Audio/Renderer/Server/Performance/IPerformanceEntry.cs b/src/Ryujinx.Audio/Renderer/Server/Performance/IPerformanceEntry.cs
index 9888a4cc..9888a4cc 100644
--- a/Ryujinx.Audio/Renderer/Server/Performance/IPerformanceEntry.cs
+++ b/src/Ryujinx.Audio/Renderer/Server/Performance/IPerformanceEntry.cs
diff --git a/Ryujinx.Audio/Renderer/Server/Performance/IPerformanceHeader.cs b/src/Ryujinx.Audio/Renderer/Server/Performance/IPerformanceHeader.cs
index 21876b4b..21876b4b 100644
--- a/Ryujinx.Audio/Renderer/Server/Performance/IPerformanceHeader.cs
+++ b/src/Ryujinx.Audio/Renderer/Server/Performance/IPerformanceHeader.cs
diff --git a/Ryujinx.Audio/Renderer/Server/Performance/PerformanceDetailVersion1.cs b/src/Ryujinx.Audio/Renderer/Server/Performance/PerformanceDetailVersion1.cs
index 22704c0d..22704c0d 100644
--- a/Ryujinx.Audio/Renderer/Server/Performance/PerformanceDetailVersion1.cs
+++ b/src/Ryujinx.Audio/Renderer/Server/Performance/PerformanceDetailVersion1.cs
diff --git a/Ryujinx.Audio/Renderer/Server/Performance/PerformanceDetailVersion2.cs b/src/Ryujinx.Audio/Renderer/Server/Performance/PerformanceDetailVersion2.cs
index 05ecda9b..05ecda9b 100644
--- a/Ryujinx.Audio/Renderer/Server/Performance/PerformanceDetailVersion2.cs
+++ b/src/Ryujinx.Audio/Renderer/Server/Performance/PerformanceDetailVersion2.cs
diff --git a/Ryujinx.Audio/Renderer/Server/Performance/PerformanceEntryAddresses.cs b/src/Ryujinx.Audio/Renderer/Server/Performance/PerformanceEntryAddresses.cs
index 1b8d8668..1b8d8668 100644
--- a/Ryujinx.Audio/Renderer/Server/Performance/PerformanceEntryAddresses.cs
+++ b/src/Ryujinx.Audio/Renderer/Server/Performance/PerformanceEntryAddresses.cs
diff --git a/Ryujinx.Audio/Renderer/Server/Performance/PerformanceEntryVersion1.cs b/src/Ryujinx.Audio/Renderer/Server/Performance/PerformanceEntryVersion1.cs
index fa2d3216..fa2d3216 100644
--- a/Ryujinx.Audio/Renderer/Server/Performance/PerformanceEntryVersion1.cs
+++ b/src/Ryujinx.Audio/Renderer/Server/Performance/PerformanceEntryVersion1.cs
diff --git a/Ryujinx.Audio/Renderer/Server/Performance/PerformanceEntryVersion2.cs b/src/Ryujinx.Audio/Renderer/Server/Performance/PerformanceEntryVersion2.cs
index 49d4b3ce..49d4b3ce 100644
--- a/Ryujinx.Audio/Renderer/Server/Performance/PerformanceEntryVersion2.cs
+++ b/src/Ryujinx.Audio/Renderer/Server/Performance/PerformanceEntryVersion2.cs
diff --git a/Ryujinx.Audio/Renderer/Server/Performance/PerformanceFrameHeaderVersion1.cs b/src/Ryujinx.Audio/Renderer/Server/Performance/PerformanceFrameHeaderVersion1.cs
index 5fe6bff0..5fe6bff0 100644
--- a/Ryujinx.Audio/Renderer/Server/Performance/PerformanceFrameHeaderVersion1.cs
+++ b/src/Ryujinx.Audio/Renderer/Server/Performance/PerformanceFrameHeaderVersion1.cs
diff --git a/Ryujinx.Audio/Renderer/Server/Performance/PerformanceFrameHeaderVersion2.cs b/src/Ryujinx.Audio/Renderer/Server/Performance/PerformanceFrameHeaderVersion2.cs
index a1822968..a1822968 100644
--- a/Ryujinx.Audio/Renderer/Server/Performance/PerformanceFrameHeaderVersion2.cs
+++ b/src/Ryujinx.Audio/Renderer/Server/Performance/PerformanceFrameHeaderVersion2.cs
diff --git a/Ryujinx.Audio/Renderer/Server/Performance/PerformanceManager.cs b/src/Ryujinx.Audio/Renderer/Server/Performance/PerformanceManager.cs
index f996441c..f996441c 100644
--- a/Ryujinx.Audio/Renderer/Server/Performance/PerformanceManager.cs
+++ b/src/Ryujinx.Audio/Renderer/Server/Performance/PerformanceManager.cs
diff --git a/Ryujinx.Audio/Renderer/Server/Performance/PerformanceManagerGeneric.cs b/src/Ryujinx.Audio/Renderer/Server/Performance/PerformanceManagerGeneric.cs
index 18e77391..18e77391 100644
--- a/Ryujinx.Audio/Renderer/Server/Performance/PerformanceManagerGeneric.cs
+++ b/src/Ryujinx.Audio/Renderer/Server/Performance/PerformanceManagerGeneric.cs
diff --git a/Ryujinx.Audio/Renderer/Server/RendererSystemContext.cs b/src/Ryujinx.Audio/Renderer/Server/RendererSystemContext.cs
index 16456780..16456780 100644
--- a/Ryujinx.Audio/Renderer/Server/RendererSystemContext.cs
+++ b/src/Ryujinx.Audio/Renderer/Server/RendererSystemContext.cs
diff --git a/Ryujinx.Audio/Renderer/Server/Sink/BaseSink.cs b/src/Ryujinx.Audio/Renderer/Server/Sink/BaseSink.cs
index f7b63997..f7b63997 100644
--- a/Ryujinx.Audio/Renderer/Server/Sink/BaseSink.cs
+++ b/src/Ryujinx.Audio/Renderer/Server/Sink/BaseSink.cs
diff --git a/Ryujinx.Audio/Renderer/Server/Sink/CircularBufferSink.cs b/src/Ryujinx.Audio/Renderer/Server/Sink/CircularBufferSink.cs
index 722d8c4b..722d8c4b 100644
--- a/Ryujinx.Audio/Renderer/Server/Sink/CircularBufferSink.cs
+++ b/src/Ryujinx.Audio/Renderer/Server/Sink/CircularBufferSink.cs
diff --git a/Ryujinx.Audio/Renderer/Server/Sink/DeviceSink.cs b/src/Ryujinx.Audio/Renderer/Server/Sink/DeviceSink.cs
index de345d3a..de345d3a 100644
--- a/Ryujinx.Audio/Renderer/Server/Sink/DeviceSink.cs
+++ b/src/Ryujinx.Audio/Renderer/Server/Sink/DeviceSink.cs
diff --git a/Ryujinx.Audio/Renderer/Server/Sink/SinkContext.cs b/src/Ryujinx.Audio/Renderer/Server/Sink/SinkContext.cs
index b57d3990..b57d3990 100644
--- a/Ryujinx.Audio/Renderer/Server/Sink/SinkContext.cs
+++ b/src/Ryujinx.Audio/Renderer/Server/Sink/SinkContext.cs
diff --git a/Ryujinx.Audio/Renderer/Server/Splitter/SplitterContext.cs b/src/Ryujinx.Audio/Renderer/Server/Splitter/SplitterContext.cs
index 91877cdd..91877cdd 100644
--- a/Ryujinx.Audio/Renderer/Server/Splitter/SplitterContext.cs
+++ b/src/Ryujinx.Audio/Renderer/Server/Splitter/SplitterContext.cs
diff --git a/Ryujinx.Audio/Renderer/Server/Splitter/SplitterDestination.cs b/src/Ryujinx.Audio/Renderer/Server/Splitter/SplitterDestination.cs
index c074e4a7..c074e4a7 100644
--- a/Ryujinx.Audio/Renderer/Server/Splitter/SplitterDestination.cs
+++ b/src/Ryujinx.Audio/Renderer/Server/Splitter/SplitterDestination.cs
diff --git a/Ryujinx.Audio/Renderer/Server/Splitter/SplitterState.cs b/src/Ryujinx.Audio/Renderer/Server/Splitter/SplitterState.cs
index 15a0c6ba..15a0c6ba 100644
--- a/Ryujinx.Audio/Renderer/Server/Splitter/SplitterState.cs
+++ b/src/Ryujinx.Audio/Renderer/Server/Splitter/SplitterState.cs
diff --git a/Ryujinx.Audio/Renderer/Server/StateUpdater.cs b/src/Ryujinx.Audio/Renderer/Server/StateUpdater.cs
index 5cf539c6..5cf539c6 100644
--- a/Ryujinx.Audio/Renderer/Server/StateUpdater.cs
+++ b/src/Ryujinx.Audio/Renderer/Server/StateUpdater.cs
diff --git a/Ryujinx.Audio/Renderer/Server/Types/AudioRendererExecutionMode.cs b/src/Ryujinx.Audio/Renderer/Server/Types/AudioRendererExecutionMode.cs
index 5d82ce0b..5d82ce0b 100644
--- a/Ryujinx.Audio/Renderer/Server/Types/AudioRendererExecutionMode.cs
+++ b/src/Ryujinx.Audio/Renderer/Server/Types/AudioRendererExecutionMode.cs
diff --git a/Ryujinx.Audio/Renderer/Server/Types/AudioRendererRenderingDevice.cs b/src/Ryujinx.Audio/Renderer/Server/Types/AudioRendererRenderingDevice.cs
index 5ad27b0b..5ad27b0b 100644
--- a/Ryujinx.Audio/Renderer/Server/Types/AudioRendererRenderingDevice.cs
+++ b/src/Ryujinx.Audio/Renderer/Server/Types/AudioRendererRenderingDevice.cs
diff --git a/Ryujinx.Audio/Renderer/Server/Types/PlayState.cs b/src/Ryujinx.Audio/Renderer/Server/Types/PlayState.cs
index 25cc34a8..25cc34a8 100644
--- a/Ryujinx.Audio/Renderer/Server/Types/PlayState.cs
+++ b/src/Ryujinx.Audio/Renderer/Server/Types/PlayState.cs
diff --git a/Ryujinx.Audio/Renderer/Server/Upsampler/UpsamplerBufferState.cs b/src/Ryujinx.Audio/Renderer/Server/Upsampler/UpsamplerBufferState.cs
index a45fa8e5..a45fa8e5 100644
--- a/Ryujinx.Audio/Renderer/Server/Upsampler/UpsamplerBufferState.cs
+++ b/src/Ryujinx.Audio/Renderer/Server/Upsampler/UpsamplerBufferState.cs
diff --git a/Ryujinx.Audio/Renderer/Server/Upsampler/UpsamplerManager.cs b/src/Ryujinx.Audio/Renderer/Server/Upsampler/UpsamplerManager.cs
index b37988fe..b37988fe 100644
--- a/Ryujinx.Audio/Renderer/Server/Upsampler/UpsamplerManager.cs
+++ b/src/Ryujinx.Audio/Renderer/Server/Upsampler/UpsamplerManager.cs
diff --git a/Ryujinx.Audio/Renderer/Server/Upsampler/UpsamplerState.cs b/src/Ryujinx.Audio/Renderer/Server/Upsampler/UpsamplerState.cs
index e508f35b..e508f35b 100644
--- a/Ryujinx.Audio/Renderer/Server/Upsampler/UpsamplerState.cs
+++ b/src/Ryujinx.Audio/Renderer/Server/Upsampler/UpsamplerState.cs
diff --git a/Ryujinx.Audio/Renderer/Server/Voice/VoiceChannelResource.cs b/src/Ryujinx.Audio/Renderer/Server/Voice/VoiceChannelResource.cs
index 939d9294..939d9294 100644
--- a/Ryujinx.Audio/Renderer/Server/Voice/VoiceChannelResource.cs
+++ b/src/Ryujinx.Audio/Renderer/Server/Voice/VoiceChannelResource.cs
diff --git a/Ryujinx.Audio/Renderer/Server/Voice/VoiceContext.cs b/src/Ryujinx.Audio/Renderer/Server/Voice/VoiceContext.cs
index 1c57b71b..1c57b71b 100644
--- a/Ryujinx.Audio/Renderer/Server/Voice/VoiceContext.cs
+++ b/src/Ryujinx.Audio/Renderer/Server/Voice/VoiceContext.cs
diff --git a/Ryujinx.Audio/Renderer/Server/Voice/VoiceState.cs b/src/Ryujinx.Audio/Renderer/Server/Voice/VoiceState.cs
index 0bf53c54..0bf53c54 100644
--- a/Ryujinx.Audio/Renderer/Server/Voice/VoiceState.cs
+++ b/src/Ryujinx.Audio/Renderer/Server/Voice/VoiceState.cs
diff --git a/Ryujinx.Audio/Renderer/Server/Voice/WaveBuffer.cs b/src/Ryujinx.Audio/Renderer/Server/Voice/WaveBuffer.cs
index 4bf7dd28..4bf7dd28 100644
--- a/Ryujinx.Audio/Renderer/Server/Voice/WaveBuffer.cs
+++ b/src/Ryujinx.Audio/Renderer/Server/Voice/WaveBuffer.cs
diff --git a/Ryujinx.Audio/Renderer/Utils/AudioProcessorMemoryManager.cs b/src/Ryujinx.Audio/Renderer/Utils/AudioProcessorMemoryManager.cs
index 973f0672..973f0672 100644
--- a/Ryujinx.Audio/Renderer/Utils/AudioProcessorMemoryManager.cs
+++ b/src/Ryujinx.Audio/Renderer/Utils/AudioProcessorMemoryManager.cs
diff --git a/Ryujinx.Audio/Renderer/Utils/BitArray.cs b/src/Ryujinx.Audio/Renderer/Utils/BitArray.cs
index 8b105477..8b105477 100644
--- a/Ryujinx.Audio/Renderer/Utils/BitArray.cs
+++ b/src/Ryujinx.Audio/Renderer/Utils/BitArray.cs
diff --git a/Ryujinx.Audio/Renderer/Utils/FileHardwareDevice.cs b/src/Ryujinx.Audio/Renderer/Utils/FileHardwareDevice.cs
index d49313ea..d49313ea 100644
--- a/Ryujinx.Audio/Renderer/Utils/FileHardwareDevice.cs
+++ b/src/Ryujinx.Audio/Renderer/Utils/FileHardwareDevice.cs
diff --git a/Ryujinx.Audio/Renderer/Utils/Mailbox.cs b/src/Ryujinx.Audio/Renderer/Utils/Mailbox.cs
index 35c71ae3..35c71ae3 100644
--- a/Ryujinx.Audio/Renderer/Utils/Mailbox.cs
+++ b/src/Ryujinx.Audio/Renderer/Utils/Mailbox.cs
diff --git a/Ryujinx.Audio/Renderer/Utils/Math/Matrix2x2.cs b/src/Ryujinx.Audio/Renderer/Utils/Math/Matrix2x2.cs
index 5b513aff..5b513aff 100644
--- a/Ryujinx.Audio/Renderer/Utils/Math/Matrix2x2.cs
+++ b/src/Ryujinx.Audio/Renderer/Utils/Math/Matrix2x2.cs
diff --git a/Ryujinx.Audio/Renderer/Utils/Math/Matrix6x6.cs b/src/Ryujinx.Audio/Renderer/Utils/Math/Matrix6x6.cs
index 415a81fd..415a81fd 100644
--- a/Ryujinx.Audio/Renderer/Utils/Math/Matrix6x6.cs
+++ b/src/Ryujinx.Audio/Renderer/Utils/Math/Matrix6x6.cs
diff --git a/Ryujinx.Audio/Renderer/Utils/Math/MatrixHelper.cs b/src/Ryujinx.Audio/Renderer/Utils/Math/MatrixHelper.cs
index 209a81c4..209a81c4 100644
--- a/Ryujinx.Audio/Renderer/Utils/Math/MatrixHelper.cs
+++ b/src/Ryujinx.Audio/Renderer/Utils/Math/MatrixHelper.cs
diff --git a/Ryujinx.Audio/Renderer/Utils/Math/Vector6.cs b/src/Ryujinx.Audio/Renderer/Utils/Math/Vector6.cs
index 81bcb698..81bcb698 100644
--- a/Ryujinx.Audio/Renderer/Utils/Math/Vector6.cs
+++ b/src/Ryujinx.Audio/Renderer/Utils/Math/Vector6.cs
diff --git a/Ryujinx.Audio/Renderer/Utils/SpanIOHelper.cs b/src/Ryujinx.Audio/Renderer/Utils/SpanIOHelper.cs
index 103fb6a0..103fb6a0 100644
--- a/Ryujinx.Audio/Renderer/Utils/SpanIOHelper.cs
+++ b/src/Ryujinx.Audio/Renderer/Utils/SpanIOHelper.cs
diff --git a/Ryujinx.Audio/Renderer/Utils/SpanMemoryManager.cs b/src/Ryujinx.Audio/Renderer/Utils/SpanMemoryManager.cs
index 2c48da6a..2c48da6a 100644
--- a/Ryujinx.Audio/Renderer/Utils/SpanMemoryManager.cs
+++ b/src/Ryujinx.Audio/Renderer/Utils/SpanMemoryManager.cs
diff --git a/Ryujinx.Audio/Renderer/Utils/SplitterHardwareDevice.cs b/src/Ryujinx.Audio/Renderer/Utils/SplitterHardwareDevice.cs
index 18396078..18396078 100644
--- a/Ryujinx.Audio/Renderer/Utils/SplitterHardwareDevice.cs
+++ b/src/Ryujinx.Audio/Renderer/Utils/SplitterHardwareDevice.cs
diff --git a/Ryujinx.Audio/ResultCode.cs b/src/Ryujinx.Audio/ResultCode.cs
index 1d05ac65..1d05ac65 100644
--- a/Ryujinx.Audio/ResultCode.cs
+++ b/src/Ryujinx.Audio/ResultCode.cs
diff --git a/Ryujinx.Audio/Ryujinx.Audio.csproj b/src/Ryujinx.Audio/Ryujinx.Audio.csproj
index 4a159eb5..4a159eb5 100644
--- a/Ryujinx.Audio/Ryujinx.Audio.csproj
+++ b/src/Ryujinx.Audio/Ryujinx.Audio.csproj
diff --git a/Ryujinx.Ava/App.axaml b/src/Ryujinx.Ava/App.axaml
index 72bc0dee..72bc0dee 100644
--- a/Ryujinx.Ava/App.axaml
+++ b/src/Ryujinx.Ava/App.axaml
diff --git a/Ryujinx.Ava/App.axaml.cs b/src/Ryujinx.Ava/App.axaml.cs
index e36cbfdd..e36cbfdd 100644
--- a/Ryujinx.Ava/App.axaml.cs
+++ b/src/Ryujinx.Ava/App.axaml.cs
diff --git a/Ryujinx.Ava/AppHost.cs b/src/Ryujinx.Ava/AppHost.cs
index 957a1c9d..957a1c9d 100644
--- a/Ryujinx.Ava/AppHost.cs
+++ b/src/Ryujinx.Ava/AppHost.cs
diff --git a/Ryujinx.Ava/Assets/Fonts/SegoeFluentIcons.ttf b/src/Ryujinx.Ava/Assets/Fonts/SegoeFluentIcons.ttf
index 8f05a4bb..8f05a4bb 100644
--- a/Ryujinx.Ava/Assets/Fonts/SegoeFluentIcons.ttf
+++ b/src/Ryujinx.Ava/Assets/Fonts/SegoeFluentIcons.ttf
Binary files differ
diff --git a/Ryujinx.Ava/Assets/Locales/de_DE.json b/src/Ryujinx.Ava/Assets/Locales/de_DE.json
index 8bf00d7e..8bf00d7e 100644
--- a/Ryujinx.Ava/Assets/Locales/de_DE.json
+++ b/src/Ryujinx.Ava/Assets/Locales/de_DE.json
diff --git a/Ryujinx.Ava/Assets/Locales/el_GR.json b/src/Ryujinx.Ava/Assets/Locales/el_GR.json
index de889736..de889736 100644
--- a/Ryujinx.Ava/Assets/Locales/el_GR.json
+++ b/src/Ryujinx.Ava/Assets/Locales/el_GR.json
diff --git a/Ryujinx.Ava/Assets/Locales/en_US.json b/src/Ryujinx.Ava/Assets/Locales/en_US.json
index 3a4bfc65..3a4bfc65 100644
--- a/Ryujinx.Ava/Assets/Locales/en_US.json
+++ b/src/Ryujinx.Ava/Assets/Locales/en_US.json
diff --git a/Ryujinx.Ava/Assets/Locales/es_ES.json b/src/Ryujinx.Ava/Assets/Locales/es_ES.json
index 13b05fc0..13b05fc0 100644
--- a/Ryujinx.Ava/Assets/Locales/es_ES.json
+++ b/src/Ryujinx.Ava/Assets/Locales/es_ES.json
diff --git a/Ryujinx.Ava/Assets/Locales/fr_FR.json b/src/Ryujinx.Ava/Assets/Locales/fr_FR.json
index fad46751..fad46751 100644
--- a/Ryujinx.Ava/Assets/Locales/fr_FR.json
+++ b/src/Ryujinx.Ava/Assets/Locales/fr_FR.json
diff --git a/Ryujinx.Ava/Assets/Locales/it_IT.json b/src/Ryujinx.Ava/Assets/Locales/it_IT.json
index 0ae02749..0ae02749 100644
--- a/Ryujinx.Ava/Assets/Locales/it_IT.json
+++ b/src/Ryujinx.Ava/Assets/Locales/it_IT.json
diff --git a/Ryujinx.Ava/Assets/Locales/ja_JP.json b/src/Ryujinx.Ava/Assets/Locales/ja_JP.json
index 581443f5..581443f5 100644
--- a/Ryujinx.Ava/Assets/Locales/ja_JP.json
+++ b/src/Ryujinx.Ava/Assets/Locales/ja_JP.json
diff --git a/Ryujinx.Ava/Assets/Locales/ko_KR.json b/src/Ryujinx.Ava/Assets/Locales/ko_KR.json
index adf7f61e..adf7f61e 100644
--- a/Ryujinx.Ava/Assets/Locales/ko_KR.json
+++ b/src/Ryujinx.Ava/Assets/Locales/ko_KR.json
diff --git a/Ryujinx.Ava/Assets/Locales/pl_PL.json b/src/Ryujinx.Ava/Assets/Locales/pl_PL.json
index 077ccc2d..077ccc2d 100644
--- a/Ryujinx.Ava/Assets/Locales/pl_PL.json
+++ b/src/Ryujinx.Ava/Assets/Locales/pl_PL.json
diff --git a/Ryujinx.Ava/Assets/Locales/pt_BR.json b/src/Ryujinx.Ava/Assets/Locales/pt_BR.json
index effe8c02..effe8c02 100644
--- a/Ryujinx.Ava/Assets/Locales/pt_BR.json
+++ b/src/Ryujinx.Ava/Assets/Locales/pt_BR.json
diff --git a/Ryujinx.Ava/Assets/Locales/ru_RU.json b/src/Ryujinx.Ava/Assets/Locales/ru_RU.json
index ea60bd91..ea60bd91 100644
--- a/Ryujinx.Ava/Assets/Locales/ru_RU.json
+++ b/src/Ryujinx.Ava/Assets/Locales/ru_RU.json
diff --git a/Ryujinx.Ava/Assets/Locales/tr_TR.json b/src/Ryujinx.Ava/Assets/Locales/tr_TR.json
index decc3cfd..decc3cfd 100644
--- a/Ryujinx.Ava/Assets/Locales/tr_TR.json
+++ b/src/Ryujinx.Ava/Assets/Locales/tr_TR.json
diff --git a/Ryujinx.Ava/Assets/Locales/uk_UA.json b/src/Ryujinx.Ava/Assets/Locales/uk_UA.json
index 111337a4..111337a4 100644
--- a/Ryujinx.Ava/Assets/Locales/uk_UA.json
+++ b/src/Ryujinx.Ava/Assets/Locales/uk_UA.json
diff --git a/Ryujinx.Ava/Assets/Locales/zh_CN.json b/src/Ryujinx.Ava/Assets/Locales/zh_CN.json
index 25dc3cba..25dc3cba 100644
--- a/Ryujinx.Ava/Assets/Locales/zh_CN.json
+++ b/src/Ryujinx.Ava/Assets/Locales/zh_CN.json
diff --git a/Ryujinx.Ava/Assets/Locales/zh_TW.json b/src/Ryujinx.Ava/Assets/Locales/zh_TW.json
index 940282a0..940282a0 100644
--- a/Ryujinx.Ava/Assets/Locales/zh_TW.json
+++ b/src/Ryujinx.Ava/Assets/Locales/zh_TW.json
diff --git a/Ryujinx.Ava/Assets/Styles/BaseDark.xaml b/src/Ryujinx.Ava/Assets/Styles/BaseDark.xaml
index c7f6266f..c7f6266f 100644
--- a/Ryujinx.Ava/Assets/Styles/BaseDark.xaml
+++ b/src/Ryujinx.Ava/Assets/Styles/BaseDark.xaml
diff --git a/Ryujinx.Ava/Assets/Styles/BaseLight.xaml b/src/Ryujinx.Ava/Assets/Styles/BaseLight.xaml
index 70cb051c..70cb051c 100644
--- a/Ryujinx.Ava/Assets/Styles/BaseLight.xaml
+++ b/src/Ryujinx.Ava/Assets/Styles/BaseLight.xaml
diff --git a/Ryujinx.Ava/Assets/Styles/Styles.xaml b/src/Ryujinx.Ava/Assets/Styles/Styles.xaml
index 681b4fea..681b4fea 100644
--- a/Ryujinx.Ava/Assets/Styles/Styles.xaml
+++ b/src/Ryujinx.Ava/Assets/Styles/Styles.xaml
diff --git a/Ryujinx.Ava/Common/ApplicationHelper.cs b/src/Ryujinx.Ava/Common/ApplicationHelper.cs
index 8c36a636..8c36a636 100644
--- a/Ryujinx.Ava/Common/ApplicationHelper.cs
+++ b/src/Ryujinx.Ava/Common/ApplicationHelper.cs
diff --git a/Ryujinx.Ava/Common/ApplicationSort.cs b/src/Ryujinx.Ava/Common/ApplicationSort.cs
index 6ff06a1e..6ff06a1e 100644
--- a/Ryujinx.Ava/Common/ApplicationSort.cs
+++ b/src/Ryujinx.Ava/Common/ApplicationSort.cs
diff --git a/Ryujinx.Ava/Common/KeyboardHotkeyState.cs b/src/Ryujinx.Ava/Common/KeyboardHotkeyState.cs
index e85bdf34..e85bdf34 100644
--- a/Ryujinx.Ava/Common/KeyboardHotkeyState.cs
+++ b/src/Ryujinx.Ava/Common/KeyboardHotkeyState.cs
diff --git a/Ryujinx.Ava/Common/Locale/LocaleExtension.cs b/src/Ryujinx.Ava/Common/Locale/LocaleExtension.cs
index b82c405d..b82c405d 100644
--- a/Ryujinx.Ava/Common/Locale/LocaleExtension.cs
+++ b/src/Ryujinx.Ava/Common/Locale/LocaleExtension.cs
diff --git a/Ryujinx.Ava/Common/Locale/LocaleManager.cs b/src/Ryujinx.Ava/Common/Locale/LocaleManager.cs
index 464ab780..464ab780 100644
--- a/Ryujinx.Ava/Common/Locale/LocaleManager.cs
+++ b/src/Ryujinx.Ava/Common/Locale/LocaleManager.cs
diff --git a/Ryujinx.Ava/Input/AvaloniaKeyboard.cs b/src/Ryujinx.Ava/Input/AvaloniaKeyboard.cs
index d40ebbd2..d40ebbd2 100644
--- a/Ryujinx.Ava/Input/AvaloniaKeyboard.cs
+++ b/src/Ryujinx.Ava/Input/AvaloniaKeyboard.cs
diff --git a/Ryujinx.Ava/Input/AvaloniaKeyboardDriver.cs b/src/Ryujinx.Ava/Input/AvaloniaKeyboardDriver.cs
index edcdb52f..edcdb52f 100644
--- a/Ryujinx.Ava/Input/AvaloniaKeyboardDriver.cs
+++ b/src/Ryujinx.Ava/Input/AvaloniaKeyboardDriver.cs
diff --git a/Ryujinx.Ava/Input/AvaloniaKeyboardMappingHelper.cs b/src/Ryujinx.Ava/Input/AvaloniaKeyboardMappingHelper.cs
index 0cc04d0a..0cc04d0a 100644
--- a/Ryujinx.Ava/Input/AvaloniaKeyboardMappingHelper.cs
+++ b/src/Ryujinx.Ava/Input/AvaloniaKeyboardMappingHelper.cs
diff --git a/Ryujinx.Ava/Input/AvaloniaMouse.cs b/src/Ryujinx.Ava/Input/AvaloniaMouse.cs
index 3a9c91c0..3a9c91c0 100644
--- a/Ryujinx.Ava/Input/AvaloniaMouse.cs
+++ b/src/Ryujinx.Ava/Input/AvaloniaMouse.cs
diff --git a/Ryujinx.Ava/Input/AvaloniaMouseDriver.cs b/src/Ryujinx.Ava/Input/AvaloniaMouseDriver.cs
index b3e1a21a..b3e1a21a 100644
--- a/Ryujinx.Ava/Input/AvaloniaMouseDriver.cs
+++ b/src/Ryujinx.Ava/Input/AvaloniaMouseDriver.cs
diff --git a/Ryujinx.Ava/Modules/Updater/Updater.cs b/src/Ryujinx.Ava/Modules/Updater/Updater.cs
index 05429935..05429935 100644
--- a/Ryujinx.Ava/Modules/Updater/Updater.cs
+++ b/src/Ryujinx.Ava/Modules/Updater/Updater.cs
diff --git a/Ryujinx.Ava/Program.cs b/src/Ryujinx.Ava/Program.cs
index 7f35c62a..7f35c62a 100644
--- a/Ryujinx.Ava/Program.cs
+++ b/src/Ryujinx.Ava/Program.cs
diff --git a/Ryujinx.Ava/Ryujinx.Ava.csproj b/src/Ryujinx.Ava/Ryujinx.Ava.csproj
index 325ceb2d..7509798b 100644
--- a/Ryujinx.Ava/Ryujinx.Ava.csproj
+++ b/src/Ryujinx.Ava/Ryujinx.Ava.csproj
@@ -13,7 +13,7 @@
</PropertyGroup>
<Target Name="PostBuild" AfterTargets="PostBuildEvent" Condition="$([MSBuild]::IsOSPlatform('OSX'))">
- <Exec Command="codesign --entitlements '$(ProjectDir)..\distribution\macos\entitlements.xml' -f --deep -s $(SigningCertificate) '$(TargetDir)$(TargetName)'" />
+ <Exec Command="codesign --entitlements '$(ProjectDir)..\..\distribution\macos\entitlements.xml' -f --deep -s $(SigningCertificate) '$(TargetDir)$(TargetName)'" />
</Target>
<PropertyGroup Condition="'$(RuntimeIdentifier)' != ''">
@@ -67,25 +67,25 @@
</ItemGroup>
<ItemGroup>
- <Content Include="..\distribution\windows\alsoft.ini" Condition="'$(RuntimeIdentifier)' != 'linux-x64' AND '$(RuntimeIdentifier)' != 'osx-x64'">
+ <Content Include="..\..\distribution\windows\alsoft.ini" Condition="'$(RuntimeIdentifier)' != 'linux-x64' AND '$(RuntimeIdentifier)' != 'osx-x64'">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
<TargetPath>alsoft.ini</TargetPath>
</Content>
- <Content Include="..\distribution\legal\THIRDPARTY.md">
+ <Content Include="..\..\distribution\legal\THIRDPARTY.md">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
<TargetPath>THIRDPARTY.md</TargetPath>
</Content>
- <Content Include="..\LICENSE.txt">
+ <Content Include="..\..\LICENSE.txt">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
<TargetPath>LICENSE.txt</TargetPath>
</Content>
</ItemGroup>
<ItemGroup Condition="'$(RuntimeIdentifier)' == 'linux-x64'">
- <Content Include="..\distribution\linux\Ryujinx.sh">
+ <Content Include="..\..\distribution\linux\Ryujinx.sh">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
- <Content Include="..\distribution\linux\mime\Ryujinx.xml">
+ <Content Include="..\..\distribution\linux\mime\Ryujinx.xml">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
<TargetPath>mime\Ryujinx.xml</TargetPath>
</Content>
@@ -189,6 +189,6 @@
<EmbeddedResource Include="Assets\Styles\Styles.xaml" />
</ItemGroup>
<ItemGroup>
- <AdditionalFiles Include="Assets\Locales\en_US.json" />
+ <AdditionalFiles Include="Assets\Locales\en_US.json" />
</ItemGroup>
</Project>
diff --git a/Ryujinx.Ava/Ryujinx.ico b/src/Ryujinx.Ava/Ryujinx.ico
index edf1b93f..edf1b93f 100644
--- a/Ryujinx.Ava/Ryujinx.ico
+++ b/src/Ryujinx.Ava/Ryujinx.ico
Binary files differ
diff --git a/Ryujinx.Ava/UI/Applet/AvaHostUiHandler.cs b/src/Ryujinx.Ava/UI/Applet/AvaHostUiHandler.cs
index c87308cf..c87308cf 100644
--- a/Ryujinx.Ava/UI/Applet/AvaHostUiHandler.cs
+++ b/src/Ryujinx.Ava/UI/Applet/AvaHostUiHandler.cs
diff --git a/Ryujinx.Ava/UI/Applet/AvaloniaDynamicTextInputHandler.cs b/src/Ryujinx.Ava/UI/Applet/AvaloniaDynamicTextInputHandler.cs
index 2dd65e36..2dd65e36 100644
--- a/Ryujinx.Ava/UI/Applet/AvaloniaDynamicTextInputHandler.cs
+++ b/src/Ryujinx.Ava/UI/Applet/AvaloniaDynamicTextInputHandler.cs
diff --git a/Ryujinx.Ava/UI/Applet/AvaloniaHostUiTheme.cs b/src/Ryujinx.Ava/UI/Applet/AvaloniaHostUiTheme.cs
index 77c7a2d2..77c7a2d2 100644
--- a/Ryujinx.Ava/UI/Applet/AvaloniaHostUiTheme.cs
+++ b/src/Ryujinx.Ava/UI/Applet/AvaloniaHostUiTheme.cs
diff --git a/Ryujinx.Ava/UI/Applet/ErrorAppletWindow.axaml b/src/Ryujinx.Ava/UI/Applet/ErrorAppletWindow.axaml
index 211b4725..211b4725 100644
--- a/Ryujinx.Ava/UI/Applet/ErrorAppletWindow.axaml
+++ b/src/Ryujinx.Ava/UI/Applet/ErrorAppletWindow.axaml
diff --git a/Ryujinx.Ava/UI/Applet/ErrorAppletWindow.axaml.cs b/src/Ryujinx.Ava/UI/Applet/ErrorAppletWindow.axaml.cs
index 4134797b..4134797b 100644
--- a/Ryujinx.Ava/UI/Applet/ErrorAppletWindow.axaml.cs
+++ b/src/Ryujinx.Ava/UI/Applet/ErrorAppletWindow.axaml.cs
diff --git a/Ryujinx.Ava/UI/Applet/SwkbdAppletDialog.axaml b/src/Ryujinx.Ava/UI/Applet/SwkbdAppletDialog.axaml
index 65504569..65504569 100644
--- a/Ryujinx.Ava/UI/Applet/SwkbdAppletDialog.axaml
+++ b/src/Ryujinx.Ava/UI/Applet/SwkbdAppletDialog.axaml
diff --git a/Ryujinx.Ava/UI/Applet/SwkbdAppletDialog.axaml.cs b/src/Ryujinx.Ava/UI/Applet/SwkbdAppletDialog.axaml.cs
index cb69e96b..cb69e96b 100644
--- a/Ryujinx.Ava/UI/Applet/SwkbdAppletDialog.axaml.cs
+++ b/src/Ryujinx.Ava/UI/Applet/SwkbdAppletDialog.axaml.cs
diff --git a/Ryujinx.Ava/UI/Controls/GameGridView.axaml b/src/Ryujinx.Ava/UI/Controls/GameGridView.axaml
index 32cabfaa..32cabfaa 100644
--- a/Ryujinx.Ava/UI/Controls/GameGridView.axaml
+++ b/src/Ryujinx.Ava/UI/Controls/GameGridView.axaml
diff --git a/Ryujinx.Ava/UI/Controls/GameGridView.axaml.cs b/src/Ryujinx.Ava/UI/Controls/GameGridView.axaml.cs
index aa76b7c9..aa76b7c9 100644
--- a/Ryujinx.Ava/UI/Controls/GameGridView.axaml.cs
+++ b/src/Ryujinx.Ava/UI/Controls/GameGridView.axaml.cs
diff --git a/Ryujinx.Ava/UI/Controls/GameListView.axaml b/src/Ryujinx.Ava/UI/Controls/GameListView.axaml
index c13eaae8..c13eaae8 100644
--- a/Ryujinx.Ava/UI/Controls/GameListView.axaml
+++ b/src/Ryujinx.Ava/UI/Controls/GameListView.axaml
diff --git a/Ryujinx.Ava/UI/Controls/GameListView.axaml.cs b/src/Ryujinx.Ava/UI/Controls/GameListView.axaml.cs
index a6449709..a6449709 100644
--- a/Ryujinx.Ava/UI/Controls/GameListView.axaml.cs
+++ b/src/Ryujinx.Ava/UI/Controls/GameListView.axaml.cs
diff --git a/Ryujinx.Ava/UI/Controls/NavigationDialogHost.axaml b/src/Ryujinx.Ava/UI/Controls/NavigationDialogHost.axaml
index bf34b303..bf34b303 100644
--- a/Ryujinx.Ava/UI/Controls/NavigationDialogHost.axaml
+++ b/src/Ryujinx.Ava/UI/Controls/NavigationDialogHost.axaml
diff --git a/Ryujinx.Ava/UI/Controls/NavigationDialogHost.axaml.cs b/src/Ryujinx.Ava/UI/Controls/NavigationDialogHost.axaml.cs
index 1b857fae..1b857fae 100644
--- a/Ryujinx.Ava/UI/Controls/NavigationDialogHost.axaml.cs
+++ b/src/Ryujinx.Ava/UI/Controls/NavigationDialogHost.axaml.cs
diff --git a/Ryujinx.Ava/UI/Controls/UpdateWaitWindow.axaml b/src/Ryujinx.Ava/UI/Controls/UpdateWaitWindow.axaml
index c5041230..c5041230 100644
--- a/Ryujinx.Ava/UI/Controls/UpdateWaitWindow.axaml
+++ b/src/Ryujinx.Ava/UI/Controls/UpdateWaitWindow.axaml
diff --git a/Ryujinx.Ava/UI/Controls/UpdateWaitWindow.axaml.cs b/src/Ryujinx.Ava/UI/Controls/UpdateWaitWindow.axaml.cs
index 80a437e3..80a437e3 100644
--- a/Ryujinx.Ava/UI/Controls/UpdateWaitWindow.axaml.cs
+++ b/src/Ryujinx.Ava/UI/Controls/UpdateWaitWindow.axaml.cs
diff --git a/Ryujinx.Ava/UI/Helpers/ApplicationOpenedEventArgs.cs b/src/Ryujinx.Ava/UI/Helpers/ApplicationOpenedEventArgs.cs
index ebf5c16e..ebf5c16e 100644
--- a/Ryujinx.Ava/UI/Helpers/ApplicationOpenedEventArgs.cs
+++ b/src/Ryujinx.Ava/UI/Helpers/ApplicationOpenedEventArgs.cs
diff --git a/Ryujinx.Ava/UI/Helpers/BitmapArrayValueConverter.cs b/src/Ryujinx.Ava/UI/Helpers/BitmapArrayValueConverter.cs
index 3fd368f8..3fd368f8 100644
--- a/Ryujinx.Ava/UI/Helpers/BitmapArrayValueConverter.cs
+++ b/src/Ryujinx.Ava/UI/Helpers/BitmapArrayValueConverter.cs
diff --git a/Ryujinx.Ava/UI/Helpers/ButtonKeyAssigner.cs b/src/Ryujinx.Ava/UI/Helpers/ButtonKeyAssigner.cs
index 6730b571..6730b571 100644
--- a/Ryujinx.Ava/UI/Helpers/ButtonKeyAssigner.cs
+++ b/src/Ryujinx.Ava/UI/Helpers/ButtonKeyAssigner.cs
diff --git a/Ryujinx.Ava/UI/Helpers/ContentDialogHelper.cs b/src/Ryujinx.Ava/UI/Helpers/ContentDialogHelper.cs
index cb474506..cb474506 100644
--- a/Ryujinx.Ava/UI/Helpers/ContentDialogHelper.cs
+++ b/src/Ryujinx.Ava/UI/Helpers/ContentDialogHelper.cs
diff --git a/Ryujinx.Ava/UI/Helpers/Glyph.cs b/src/Ryujinx.Ava/UI/Helpers/Glyph.cs
index 4aae854f..4aae854f 100644
--- a/Ryujinx.Ava/UI/Helpers/Glyph.cs
+++ b/src/Ryujinx.Ava/UI/Helpers/Glyph.cs
diff --git a/Ryujinx.Ava/UI/Helpers/GlyphValueConverter.cs b/src/Ryujinx.Ava/UI/Helpers/GlyphValueConverter.cs
index 3d6c9c01..3d6c9c01 100644
--- a/Ryujinx.Ava/UI/Helpers/GlyphValueConverter.cs
+++ b/src/Ryujinx.Ava/UI/Helpers/GlyphValueConverter.cs
diff --git a/Ryujinx.Ava/UI/Helpers/HotKeyControl.cs b/src/Ryujinx.Ava/UI/Helpers/HotKeyControl.cs
index f1fad157..f1fad157 100644
--- a/Ryujinx.Ava/UI/Helpers/HotKeyControl.cs
+++ b/src/Ryujinx.Ava/UI/Helpers/HotKeyControl.cs
diff --git a/Ryujinx.Ava/UI/Helpers/KeyValueConverter.cs b/src/Ryujinx.Ava/UI/Helpers/KeyValueConverter.cs
index 8d5c2815..8d5c2815 100644
--- a/Ryujinx.Ava/UI/Helpers/KeyValueConverter.cs
+++ b/src/Ryujinx.Ava/UI/Helpers/KeyValueConverter.cs
diff --git a/Ryujinx.Ava/UI/Helpers/LoggerAdapter.cs b/src/Ryujinx.Ava/UI/Helpers/LoggerAdapter.cs
index 7a29cc19..7a29cc19 100644
--- a/Ryujinx.Ava/UI/Helpers/LoggerAdapter.cs
+++ b/src/Ryujinx.Ava/UI/Helpers/LoggerAdapter.cs
diff --git a/Ryujinx.Ava/UI/Helpers/MiniCommand.cs b/src/Ryujinx.Ava/UI/Helpers/MiniCommand.cs
index 305182c9..305182c9 100644
--- a/Ryujinx.Ava/UI/Helpers/MiniCommand.cs
+++ b/src/Ryujinx.Ava/UI/Helpers/MiniCommand.cs
diff --git a/Ryujinx.Ava/UI/Helpers/NotificationHelper.cs b/src/Ryujinx.Ava/UI/Helpers/NotificationHelper.cs
index 7e2afb8b..7e2afb8b 100644
--- a/Ryujinx.Ava/UI/Helpers/NotificationHelper.cs
+++ b/src/Ryujinx.Ava/UI/Helpers/NotificationHelper.cs
diff --git a/Ryujinx.Ava/UI/Helpers/OffscreenTextBox.cs b/src/Ryujinx.Ava/UI/Helpers/OffscreenTextBox.cs
index 785e785c..785e785c 100644
--- a/Ryujinx.Ava/UI/Helpers/OffscreenTextBox.cs
+++ b/src/Ryujinx.Ava/UI/Helpers/OffscreenTextBox.cs
diff --git a/Ryujinx.Ava/UI/Helpers/UserErrorDialog.cs b/src/Ryujinx.Ava/UI/Helpers/UserErrorDialog.cs
index 4ed629ff..4ed629ff 100644
--- a/Ryujinx.Ava/UI/Helpers/UserErrorDialog.cs
+++ b/src/Ryujinx.Ava/UI/Helpers/UserErrorDialog.cs
diff --git a/Ryujinx.Ava/UI/Helpers/UserResult.cs b/src/Ryujinx.Ava/UI/Helpers/UserResult.cs
index 57802804..57802804 100644
--- a/Ryujinx.Ava/UI/Helpers/UserResult.cs
+++ b/src/Ryujinx.Ava/UI/Helpers/UserResult.cs
diff --git a/Ryujinx.Ava/UI/Helpers/Win32NativeInterop.cs b/src/Ryujinx.Ava/UI/Helpers/Win32NativeInterop.cs
index 03d3a49f..03d3a49f 100644
--- a/Ryujinx.Ava/UI/Helpers/Win32NativeInterop.cs
+++ b/src/Ryujinx.Ava/UI/Helpers/Win32NativeInterop.cs
diff --git a/Ryujinx.Ava/UI/Models/CheatModel.cs b/src/Ryujinx.Ava/UI/Models/CheatModel.cs
index a7507add..a7507add 100644
--- a/Ryujinx.Ava/UI/Models/CheatModel.cs
+++ b/src/Ryujinx.Ava/UI/Models/CheatModel.cs
diff --git a/Ryujinx.Ava/UI/Models/CheatsList.cs b/src/Ryujinx.Ava/UI/Models/CheatsList.cs
index e674f4eb..e674f4eb 100644
--- a/Ryujinx.Ava/UI/Models/CheatsList.cs
+++ b/src/Ryujinx.Ava/UI/Models/CheatsList.cs
diff --git a/Ryujinx.Ava/UI/Models/ControllerModel.cs b/src/Ryujinx.Ava/UI/Models/ControllerModel.cs
index 2af2d13b..2af2d13b 100644
--- a/Ryujinx.Ava/UI/Models/ControllerModel.cs
+++ b/src/Ryujinx.Ava/UI/Models/ControllerModel.cs
diff --git a/Ryujinx.Ava/UI/Models/DeviceType.cs b/src/Ryujinx.Ava/UI/Models/DeviceType.cs
index fa2e620c..fa2e620c 100644
--- a/Ryujinx.Ava/UI/Models/DeviceType.cs
+++ b/src/Ryujinx.Ava/UI/Models/DeviceType.cs
diff --git a/Ryujinx.Ava/UI/Models/DownloadableContentModel.cs b/src/Ryujinx.Ava/UI/Models/DownloadableContentModel.cs
index b2ad0d31..b2ad0d31 100644
--- a/Ryujinx.Ava/UI/Models/DownloadableContentModel.cs
+++ b/src/Ryujinx.Ava/UI/Models/DownloadableContentModel.cs
diff --git a/Ryujinx.Ava/UI/Models/Generic/LastPlayedSortComparer.cs b/src/Ryujinx.Ava/UI/Models/Generic/LastPlayedSortComparer.cs
index 98caceb5..98caceb5 100644
--- a/Ryujinx.Ava/UI/Models/Generic/LastPlayedSortComparer.cs
+++ b/src/Ryujinx.Ava/UI/Models/Generic/LastPlayedSortComparer.cs
diff --git a/Ryujinx.Ava/UI/Models/InputConfiguration.cs b/src/Ryujinx.Ava/UI/Models/InputConfiguration.cs
index 2acd716b..2acd716b 100644
--- a/Ryujinx.Ava/UI/Models/InputConfiguration.cs
+++ b/src/Ryujinx.Ava/UI/Models/InputConfiguration.cs
diff --git a/Ryujinx.Ava/UI/Models/PlayerModel.cs b/src/Ryujinx.Ava/UI/Models/PlayerModel.cs
index f0b1bf7a..f0b1bf7a 100644
--- a/Ryujinx.Ava/UI/Models/PlayerModel.cs
+++ b/src/Ryujinx.Ava/UI/Models/PlayerModel.cs
diff --git a/Ryujinx.Ava/UI/Models/ProfileImageModel.cs b/src/Ryujinx.Ava/UI/Models/ProfileImageModel.cs
index 8aa19400..8aa19400 100644
--- a/Ryujinx.Ava/UI/Models/ProfileImageModel.cs
+++ b/src/Ryujinx.Ava/UI/Models/ProfileImageModel.cs
diff --git a/Ryujinx.Ava/UI/Models/SaveModel.cs b/src/Ryujinx.Ava/UI/Models/SaveModel.cs
index ab919c88..ab919c88 100644
--- a/Ryujinx.Ava/UI/Models/SaveModel.cs
+++ b/src/Ryujinx.Ava/UI/Models/SaveModel.cs
diff --git a/Ryujinx.Ava/UI/Models/StatusUpdatedEventArgs.cs b/src/Ryujinx.Ava/UI/Models/StatusUpdatedEventArgs.cs
index ea2b9038..ea2b9038 100644
--- a/Ryujinx.Ava/UI/Models/StatusUpdatedEventArgs.cs
+++ b/src/Ryujinx.Ava/UI/Models/StatusUpdatedEventArgs.cs
diff --git a/Ryujinx.Ava/UI/Models/TempProfile.cs b/src/Ryujinx.Ava/UI/Models/TempProfile.cs
index 05e16632..05e16632 100644
--- a/Ryujinx.Ava/UI/Models/TempProfile.cs
+++ b/src/Ryujinx.Ava/UI/Models/TempProfile.cs
diff --git a/Ryujinx.Ava/UI/Models/TimeZone.cs b/src/Ryujinx.Ava/UI/Models/TimeZone.cs
index cb6cc2fd..cb6cc2fd 100644
--- a/Ryujinx.Ava/UI/Models/TimeZone.cs
+++ b/src/Ryujinx.Ava/UI/Models/TimeZone.cs
diff --git a/Ryujinx.Ava/UI/Models/TitleUpdateModel.cs b/src/Ryujinx.Ava/UI/Models/TitleUpdateModel.cs
index 80476a43..80476a43 100644
--- a/Ryujinx.Ava/UI/Models/TitleUpdateModel.cs
+++ b/src/Ryujinx.Ava/UI/Models/TitleUpdateModel.cs
diff --git a/Ryujinx.Ava/UI/Models/UserProfile.cs b/src/Ryujinx.Ava/UI/Models/UserProfile.cs
index e7cd5300..e7cd5300 100644
--- a/Ryujinx.Ava/UI/Models/UserProfile.cs
+++ b/src/Ryujinx.Ava/UI/Models/UserProfile.cs
diff --git a/Ryujinx.Ava/UI/Renderer/EmbeddedWindow.cs b/src/Ryujinx.Ava/UI/Renderer/EmbeddedWindow.cs
index a5c8b003..a5c8b003 100644
--- a/Ryujinx.Ava/UI/Renderer/EmbeddedWindow.cs
+++ b/src/Ryujinx.Ava/UI/Renderer/EmbeddedWindow.cs
diff --git a/Ryujinx.Ava/UI/Renderer/EmbeddedWindowOpenGL.cs b/src/Ryujinx.Ava/UI/Renderer/EmbeddedWindowOpenGL.cs
index 305e891a..305e891a 100644
--- a/Ryujinx.Ava/UI/Renderer/EmbeddedWindowOpenGL.cs
+++ b/src/Ryujinx.Ava/UI/Renderer/EmbeddedWindowOpenGL.cs
diff --git a/Ryujinx.Ava/UI/Renderer/EmbeddedWindowVulkan.cs b/src/Ryujinx.Ava/UI/Renderer/EmbeddedWindowVulkan.cs
index 0b3eb9e3..0b3eb9e3 100644
--- a/Ryujinx.Ava/UI/Renderer/EmbeddedWindowVulkan.cs
+++ b/src/Ryujinx.Ava/UI/Renderer/EmbeddedWindowVulkan.cs
diff --git a/Ryujinx.Ava/UI/Renderer/OpenTKBindingsContext.cs b/src/Ryujinx.Ava/UI/Renderer/OpenTKBindingsContext.cs
index a2ec02b2..a2ec02b2 100644
--- a/Ryujinx.Ava/UI/Renderer/OpenTKBindingsContext.cs
+++ b/src/Ryujinx.Ava/UI/Renderer/OpenTKBindingsContext.cs
diff --git a/Ryujinx.Ava/UI/Renderer/RendererHost.axaml b/src/Ryujinx.Ava/UI/Renderer/RendererHost.axaml
index bb96b10d..bb96b10d 100644
--- a/Ryujinx.Ava/UI/Renderer/RendererHost.axaml
+++ b/src/Ryujinx.Ava/UI/Renderer/RendererHost.axaml
diff --git a/Ryujinx.Ava/UI/Renderer/RendererHost.axaml.cs b/src/Ryujinx.Ava/UI/Renderer/RendererHost.axaml.cs
index ee10282d..ee10282d 100644
--- a/Ryujinx.Ava/UI/Renderer/RendererHost.axaml.cs
+++ b/src/Ryujinx.Ava/UI/Renderer/RendererHost.axaml.cs
diff --git a/Ryujinx.Ava/UI/Renderer/SPBOpenGLContext.cs b/src/Ryujinx.Ava/UI/Renderer/SPBOpenGLContext.cs
index e090f14c..e090f14c 100644
--- a/Ryujinx.Ava/UI/Renderer/SPBOpenGLContext.cs
+++ b/src/Ryujinx.Ava/UI/Renderer/SPBOpenGLContext.cs
diff --git a/Ryujinx.Ava/UI/ViewModels/AboutWindowViewModel.cs b/src/Ryujinx.Ava/UI/ViewModels/AboutWindowViewModel.cs
index 479411cb..479411cb 100644
--- a/Ryujinx.Ava/UI/ViewModels/AboutWindowViewModel.cs
+++ b/src/Ryujinx.Ava/UI/ViewModels/AboutWindowViewModel.cs
diff --git a/Ryujinx.Ava/UI/ViewModels/AmiiboWindowViewModel.cs b/src/Ryujinx.Ava/UI/ViewModels/AmiiboWindowViewModel.cs
index bb92798f..bb92798f 100644
--- a/Ryujinx.Ava/UI/ViewModels/AmiiboWindowViewModel.cs
+++ b/src/Ryujinx.Ava/UI/ViewModels/AmiiboWindowViewModel.cs
diff --git a/Ryujinx.Ava/UI/ViewModels/AvatarProfileViewModel.cs b/src/Ryujinx.Ava/UI/ViewModels/AvatarProfileViewModel.cs
index b2b31014..b2b31014 100644
--- a/Ryujinx.Ava/UI/ViewModels/AvatarProfileViewModel.cs
+++ b/src/Ryujinx.Ava/UI/ViewModels/AvatarProfileViewModel.cs
diff --git a/Ryujinx.Ava/UI/ViewModels/BaseModel.cs b/src/Ryujinx.Ava/UI/ViewModels/BaseModel.cs
index 5a3717fd..5a3717fd 100644
--- a/Ryujinx.Ava/UI/ViewModels/BaseModel.cs
+++ b/src/Ryujinx.Ava/UI/ViewModels/BaseModel.cs
diff --git a/Ryujinx.Ava/UI/ViewModels/ControllerSettingsViewModel.cs b/src/Ryujinx.Ava/UI/ViewModels/ControllerSettingsViewModel.cs
index dd261b10..dd261b10 100644
--- a/Ryujinx.Ava/UI/ViewModels/ControllerSettingsViewModel.cs
+++ b/src/Ryujinx.Ava/UI/ViewModels/ControllerSettingsViewModel.cs
diff --git a/Ryujinx.Ava/UI/ViewModels/DownloadableContentManagerViewModel.cs b/src/Ryujinx.Ava/UI/ViewModels/DownloadableContentManagerViewModel.cs
index 1d7da9a4..1d7da9a4 100644
--- a/Ryujinx.Ava/UI/ViewModels/DownloadableContentManagerViewModel.cs
+++ b/src/Ryujinx.Ava/UI/ViewModels/DownloadableContentManagerViewModel.cs
diff --git a/Ryujinx.Ava/UI/ViewModels/MainWindowViewModel.cs b/src/Ryujinx.Ava/UI/ViewModels/MainWindowViewModel.cs
index 14d7a0fe..14d7a0fe 100644
--- a/Ryujinx.Ava/UI/ViewModels/MainWindowViewModel.cs
+++ b/src/Ryujinx.Ava/UI/ViewModels/MainWindowViewModel.cs
diff --git a/Ryujinx.Ava/UI/ViewModels/SettingsViewModel.cs b/src/Ryujinx.Ava/UI/ViewModels/SettingsViewModel.cs
index 232c9d43..232c9d43 100644
--- a/Ryujinx.Ava/UI/ViewModels/SettingsViewModel.cs
+++ b/src/Ryujinx.Ava/UI/ViewModels/SettingsViewModel.cs
diff --git a/Ryujinx.Ava/UI/ViewModels/TitleUpdateViewModel.cs b/src/Ryujinx.Ava/UI/ViewModels/TitleUpdateViewModel.cs
index 1f4e3c62..1f4e3c62 100644
--- a/Ryujinx.Ava/UI/ViewModels/TitleUpdateViewModel.cs
+++ b/src/Ryujinx.Ava/UI/ViewModels/TitleUpdateViewModel.cs
diff --git a/Ryujinx.Ava/UI/ViewModels/UserFirmwareAvatarSelectorViewModel.cs b/src/Ryujinx.Ava/UI/ViewModels/UserFirmwareAvatarSelectorViewModel.cs
index 558cad5a..558cad5a 100644
--- a/Ryujinx.Ava/UI/ViewModels/UserFirmwareAvatarSelectorViewModel.cs
+++ b/src/Ryujinx.Ava/UI/ViewModels/UserFirmwareAvatarSelectorViewModel.cs
diff --git a/Ryujinx.Ava/UI/ViewModels/UserProfileImageSelectorViewModel.cs b/src/Ryujinx.Ava/UI/ViewModels/UserProfileImageSelectorViewModel.cs
index 7261631c..7261631c 100644
--- a/Ryujinx.Ava/UI/ViewModels/UserProfileImageSelectorViewModel.cs
+++ b/src/Ryujinx.Ava/UI/ViewModels/UserProfileImageSelectorViewModel.cs
diff --git a/Ryujinx.Ava/UI/ViewModels/UserProfileViewModel.cs b/src/Ryujinx.Ava/UI/ViewModels/UserProfileViewModel.cs
index 8f997efc..8f997efc 100644
--- a/Ryujinx.Ava/UI/ViewModels/UserProfileViewModel.cs
+++ b/src/Ryujinx.Ava/UI/ViewModels/UserProfileViewModel.cs
diff --git a/Ryujinx.Ava/UI/ViewModels/UserSaveManagerViewModel.cs b/src/Ryujinx.Ava/UI/ViewModels/UserSaveManagerViewModel.cs
index 097634a8..097634a8 100644
--- a/Ryujinx.Ava/UI/ViewModels/UserSaveManagerViewModel.cs
+++ b/src/Ryujinx.Ava/UI/ViewModels/UserSaveManagerViewModel.cs
diff --git a/Ryujinx.Ava/UI/Views/Main/MainMenuBarView.axaml b/src/Ryujinx.Ava/UI/Views/Main/MainMenuBarView.axaml
index d5b5efcd..d5b5efcd 100644
--- a/Ryujinx.Ava/UI/Views/Main/MainMenuBarView.axaml
+++ b/src/Ryujinx.Ava/UI/Views/Main/MainMenuBarView.axaml
diff --git a/Ryujinx.Ava/UI/Views/Main/MainMenuBarView.axaml.cs b/src/Ryujinx.Ava/UI/Views/Main/MainMenuBarView.axaml.cs
index bdf2cf9f..bdf2cf9f 100644
--- a/Ryujinx.Ava/UI/Views/Main/MainMenuBarView.axaml.cs
+++ b/src/Ryujinx.Ava/UI/Views/Main/MainMenuBarView.axaml.cs
diff --git a/Ryujinx.Ava/UI/Views/Main/MainStatusBarView.axaml b/src/Ryujinx.Ava/UI/Views/Main/MainStatusBarView.axaml
index 16705695..16705695 100644
--- a/Ryujinx.Ava/UI/Views/Main/MainStatusBarView.axaml
+++ b/src/Ryujinx.Ava/UI/Views/Main/MainStatusBarView.axaml
diff --git a/Ryujinx.Ava/UI/Views/Main/MainStatusBarView.axaml.cs b/src/Ryujinx.Ava/UI/Views/Main/MainStatusBarView.axaml.cs
index 473de0ee..473de0ee 100644
--- a/Ryujinx.Ava/UI/Views/Main/MainStatusBarView.axaml.cs
+++ b/src/Ryujinx.Ava/UI/Views/Main/MainStatusBarView.axaml.cs
diff --git a/Ryujinx.Ava/UI/Views/Main/MainViewControls.axaml b/src/Ryujinx.Ava/UI/Views/Main/MainViewControls.axaml
index ac8ede7a..ac8ede7a 100644
--- a/Ryujinx.Ava/UI/Views/Main/MainViewControls.axaml
+++ b/src/Ryujinx.Ava/UI/Views/Main/MainViewControls.axaml
diff --git a/Ryujinx.Ava/UI/Views/Main/MainViewControls.axaml.cs b/src/Ryujinx.Ava/UI/Views/Main/MainViewControls.axaml.cs
index fd757893..fd757893 100644
--- a/Ryujinx.Ava/UI/Views/Main/MainViewControls.axaml.cs
+++ b/src/Ryujinx.Ava/UI/Views/Main/MainViewControls.axaml.cs
diff --git a/Ryujinx.Ava/UI/Views/Settings/SettingsAudioView.axaml b/src/Ryujinx.Ava/UI/Views/Settings/SettingsAudioView.axaml
index 35283353..35283353 100644
--- a/Ryujinx.Ava/UI/Views/Settings/SettingsAudioView.axaml
+++ b/src/Ryujinx.Ava/UI/Views/Settings/SettingsAudioView.axaml
diff --git a/Ryujinx.Ava/UI/Views/Settings/SettingsAudioView.axaml.cs b/src/Ryujinx.Ava/UI/Views/Settings/SettingsAudioView.axaml.cs
index 026c7fdf..026c7fdf 100644
--- a/Ryujinx.Ava/UI/Views/Settings/SettingsAudioView.axaml.cs
+++ b/src/Ryujinx.Ava/UI/Views/Settings/SettingsAudioView.axaml.cs
diff --git a/Ryujinx.Ava/UI/Views/Settings/SettingsCPUView.axaml b/src/Ryujinx.Ava/UI/Views/Settings/SettingsCPUView.axaml
index e98b963c..e98b963c 100644
--- a/Ryujinx.Ava/UI/Views/Settings/SettingsCPUView.axaml
+++ b/src/Ryujinx.Ava/UI/Views/Settings/SettingsCPUView.axaml
diff --git a/Ryujinx.Ava/UI/Views/Settings/SettingsCPUView.axaml.cs b/src/Ryujinx.Ava/UI/Views/Settings/SettingsCPUView.axaml.cs
index 5c5b6079..5c5b6079 100644
--- a/Ryujinx.Ava/UI/Views/Settings/SettingsCPUView.axaml.cs
+++ b/src/Ryujinx.Ava/UI/Views/Settings/SettingsCPUView.axaml.cs
diff --git a/Ryujinx.Ava/UI/Views/Settings/SettingsGraphicsView.axaml b/src/Ryujinx.Ava/UI/Views/Settings/SettingsGraphicsView.axaml
index 8e4122f3..8e4122f3 100644
--- a/Ryujinx.Ava/UI/Views/Settings/SettingsGraphicsView.axaml
+++ b/src/Ryujinx.Ava/UI/Views/Settings/SettingsGraphicsView.axaml
diff --git a/Ryujinx.Ava/UI/Views/Settings/SettingsGraphicsView.axaml.cs b/src/Ryujinx.Ava/UI/Views/Settings/SettingsGraphicsView.axaml.cs
index 8fe08552..8fe08552 100644
--- a/Ryujinx.Ava/UI/Views/Settings/SettingsGraphicsView.axaml.cs
+++ b/src/Ryujinx.Ava/UI/Views/Settings/SettingsGraphicsView.axaml.cs
diff --git a/Ryujinx.Ava/UI/Views/Settings/SettingsHotkeysView.axaml b/src/Ryujinx.Ava/UI/Views/Settings/SettingsHotkeysView.axaml
index 361125bf..361125bf 100644
--- a/Ryujinx.Ava/UI/Views/Settings/SettingsHotkeysView.axaml
+++ b/src/Ryujinx.Ava/UI/Views/Settings/SettingsHotkeysView.axaml
diff --git a/Ryujinx.Ava/UI/Views/Settings/SettingsHotkeysView.axaml.cs b/src/Ryujinx.Ava/UI/Views/Settings/SettingsHotkeysView.axaml.cs
index 702f73e8..702f73e8 100644
--- a/Ryujinx.Ava/UI/Views/Settings/SettingsHotkeysView.axaml.cs
+++ b/src/Ryujinx.Ava/UI/Views/Settings/SettingsHotkeysView.axaml.cs
diff --git a/Ryujinx.Ava/UI/Views/Settings/SettingsInputView.axaml b/src/Ryujinx.Ava/UI/Views/Settings/SettingsInputView.axaml
index 1c774bda..1c774bda 100644
--- a/Ryujinx.Ava/UI/Views/Settings/SettingsInputView.axaml
+++ b/src/Ryujinx.Ava/UI/Views/Settings/SettingsInputView.axaml
diff --git a/Ryujinx.Ava/UI/Views/Settings/SettingsInputView.axaml.cs b/src/Ryujinx.Ava/UI/Views/Settings/SettingsInputView.axaml.cs
index 0c2105ec..0c2105ec 100644
--- a/Ryujinx.Ava/UI/Views/Settings/SettingsInputView.axaml.cs
+++ b/src/Ryujinx.Ava/UI/Views/Settings/SettingsInputView.axaml.cs
diff --git a/Ryujinx.Ava/UI/Views/Settings/SettingsLoggingView.axaml b/src/Ryujinx.Ava/UI/Views/Settings/SettingsLoggingView.axaml
index 948e7181..948e7181 100644
--- a/Ryujinx.Ava/UI/Views/Settings/SettingsLoggingView.axaml
+++ b/src/Ryujinx.Ava/UI/Views/Settings/SettingsLoggingView.axaml
diff --git a/Ryujinx.Ava/UI/Views/Settings/SettingsLoggingView.axaml.cs b/src/Ryujinx.Ava/UI/Views/Settings/SettingsLoggingView.axaml.cs
index 2ec476ac..2ec476ac 100644
--- a/Ryujinx.Ava/UI/Views/Settings/SettingsLoggingView.axaml.cs
+++ b/src/Ryujinx.Ava/UI/Views/Settings/SettingsLoggingView.axaml.cs
diff --git a/Ryujinx.Ava/UI/Views/Settings/SettingsNetworkView.axaml b/src/Ryujinx.Ava/UI/Views/Settings/SettingsNetworkView.axaml
index ab8a7f6d..ab8a7f6d 100644
--- a/Ryujinx.Ava/UI/Views/Settings/SettingsNetworkView.axaml
+++ b/src/Ryujinx.Ava/UI/Views/Settings/SettingsNetworkView.axaml
diff --git a/Ryujinx.Ava/UI/Views/Settings/SettingsNetworkView.axaml.cs b/src/Ryujinx.Ava/UI/Views/Settings/SettingsNetworkView.axaml.cs
index d7407b9d..d7407b9d 100644
--- a/Ryujinx.Ava/UI/Views/Settings/SettingsNetworkView.axaml.cs
+++ b/src/Ryujinx.Ava/UI/Views/Settings/SettingsNetworkView.axaml.cs
diff --git a/Ryujinx.Ava/UI/Views/Settings/SettingsSystemView.axaml b/src/Ryujinx.Ava/UI/Views/Settings/SettingsSystemView.axaml
index 1d4f040f..1d4f040f 100644
--- a/Ryujinx.Ava/UI/Views/Settings/SettingsSystemView.axaml
+++ b/src/Ryujinx.Ava/UI/Views/Settings/SettingsSystemView.axaml
diff --git a/Ryujinx.Ava/UI/Views/Settings/SettingsSystemView.axaml.cs b/src/Ryujinx.Ava/UI/Views/Settings/SettingsSystemView.axaml.cs
index d2ea59de..d2ea59de 100644
--- a/Ryujinx.Ava/UI/Views/Settings/SettingsSystemView.axaml.cs
+++ b/src/Ryujinx.Ava/UI/Views/Settings/SettingsSystemView.axaml.cs
diff --git a/Ryujinx.Ava/UI/Views/Settings/SettingsUIView.axaml b/src/Ryujinx.Ava/UI/Views/Settings/SettingsUIView.axaml
index 61b6c433..61b6c433 100644
--- a/Ryujinx.Ava/UI/Views/Settings/SettingsUIView.axaml
+++ b/src/Ryujinx.Ava/UI/Views/Settings/SettingsUIView.axaml
diff --git a/Ryujinx.Ava/UI/Views/Settings/SettingsUIView.axaml.cs b/src/Ryujinx.Ava/UI/Views/Settings/SettingsUIView.axaml.cs
index 8e6da7c5..8e6da7c5 100644
--- a/Ryujinx.Ava/UI/Views/Settings/SettingsUIView.axaml.cs
+++ b/src/Ryujinx.Ava/UI/Views/Settings/SettingsUIView.axaml.cs
diff --git a/Ryujinx.Ava/UI/Views/User/UserEditorView.axaml b/src/Ryujinx.Ava/UI/Views/User/UserEditorView.axaml
index 7e55f25e..7e55f25e 100644
--- a/Ryujinx.Ava/UI/Views/User/UserEditorView.axaml
+++ b/src/Ryujinx.Ava/UI/Views/User/UserEditorView.axaml
diff --git a/Ryujinx.Ava/UI/Views/User/UserEditorView.axaml.cs b/src/Ryujinx.Ava/UI/Views/User/UserEditorView.axaml.cs
index 81938d23..81938d23 100644
--- a/Ryujinx.Ava/UI/Views/User/UserEditorView.axaml.cs
+++ b/src/Ryujinx.Ava/UI/Views/User/UserEditorView.axaml.cs
diff --git a/Ryujinx.Ava/UI/Views/User/UserFirmwareAvatarSelectorView.axaml b/src/Ryujinx.Ava/UI/Views/User/UserFirmwareAvatarSelectorView.axaml
index d46fcefc..d46fcefc 100644
--- a/Ryujinx.Ava/UI/Views/User/UserFirmwareAvatarSelectorView.axaml
+++ b/src/Ryujinx.Ava/UI/Views/User/UserFirmwareAvatarSelectorView.axaml
diff --git a/Ryujinx.Ava/UI/Views/User/UserFirmwareAvatarSelectorView.axaml.cs b/src/Ryujinx.Ava/UI/Views/User/UserFirmwareAvatarSelectorView.axaml.cs
index 7c9191ab..7c9191ab 100644
--- a/Ryujinx.Ava/UI/Views/User/UserFirmwareAvatarSelectorView.axaml.cs
+++ b/src/Ryujinx.Ava/UI/Views/User/UserFirmwareAvatarSelectorView.axaml.cs
diff --git a/Ryujinx.Ava/UI/Views/User/UserProfileImageSelectorView.axaml b/src/Ryujinx.Ava/UI/Views/User/UserProfileImageSelectorView.axaml
index b9f51fdc..b9f51fdc 100644
--- a/Ryujinx.Ava/UI/Views/User/UserProfileImageSelectorView.axaml
+++ b/src/Ryujinx.Ava/UI/Views/User/UserProfileImageSelectorView.axaml
diff --git a/Ryujinx.Ava/UI/Views/User/UserProfileImageSelectorView.axaml.cs b/src/Ryujinx.Ava/UI/Views/User/UserProfileImageSelectorView.axaml.cs
index 18f76f80..18f76f80 100644
--- a/Ryujinx.Ava/UI/Views/User/UserProfileImageSelectorView.axaml.cs
+++ b/src/Ryujinx.Ava/UI/Views/User/UserProfileImageSelectorView.axaml.cs
diff --git a/Ryujinx.Ava/UI/Views/User/UserRecovererView.axaml b/src/Ryujinx.Ava/UI/Views/User/UserRecovererView.axaml
index 62b5e184..62b5e184 100644
--- a/Ryujinx.Ava/UI/Views/User/UserRecovererView.axaml
+++ b/src/Ryujinx.Ava/UI/Views/User/UserRecovererView.axaml
diff --git a/Ryujinx.Ava/UI/Views/User/UserRecovererView.axaml.cs b/src/Ryujinx.Ava/UI/Views/User/UserRecovererView.axaml.cs
index 0c53e53d..0c53e53d 100644
--- a/Ryujinx.Ava/UI/Views/User/UserRecovererView.axaml.cs
+++ b/src/Ryujinx.Ava/UI/Views/User/UserRecovererView.axaml.cs
diff --git a/Ryujinx.Ava/UI/Views/User/UserSaveManagerView.axaml b/src/Ryujinx.Ava/UI/Views/User/UserSaveManagerView.axaml
index ec931dd9..ec931dd9 100644
--- a/Ryujinx.Ava/UI/Views/User/UserSaveManagerView.axaml
+++ b/src/Ryujinx.Ava/UI/Views/User/UserSaveManagerView.axaml
diff --git a/Ryujinx.Ava/UI/Views/User/UserSaveManagerView.axaml.cs b/src/Ryujinx.Ava/UI/Views/User/UserSaveManagerView.axaml.cs
index 08fef27d..08fef27d 100644
--- a/Ryujinx.Ava/UI/Views/User/UserSaveManagerView.axaml.cs
+++ b/src/Ryujinx.Ava/UI/Views/User/UserSaveManagerView.axaml.cs
diff --git a/Ryujinx.Ava/UI/Views/User/UserSelectorView.axaml b/src/Ryujinx.Ava/UI/Views/User/UserSelectorView.axaml
index 9a6ba054..9a6ba054 100644
--- a/Ryujinx.Ava/UI/Views/User/UserSelectorView.axaml
+++ b/src/Ryujinx.Ava/UI/Views/User/UserSelectorView.axaml
diff --git a/Ryujinx.Ava/UI/Views/User/UserSelectorView.axaml.cs b/src/Ryujinx.Ava/UI/Views/User/UserSelectorView.axaml.cs
index aa89fea9..aa89fea9 100644
--- a/Ryujinx.Ava/UI/Views/User/UserSelectorView.axaml.cs
+++ b/src/Ryujinx.Ava/UI/Views/User/UserSelectorView.axaml.cs
diff --git a/Ryujinx.Ava/UI/Windows/AboutWindow.axaml b/src/Ryujinx.Ava/UI/Windows/AboutWindow.axaml
index 7bd3e20d..7bd3e20d 100644
--- a/Ryujinx.Ava/UI/Windows/AboutWindow.axaml
+++ b/src/Ryujinx.Ava/UI/Windows/AboutWindow.axaml
diff --git a/Ryujinx.Ava/UI/Windows/AboutWindow.axaml.cs b/src/Ryujinx.Ava/UI/Windows/AboutWindow.axaml.cs
index 36a28605..36a28605 100644
--- a/Ryujinx.Ava/UI/Windows/AboutWindow.axaml.cs
+++ b/src/Ryujinx.Ava/UI/Windows/AboutWindow.axaml.cs
diff --git a/Ryujinx.Ava/UI/Windows/AmiiboWindow.axaml b/src/Ryujinx.Ava/UI/Windows/AmiiboWindow.axaml
index 90d47b8e..90d47b8e 100644
--- a/Ryujinx.Ava/UI/Windows/AmiiboWindow.axaml
+++ b/src/Ryujinx.Ava/UI/Windows/AmiiboWindow.axaml
diff --git a/Ryujinx.Ava/UI/Windows/AmiiboWindow.axaml.cs b/src/Ryujinx.Ava/UI/Windows/AmiiboWindow.axaml.cs
index 206d0a7e..206d0a7e 100644
--- a/Ryujinx.Ava/UI/Windows/AmiiboWindow.axaml.cs
+++ b/src/Ryujinx.Ava/UI/Windows/AmiiboWindow.axaml.cs
diff --git a/Ryujinx.Ava/UI/Windows/CheatWindow.axaml b/src/Ryujinx.Ava/UI/Windows/CheatWindow.axaml
index 3557ed69..3557ed69 100644
--- a/Ryujinx.Ava/UI/Windows/CheatWindow.axaml
+++ b/src/Ryujinx.Ava/UI/Windows/CheatWindow.axaml
diff --git a/Ryujinx.Ava/UI/Windows/CheatWindow.axaml.cs b/src/Ryujinx.Ava/UI/Windows/CheatWindow.axaml.cs
index cb939763..cb939763 100644
--- a/Ryujinx.Ava/UI/Windows/CheatWindow.axaml.cs
+++ b/src/Ryujinx.Ava/UI/Windows/CheatWindow.axaml.cs
diff --git a/Ryujinx.Ava/UI/Windows/ContentDialogOverlayWindow.axaml b/src/Ryujinx.Ava/UI/Windows/ContentDialogOverlayWindow.axaml
index 8b52bade..8b52bade 100644
--- a/Ryujinx.Ava/UI/Windows/ContentDialogOverlayWindow.axaml
+++ b/src/Ryujinx.Ava/UI/Windows/ContentDialogOverlayWindow.axaml
diff --git a/Ryujinx.Ava/UI/Windows/ContentDialogOverlayWindow.axaml.cs b/src/Ryujinx.Ava/UI/Windows/ContentDialogOverlayWindow.axaml.cs
index 3f77124d..3f77124d 100644
--- a/Ryujinx.Ava/UI/Windows/ContentDialogOverlayWindow.axaml.cs
+++ b/src/Ryujinx.Ava/UI/Windows/ContentDialogOverlayWindow.axaml.cs
diff --git a/Ryujinx.Ava/UI/Windows/ControllerSettingsWindow.axaml b/src/Ryujinx.Ava/UI/Windows/ControllerSettingsWindow.axaml
index 8a4d22ff..8a4d22ff 100644
--- a/Ryujinx.Ava/UI/Windows/ControllerSettingsWindow.axaml
+++ b/src/Ryujinx.Ava/UI/Windows/ControllerSettingsWindow.axaml
diff --git a/Ryujinx.Ava/UI/Windows/ControllerSettingsWindow.axaml.cs b/src/Ryujinx.Ava/UI/Windows/ControllerSettingsWindow.axaml.cs
index 2864b6da..2864b6da 100644
--- a/Ryujinx.Ava/UI/Windows/ControllerSettingsWindow.axaml.cs
+++ b/src/Ryujinx.Ava/UI/Windows/ControllerSettingsWindow.axaml.cs
diff --git a/Ryujinx.Ava/UI/Windows/DownloadableContentManagerWindow.axaml b/src/Ryujinx.Ava/UI/Windows/DownloadableContentManagerWindow.axaml
index fe446fb3..fe446fb3 100644
--- a/Ryujinx.Ava/UI/Windows/DownloadableContentManagerWindow.axaml
+++ b/src/Ryujinx.Ava/UI/Windows/DownloadableContentManagerWindow.axaml
diff --git a/Ryujinx.Ava/UI/Windows/DownloadableContentManagerWindow.axaml.cs b/src/Ryujinx.Ava/UI/Windows/DownloadableContentManagerWindow.axaml.cs
index 6dc99fb5..6dc99fb5 100644
--- a/Ryujinx.Ava/UI/Windows/DownloadableContentManagerWindow.axaml.cs
+++ b/src/Ryujinx.Ava/UI/Windows/DownloadableContentManagerWindow.axaml.cs
diff --git a/Ryujinx.Ava/UI/Windows/IconColorPicker.cs b/src/Ryujinx.Ava/UI/Windows/IconColorPicker.cs
index a4c6287f..a4c6287f 100644
--- a/Ryujinx.Ava/UI/Windows/IconColorPicker.cs
+++ b/src/Ryujinx.Ava/UI/Windows/IconColorPicker.cs
diff --git a/Ryujinx.Ava/UI/Windows/MainWindow.axaml b/src/Ryujinx.Ava/UI/Windows/MainWindow.axaml
index 08b99cf5..08b99cf5 100644
--- a/Ryujinx.Ava/UI/Windows/MainWindow.axaml
+++ b/src/Ryujinx.Ava/UI/Windows/MainWindow.axaml
diff --git a/Ryujinx.Ava/UI/Windows/MainWindow.axaml.cs b/src/Ryujinx.Ava/UI/Windows/MainWindow.axaml.cs
index 81e05506..81e05506 100644
--- a/Ryujinx.Ava/UI/Windows/MainWindow.axaml.cs
+++ b/src/Ryujinx.Ava/UI/Windows/MainWindow.axaml.cs
diff --git a/Ryujinx.Ava/UI/Windows/MotionSettingsWindow.axaml b/src/Ryujinx.Ava/UI/Windows/MotionSettingsWindow.axaml
index 862998ac..862998ac 100644
--- a/Ryujinx.Ava/UI/Windows/MotionSettingsWindow.axaml
+++ b/src/Ryujinx.Ava/UI/Windows/MotionSettingsWindow.axaml
diff --git a/Ryujinx.Ava/UI/Windows/MotionSettingsWindow.axaml.cs b/src/Ryujinx.Ava/UI/Windows/MotionSettingsWindow.axaml.cs
index c686e7c3..c686e7c3 100644
--- a/Ryujinx.Ava/UI/Windows/MotionSettingsWindow.axaml.cs
+++ b/src/Ryujinx.Ava/UI/Windows/MotionSettingsWindow.axaml.cs
diff --git a/Ryujinx.Ava/UI/Windows/RumbleSettingsWindow.axaml b/src/Ryujinx.Ava/UI/Windows/RumbleSettingsWindow.axaml
index e47cc5bd..e47cc5bd 100644
--- a/Ryujinx.Ava/UI/Windows/RumbleSettingsWindow.axaml
+++ b/src/Ryujinx.Ava/UI/Windows/RumbleSettingsWindow.axaml
diff --git a/Ryujinx.Ava/UI/Windows/RumbleSettingsWindow.axaml.cs b/src/Ryujinx.Ava/UI/Windows/RumbleSettingsWindow.axaml.cs
index 178109d6..178109d6 100644
--- a/Ryujinx.Ava/UI/Windows/RumbleSettingsWindow.axaml.cs
+++ b/src/Ryujinx.Ava/UI/Windows/RumbleSettingsWindow.axaml.cs
diff --git a/Ryujinx.Ava/UI/Windows/SettingsWindow.axaml b/src/Ryujinx.Ava/UI/Windows/SettingsWindow.axaml
index a44cbfe7..a44cbfe7 100644
--- a/Ryujinx.Ava/UI/Windows/SettingsWindow.axaml
+++ b/src/Ryujinx.Ava/UI/Windows/SettingsWindow.axaml
diff --git a/Ryujinx.Ava/UI/Windows/SettingsWindow.axaml.cs b/src/Ryujinx.Ava/UI/Windows/SettingsWindow.axaml.cs
index bdf7e94d..bdf7e94d 100644
--- a/Ryujinx.Ava/UI/Windows/SettingsWindow.axaml.cs
+++ b/src/Ryujinx.Ava/UI/Windows/SettingsWindow.axaml.cs
diff --git a/Ryujinx.Ava/UI/Windows/StyleableWindow.cs b/src/Ryujinx.Ava/UI/Windows/StyleableWindow.cs
index a157f154..a157f154 100644
--- a/Ryujinx.Ava/UI/Windows/StyleableWindow.cs
+++ b/src/Ryujinx.Ava/UI/Windows/StyleableWindow.cs
diff --git a/Ryujinx.Ava/UI/Windows/TitleUpdateWindow.axaml b/src/Ryujinx.Ava/UI/Windows/TitleUpdateWindow.axaml
index e9858038..e9858038 100644
--- a/Ryujinx.Ava/UI/Windows/TitleUpdateWindow.axaml
+++ b/src/Ryujinx.Ava/UI/Windows/TitleUpdateWindow.axaml
diff --git a/Ryujinx.Ava/UI/Windows/TitleUpdateWindow.axaml.cs b/src/Ryujinx.Ava/UI/Windows/TitleUpdateWindow.axaml.cs
index 153ce95d..153ce95d 100644
--- a/Ryujinx.Ava/UI/Windows/TitleUpdateWindow.axaml.cs
+++ b/src/Ryujinx.Ava/UI/Windows/TitleUpdateWindow.axaml.cs
diff --git a/Ryujinx.Common/AsyncWorkQueue.cs b/src/Ryujinx.Common/AsyncWorkQueue.cs
index 80f8dcfe..80f8dcfe 100644
--- a/Ryujinx.Common/AsyncWorkQueue.cs
+++ b/src/Ryujinx.Common/AsyncWorkQueue.cs
diff --git a/Ryujinx.Common/Collections/IntervalTree.cs b/src/Ryujinx.Common/Collections/IntervalTree.cs
index b5188cc7..b5188cc7 100644
--- a/Ryujinx.Common/Collections/IntervalTree.cs
+++ b/src/Ryujinx.Common/Collections/IntervalTree.cs
diff --git a/Ryujinx.Common/Collections/IntrusiveRedBlackTree.cs b/src/Ryujinx.Common/Collections/IntrusiveRedBlackTree.cs
index 0063d91e..0063d91e 100644
--- a/Ryujinx.Common/Collections/IntrusiveRedBlackTree.cs
+++ b/src/Ryujinx.Common/Collections/IntrusiveRedBlackTree.cs
diff --git a/Ryujinx.Common/Collections/IntrusiveRedBlackTreeImpl.cs b/src/Ryujinx.Common/Collections/IntrusiveRedBlackTreeImpl.cs
index bcb2e2a2..bcb2e2a2 100644
--- a/Ryujinx.Common/Collections/IntrusiveRedBlackTreeImpl.cs
+++ b/src/Ryujinx.Common/Collections/IntrusiveRedBlackTreeImpl.cs
diff --git a/Ryujinx.Common/Collections/IntrusiveRedBlackTreeNode.cs b/src/Ryujinx.Common/Collections/IntrusiveRedBlackTreeNode.cs
index 7143240d..7143240d 100644
--- a/Ryujinx.Common/Collections/IntrusiveRedBlackTreeNode.cs
+++ b/src/Ryujinx.Common/Collections/IntrusiveRedBlackTreeNode.cs
diff --git a/Ryujinx.Common/Collections/TreeDictionary.cs b/src/Ryujinx.Common/Collections/TreeDictionary.cs
index d118a30c..d118a30c 100644
--- a/Ryujinx.Common/Collections/TreeDictionary.cs
+++ b/src/Ryujinx.Common/Collections/TreeDictionary.cs
diff --git a/Ryujinx.Common/Configuration/AntiAliasing.cs b/src/Ryujinx.Common/Configuration/AntiAliasing.cs
index 159108ae..159108ae 100644
--- a/Ryujinx.Common/Configuration/AntiAliasing.cs
+++ b/src/Ryujinx.Common/Configuration/AntiAliasing.cs
diff --git a/Ryujinx.Common/Configuration/AppDataManager.cs b/src/Ryujinx.Common/Configuration/AppDataManager.cs
index d6e77843..d6e77843 100644
--- a/Ryujinx.Common/Configuration/AppDataManager.cs
+++ b/src/Ryujinx.Common/Configuration/AppDataManager.cs
diff --git a/Ryujinx.Common/Configuration/AspectRatioExtensions.cs b/src/Ryujinx.Common/Configuration/AspectRatioExtensions.cs
index 5e97ed19..5e97ed19 100644
--- a/Ryujinx.Common/Configuration/AspectRatioExtensions.cs
+++ b/src/Ryujinx.Common/Configuration/AspectRatioExtensions.cs
diff --git a/Ryujinx.Common/Configuration/BackendThreading.cs b/src/Ryujinx.Common/Configuration/BackendThreading.cs
index 8833b3f0..8833b3f0 100644
--- a/Ryujinx.Common/Configuration/BackendThreading.cs
+++ b/src/Ryujinx.Common/Configuration/BackendThreading.cs
diff --git a/Ryujinx.Common/Configuration/DownloadableContentContainer.cs b/src/Ryujinx.Common/Configuration/DownloadableContentContainer.cs
index b6ae2f3f..b6ae2f3f 100644
--- a/Ryujinx.Common/Configuration/DownloadableContentContainer.cs
+++ b/src/Ryujinx.Common/Configuration/DownloadableContentContainer.cs
diff --git a/Ryujinx.Common/Configuration/DownloadableContentJsonSerializerContext.cs b/src/Ryujinx.Common/Configuration/DownloadableContentJsonSerializerContext.cs
index 132c45a4..132c45a4 100644
--- a/Ryujinx.Common/Configuration/DownloadableContentJsonSerializerContext.cs
+++ b/src/Ryujinx.Common/Configuration/DownloadableContentJsonSerializerContext.cs
diff --git a/Ryujinx.Common/Configuration/DownloadableContentNca.cs b/src/Ryujinx.Common/Configuration/DownloadableContentNca.cs
index 80b67300..80b67300 100644
--- a/Ryujinx.Common/Configuration/DownloadableContentNca.cs
+++ b/src/Ryujinx.Common/Configuration/DownloadableContentNca.cs
diff --git a/Ryujinx.Common/Configuration/GraphicsBackend.cs b/src/Ryujinx.Common/Configuration/GraphicsBackend.cs
index d74dd6e1..d74dd6e1 100644
--- a/Ryujinx.Common/Configuration/GraphicsBackend.cs
+++ b/src/Ryujinx.Common/Configuration/GraphicsBackend.cs
diff --git a/Ryujinx.Common/Configuration/GraphicsDebugLevel.cs b/src/Ryujinx.Common/Configuration/GraphicsDebugLevel.cs
index ad12302a..ad12302a 100644
--- a/Ryujinx.Common/Configuration/GraphicsDebugLevel.cs
+++ b/src/Ryujinx.Common/Configuration/GraphicsDebugLevel.cs
diff --git a/Ryujinx.Common/Configuration/Hid/Controller/GamepadInputId.cs b/src/Ryujinx.Common/Configuration/Hid/Controller/GamepadInputId.cs
index ad1fa667..ad1fa667 100644
--- a/Ryujinx.Common/Configuration/Hid/Controller/GamepadInputId.cs
+++ b/src/Ryujinx.Common/Configuration/Hid/Controller/GamepadInputId.cs
diff --git a/Ryujinx.Common/Configuration/Hid/Controller/GenericControllerInputConfig.cs b/src/Ryujinx.Common/Configuration/Hid/Controller/GenericControllerInputConfig.cs
index d7f0e788..d7f0e788 100644
--- a/Ryujinx.Common/Configuration/Hid/Controller/GenericControllerInputConfig.cs
+++ b/src/Ryujinx.Common/Configuration/Hid/Controller/GenericControllerInputConfig.cs
diff --git a/Ryujinx.Common/Configuration/Hid/Controller/JoyconConfigControllerStick.cs b/src/Ryujinx.Common/Configuration/Hid/Controller/JoyconConfigControllerStick.cs
index 869cff4f..869cff4f 100644
--- a/Ryujinx.Common/Configuration/Hid/Controller/JoyconConfigControllerStick.cs
+++ b/src/Ryujinx.Common/Configuration/Hid/Controller/JoyconConfigControllerStick.cs
diff --git a/Ryujinx.Common/Configuration/Hid/Controller/Motion/CemuHookMotionConfigController.cs b/src/Ryujinx.Common/Configuration/Hid/Controller/Motion/CemuHookMotionConfigController.cs
index 2a5a73ff..2a5a73ff 100644
--- a/Ryujinx.Common/Configuration/Hid/Controller/Motion/CemuHookMotionConfigController.cs
+++ b/src/Ryujinx.Common/Configuration/Hid/Controller/Motion/CemuHookMotionConfigController.cs
diff --git a/Ryujinx.Common/Configuration/Hid/Controller/Motion/JsonMotionConfigControllerConverter.cs b/src/Ryujinx.Common/Configuration/Hid/Controller/Motion/JsonMotionConfigControllerConverter.cs
index 2b9e0af4..2b9e0af4 100644
--- a/Ryujinx.Common/Configuration/Hid/Controller/Motion/JsonMotionConfigControllerConverter.cs
+++ b/src/Ryujinx.Common/Configuration/Hid/Controller/Motion/JsonMotionConfigControllerConverter.cs
diff --git a/Ryujinx.Common/Configuration/Hid/Controller/Motion/MotionConfigController.cs b/src/Ryujinx.Common/Configuration/Hid/Controller/Motion/MotionConfigController.cs
index 7636aa41..7636aa41 100644
--- a/Ryujinx.Common/Configuration/Hid/Controller/Motion/MotionConfigController.cs
+++ b/src/Ryujinx.Common/Configuration/Hid/Controller/Motion/MotionConfigController.cs
diff --git a/Ryujinx.Common/Configuration/Hid/Controller/Motion/MotionConfigJsonSerializerContext.cs b/src/Ryujinx.Common/Configuration/Hid/Controller/Motion/MotionConfigJsonSerializerContext.cs
index 5cd9e452..5cd9e452 100644
--- a/Ryujinx.Common/Configuration/Hid/Controller/Motion/MotionConfigJsonSerializerContext.cs
+++ b/src/Ryujinx.Common/Configuration/Hid/Controller/Motion/MotionConfigJsonSerializerContext.cs
diff --git a/Ryujinx.Common/Configuration/Hid/Controller/Motion/MotionInputBackendType.cs b/src/Ryujinx.Common/Configuration/Hid/Controller/Motion/MotionInputBackendType.cs
index c6551047..c6551047 100644
--- a/Ryujinx.Common/Configuration/Hid/Controller/Motion/MotionInputBackendType.cs
+++ b/src/Ryujinx.Common/Configuration/Hid/Controller/Motion/MotionInputBackendType.cs
diff --git a/Ryujinx.Common/Configuration/Hid/Controller/Motion/StandardMotionConfigController.cs b/src/Ryujinx.Common/Configuration/Hid/Controller/Motion/StandardMotionConfigController.cs
index df925444..df925444 100644
--- a/Ryujinx.Common/Configuration/Hid/Controller/Motion/StandardMotionConfigController.cs
+++ b/src/Ryujinx.Common/Configuration/Hid/Controller/Motion/StandardMotionConfigController.cs
diff --git a/Ryujinx.Common/Configuration/Hid/Controller/RumbleConfigController.cs b/src/Ryujinx.Common/Configuration/Hid/Controller/RumbleConfigController.cs
index 48be4f13..48be4f13 100644
--- a/Ryujinx.Common/Configuration/Hid/Controller/RumbleConfigController.cs
+++ b/src/Ryujinx.Common/Configuration/Hid/Controller/RumbleConfigController.cs
diff --git a/Ryujinx.Common/Configuration/Hid/Controller/StandardControllerInputConfig.cs b/src/Ryujinx.Common/Configuration/Hid/Controller/StandardControllerInputConfig.cs
index 4154a42b..4154a42b 100644
--- a/Ryujinx.Common/Configuration/Hid/Controller/StandardControllerInputConfig.cs
+++ b/src/Ryujinx.Common/Configuration/Hid/Controller/StandardControllerInputConfig.cs
diff --git a/Ryujinx.Common/Configuration/Hid/Controller/StickInputId.cs b/src/Ryujinx.Common/Configuration/Hid/Controller/StickInputId.cs
index 5fc4d1c8..5fc4d1c8 100644
--- a/Ryujinx.Common/Configuration/Hid/Controller/StickInputId.cs
+++ b/src/Ryujinx.Common/Configuration/Hid/Controller/StickInputId.cs
diff --git a/Ryujinx.Common/Configuration/Hid/ControllerType.cs b/src/Ryujinx.Common/Configuration/Hid/ControllerType.cs
index 70f811c8..70f811c8 100644
--- a/Ryujinx.Common/Configuration/Hid/ControllerType.cs
+++ b/src/Ryujinx.Common/Configuration/Hid/ControllerType.cs
diff --git a/Ryujinx.Common/Configuration/Hid/GenericInputConfigurationCommon.cs b/src/Ryujinx.Common/Configuration/Hid/GenericInputConfigurationCommon.cs
index 3d43817e..3d43817e 100644
--- a/Ryujinx.Common/Configuration/Hid/GenericInputConfigurationCommon.cs
+++ b/src/Ryujinx.Common/Configuration/Hid/GenericInputConfigurationCommon.cs
diff --git a/Ryujinx.Common/Configuration/Hid/InputBackendType.cs b/src/Ryujinx.Common/Configuration/Hid/InputBackendType.cs
index 1db3f570..1db3f570 100644
--- a/Ryujinx.Common/Configuration/Hid/InputBackendType.cs
+++ b/src/Ryujinx.Common/Configuration/Hid/InputBackendType.cs
diff --git a/Ryujinx.Common/Configuration/Hid/InputConfig.cs b/src/Ryujinx.Common/Configuration/Hid/InputConfig.cs
index 16c8f8e3..16c8f8e3 100644
--- a/Ryujinx.Common/Configuration/Hid/InputConfig.cs
+++ b/src/Ryujinx.Common/Configuration/Hid/InputConfig.cs
diff --git a/Ryujinx.Common/Configuration/Hid/InputConfigJsonSerializerContext.cs b/src/Ryujinx.Common/Configuration/Hid/InputConfigJsonSerializerContext.cs
index 254c4feb..254c4feb 100644
--- a/Ryujinx.Common/Configuration/Hid/InputConfigJsonSerializerContext.cs
+++ b/src/Ryujinx.Common/Configuration/Hid/InputConfigJsonSerializerContext.cs
diff --git a/Ryujinx.Common/Configuration/Hid/JsonInputConfigConverter.cs b/src/Ryujinx.Common/Configuration/Hid/JsonInputConfigConverter.cs
index 08bbcbf1..08bbcbf1 100644
--- a/Ryujinx.Common/Configuration/Hid/JsonInputConfigConverter.cs
+++ b/src/Ryujinx.Common/Configuration/Hid/JsonInputConfigConverter.cs
diff --git a/Ryujinx.Common/Configuration/Hid/Key.cs b/src/Ryujinx.Common/Configuration/Hid/Key.cs
index 3501b8ae..3501b8ae 100644
--- a/Ryujinx.Common/Configuration/Hid/Key.cs
+++ b/src/Ryujinx.Common/Configuration/Hid/Key.cs
diff --git a/Ryujinx.Common/Configuration/Hid/Keyboard/GenericKeyboardInputConfig.cs b/src/Ryujinx.Common/Configuration/Hid/Keyboard/GenericKeyboardInputConfig.cs
index b6c82c93..b6c82c93 100644
--- a/Ryujinx.Common/Configuration/Hid/Keyboard/GenericKeyboardInputConfig.cs
+++ b/src/Ryujinx.Common/Configuration/Hid/Keyboard/GenericKeyboardInputConfig.cs
diff --git a/Ryujinx.Common/Configuration/Hid/Keyboard/JoyconConfigKeyboardStick.cs b/src/Ryujinx.Common/Configuration/Hid/Keyboard/JoyconConfigKeyboardStick.cs
index cadc17e8..cadc17e8 100644
--- a/Ryujinx.Common/Configuration/Hid/Keyboard/JoyconConfigKeyboardStick.cs
+++ b/src/Ryujinx.Common/Configuration/Hid/Keyboard/JoyconConfigKeyboardStick.cs
diff --git a/Ryujinx.Common/Configuration/Hid/Keyboard/StandardKeyboardInputConfig.cs b/src/Ryujinx.Common/Configuration/Hid/Keyboard/StandardKeyboardInputConfig.cs
index 054d777d..054d777d 100644
--- a/Ryujinx.Common/Configuration/Hid/Keyboard/StandardKeyboardInputConfig.cs
+++ b/src/Ryujinx.Common/Configuration/Hid/Keyboard/StandardKeyboardInputConfig.cs
diff --git a/Ryujinx.Common/Configuration/Hid/KeyboardHotkeys.cs b/src/Ryujinx.Common/Configuration/Hid/KeyboardHotkeys.cs
index 1a10c2a5..1a10c2a5 100644
--- a/Ryujinx.Common/Configuration/Hid/KeyboardHotkeys.cs
+++ b/src/Ryujinx.Common/Configuration/Hid/KeyboardHotkeys.cs
diff --git a/Ryujinx.Common/Configuration/Hid/LeftJoyconCommonConfig.cs b/src/Ryujinx.Common/Configuration/Hid/LeftJoyconCommonConfig.cs
index a57240c4..a57240c4 100644
--- a/Ryujinx.Common/Configuration/Hid/LeftJoyconCommonConfig.cs
+++ b/src/Ryujinx.Common/Configuration/Hid/LeftJoyconCommonConfig.cs
diff --git a/Ryujinx.Common/Configuration/Hid/PlayerIndex.cs b/src/Ryujinx.Common/Configuration/Hid/PlayerIndex.cs
index dd6495d4..dd6495d4 100644
--- a/Ryujinx.Common/Configuration/Hid/PlayerIndex.cs
+++ b/src/Ryujinx.Common/Configuration/Hid/PlayerIndex.cs
diff --git a/Ryujinx.Common/Configuration/Hid/RightJoyconCommonConfig.cs b/src/Ryujinx.Common/Configuration/Hid/RightJoyconCommonConfig.cs
index ca2d0176..ca2d0176 100644
--- a/Ryujinx.Common/Configuration/Hid/RightJoyconCommonConfig.cs
+++ b/src/Ryujinx.Common/Configuration/Hid/RightJoyconCommonConfig.cs
diff --git a/Ryujinx.Common/Configuration/MemoryManagerMode.cs b/src/Ryujinx.Common/Configuration/MemoryManagerMode.cs
index f10fd6f1..f10fd6f1 100644
--- a/Ryujinx.Common/Configuration/MemoryManagerMode.cs
+++ b/src/Ryujinx.Common/Configuration/MemoryManagerMode.cs
diff --git a/Ryujinx.Common/Configuration/ScalingFilter.cs b/src/Ryujinx.Common/Configuration/ScalingFilter.cs
index e38c7d73..e38c7d73 100644
--- a/Ryujinx.Common/Configuration/ScalingFilter.cs
+++ b/src/Ryujinx.Common/Configuration/ScalingFilter.cs
diff --git a/Ryujinx.Common/Configuration/TitleUpdateMetadata.cs b/src/Ryujinx.Common/Configuration/TitleUpdateMetadata.cs
index ea208e9c..ea208e9c 100644
--- a/Ryujinx.Common/Configuration/TitleUpdateMetadata.cs
+++ b/src/Ryujinx.Common/Configuration/TitleUpdateMetadata.cs
diff --git a/Ryujinx.Common/Configuration/TitleUpdateMetadataJsonSerializerContext.cs b/src/Ryujinx.Common/Configuration/TitleUpdateMetadataJsonSerializerContext.cs
index 5b661b87..5b661b87 100644
--- a/Ryujinx.Common/Configuration/TitleUpdateMetadataJsonSerializerContext.cs
+++ b/src/Ryujinx.Common/Configuration/TitleUpdateMetadataJsonSerializerContext.cs
diff --git a/Ryujinx.Common/Extensions/BinaryReaderExtensions.cs b/src/Ryujinx.Common/Extensions/BinaryReaderExtensions.cs
index 21da6fc0..21da6fc0 100644
--- a/Ryujinx.Common/Extensions/BinaryReaderExtensions.cs
+++ b/src/Ryujinx.Common/Extensions/BinaryReaderExtensions.cs
diff --git a/Ryujinx.Common/Extensions/BinaryWriterExtensions.cs b/src/Ryujinx.Common/Extensions/BinaryWriterExtensions.cs
index fddc8c1b..fddc8c1b 100644
--- a/Ryujinx.Common/Extensions/BinaryWriterExtensions.cs
+++ b/src/Ryujinx.Common/Extensions/BinaryWriterExtensions.cs
diff --git a/Ryujinx.Common/Extensions/StreamExtensions.cs b/src/Ryujinx.Common/Extensions/StreamExtensions.cs
index f6fc870a..f6fc870a 100644
--- a/Ryujinx.Common/Extensions/StreamExtensions.cs
+++ b/src/Ryujinx.Common/Extensions/StreamExtensions.cs
diff --git a/Ryujinx.Common/GraphicsDriver/DriverUtilities.cs b/src/Ryujinx.Common/GraphicsDriver/DriverUtilities.cs
index 3aabced7..3aabced7 100644
--- a/Ryujinx.Common/GraphicsDriver/DriverUtilities.cs
+++ b/src/Ryujinx.Common/GraphicsDriver/DriverUtilities.cs
diff --git a/Ryujinx.Common/GraphicsDriver/NVAPI/Nvapi.cs b/src/Ryujinx.Common/GraphicsDriver/NVAPI/Nvapi.cs
index 99eaa68f..99eaa68f 100644
--- a/Ryujinx.Common/GraphicsDriver/NVAPI/Nvapi.cs
+++ b/src/Ryujinx.Common/GraphicsDriver/NVAPI/Nvapi.cs
diff --git a/Ryujinx.Common/GraphicsDriver/NVAPI/NvapiUnicodeString.cs b/src/Ryujinx.Common/GraphicsDriver/NVAPI/NvapiUnicodeString.cs
index 6bbff2de..6bbff2de 100644
--- a/Ryujinx.Common/GraphicsDriver/NVAPI/NvapiUnicodeString.cs
+++ b/src/Ryujinx.Common/GraphicsDriver/NVAPI/NvapiUnicodeString.cs
diff --git a/Ryujinx.Common/GraphicsDriver/NVAPI/NvdrsApplicationV4.cs b/src/Ryujinx.Common/GraphicsDriver/NVAPI/NvdrsApplicationV4.cs
index 8b472cd1..8b472cd1 100644
--- a/Ryujinx.Common/GraphicsDriver/NVAPI/NvdrsApplicationV4.cs
+++ b/src/Ryujinx.Common/GraphicsDriver/NVAPI/NvdrsApplicationV4.cs
diff --git a/Ryujinx.Common/GraphicsDriver/NVAPI/NvdrsProfile.cs b/src/Ryujinx.Common/GraphicsDriver/NVAPI/NvdrsProfile.cs
index f1bfee82..f1bfee82 100644
--- a/Ryujinx.Common/GraphicsDriver/NVAPI/NvdrsProfile.cs
+++ b/src/Ryujinx.Common/GraphicsDriver/NVAPI/NvdrsProfile.cs
diff --git a/Ryujinx.Common/GraphicsDriver/NVAPI/NvdrsSetting.cs b/src/Ryujinx.Common/GraphicsDriver/NVAPI/NvdrsSetting.cs
index ac188b35..ac188b35 100644
--- a/Ryujinx.Common/GraphicsDriver/NVAPI/NvdrsSetting.cs
+++ b/src/Ryujinx.Common/GraphicsDriver/NVAPI/NvdrsSetting.cs
diff --git a/Ryujinx.Common/GraphicsDriver/NVThreadedOptimization.cs b/src/Ryujinx.Common/GraphicsDriver/NVThreadedOptimization.cs
index c5be6e37..c5be6e37 100644
--- a/Ryujinx.Common/GraphicsDriver/NVThreadedOptimization.cs
+++ b/src/Ryujinx.Common/GraphicsDriver/NVThreadedOptimization.cs
diff --git a/Ryujinx.Common/Hash128.cs b/src/Ryujinx.Common/Hash128.cs
index 04457bd0..04457bd0 100644
--- a/Ryujinx.Common/Hash128.cs
+++ b/src/Ryujinx.Common/Hash128.cs
diff --git a/Ryujinx.Common/Logging/Formatters/DefaultLogFormatter.cs b/src/Ryujinx.Common/Logging/Formatters/DefaultLogFormatter.cs
index 28a7d546..28a7d546 100644
--- a/Ryujinx.Common/Logging/Formatters/DefaultLogFormatter.cs
+++ b/src/Ryujinx.Common/Logging/Formatters/DefaultLogFormatter.cs
diff --git a/Ryujinx.Common/Logging/Formatters/DynamicObjectFormatter.cs b/src/Ryujinx.Common/Logging/Formatters/DynamicObjectFormatter.cs
index 5f15cc2a..5f15cc2a 100644
--- a/Ryujinx.Common/Logging/Formatters/DynamicObjectFormatter.cs
+++ b/src/Ryujinx.Common/Logging/Formatters/DynamicObjectFormatter.cs
diff --git a/Ryujinx.Common/Logging/Formatters/ILogFormatter.cs b/src/Ryujinx.Common/Logging/Formatters/ILogFormatter.cs
index 9a55bc6b..9a55bc6b 100644
--- a/Ryujinx.Common/Logging/Formatters/ILogFormatter.cs
+++ b/src/Ryujinx.Common/Logging/Formatters/ILogFormatter.cs
diff --git a/Ryujinx.Common/Logging/LogClass.cs b/src/Ryujinx.Common/Logging/LogClass.cs
index e62676cd..e62676cd 100644
--- a/Ryujinx.Common/Logging/LogClass.cs
+++ b/src/Ryujinx.Common/Logging/LogClass.cs
diff --git a/Ryujinx.Common/Logging/LogEventArgs.cs b/src/Ryujinx.Common/Logging/LogEventArgs.cs
index a27af780..a27af780 100644
--- a/Ryujinx.Common/Logging/LogEventArgs.cs
+++ b/src/Ryujinx.Common/Logging/LogEventArgs.cs
diff --git a/Ryujinx.Common/Logging/LogEventArgsJson.cs b/src/Ryujinx.Common/Logging/LogEventArgsJson.cs
index 425b9766..425b9766 100644
--- a/Ryujinx.Common/Logging/LogEventArgsJson.cs
+++ b/src/Ryujinx.Common/Logging/LogEventArgsJson.cs
diff --git a/Ryujinx.Common/Logging/LogEventJsonSerializerContext.cs b/src/Ryujinx.Common/Logging/LogEventJsonSerializerContext.cs
index da21f11e..da21f11e 100644
--- a/Ryujinx.Common/Logging/LogEventJsonSerializerContext.cs
+++ b/src/Ryujinx.Common/Logging/LogEventJsonSerializerContext.cs
diff --git a/Ryujinx.Common/Logging/LogLevel.cs b/src/Ryujinx.Common/Logging/LogLevel.cs
index 3786c756..3786c756 100644
--- a/Ryujinx.Common/Logging/LogLevel.cs
+++ b/src/Ryujinx.Common/Logging/LogLevel.cs
diff --git a/Ryujinx.Common/Logging/Logger.cs b/src/Ryujinx.Common/Logging/Logger.cs
index 4d48dd48..4d48dd48 100644
--- a/Ryujinx.Common/Logging/Logger.cs
+++ b/src/Ryujinx.Common/Logging/Logger.cs
diff --git a/Ryujinx.Common/Logging/Targets/AsyncLogTargetWrapper.cs b/src/Ryujinx.Common/Logging/Targets/AsyncLogTargetWrapper.cs
index 43c62d31..43c62d31 100644
--- a/Ryujinx.Common/Logging/Targets/AsyncLogTargetWrapper.cs
+++ b/src/Ryujinx.Common/Logging/Targets/AsyncLogTargetWrapper.cs
diff --git a/Ryujinx.Common/Logging/Targets/ConsoleLogTarget.cs b/src/Ryujinx.Common/Logging/Targets/ConsoleLogTarget.cs
index 7b77c4f2..7b77c4f2 100644
--- a/Ryujinx.Common/Logging/Targets/ConsoleLogTarget.cs
+++ b/src/Ryujinx.Common/Logging/Targets/ConsoleLogTarget.cs
diff --git a/Ryujinx.Common/Logging/Targets/FileLogTarget.cs b/src/Ryujinx.Common/Logging/Targets/FileLogTarget.cs
index 24dd6d17..24dd6d17 100644
--- a/Ryujinx.Common/Logging/Targets/FileLogTarget.cs
+++ b/src/Ryujinx.Common/Logging/Targets/FileLogTarget.cs
diff --git a/Ryujinx.Common/Logging/Targets/ILogTarget.cs b/src/Ryujinx.Common/Logging/Targets/ILogTarget.cs
index d4d26a93..d4d26a93 100644
--- a/Ryujinx.Common/Logging/Targets/ILogTarget.cs
+++ b/src/Ryujinx.Common/Logging/Targets/ILogTarget.cs
diff --git a/Ryujinx.Common/Logging/Targets/JsonLogTarget.cs b/src/Ryujinx.Common/Logging/Targets/JsonLogTarget.cs
index 06976433..06976433 100644
--- a/Ryujinx.Common/Logging/Targets/JsonLogTarget.cs
+++ b/src/Ryujinx.Common/Logging/Targets/JsonLogTarget.cs
diff --git a/Ryujinx.Common/Memory/ArrayPtr.cs b/src/Ryujinx.Common/Memory/ArrayPtr.cs
index 9e95f75e..9e95f75e 100644
--- a/Ryujinx.Common/Memory/ArrayPtr.cs
+++ b/src/Ryujinx.Common/Memory/ArrayPtr.cs
diff --git a/Ryujinx.Common/Memory/Box.cs b/src/Ryujinx.Common/Memory/Box.cs
index 743cc31d..743cc31d 100644
--- a/Ryujinx.Common/Memory/Box.cs
+++ b/src/Ryujinx.Common/Memory/Box.cs
diff --git a/Ryujinx.Common/Memory/ByteMemoryPool.ByteMemoryPoolBuffer.cs b/src/Ryujinx.Common/Memory/ByteMemoryPool.ByteMemoryPoolBuffer.cs
index eda350bd..eda350bd 100644
--- a/Ryujinx.Common/Memory/ByteMemoryPool.ByteMemoryPoolBuffer.cs
+++ b/src/Ryujinx.Common/Memory/ByteMemoryPool.ByteMemoryPoolBuffer.cs
diff --git a/Ryujinx.Common/Memory/ByteMemoryPool.cs b/src/Ryujinx.Common/Memory/ByteMemoryPool.cs
index 2910f408..2910f408 100644
--- a/Ryujinx.Common/Memory/ByteMemoryPool.cs
+++ b/src/Ryujinx.Common/Memory/ByteMemoryPool.cs
diff --git a/Ryujinx.Common/Memory/IArray.cs b/src/Ryujinx.Common/Memory/IArray.cs
index 8f17fade..8f17fade 100644
--- a/Ryujinx.Common/Memory/IArray.cs
+++ b/src/Ryujinx.Common/Memory/IArray.cs
diff --git a/Ryujinx.Common/Memory/MemoryStreamManager.cs b/src/Ryujinx.Common/Memory/MemoryStreamManager.cs
index 68b82999..68b82999 100644
--- a/Ryujinx.Common/Memory/MemoryStreamManager.cs
+++ b/src/Ryujinx.Common/Memory/MemoryStreamManager.cs
diff --git a/Ryujinx.Common/Memory/PartialUnmaps/NativeReaderWriterLock.cs b/src/Ryujinx.Common/Memory/PartialUnmaps/NativeReaderWriterLock.cs
index 78eeb16f..78eeb16f 100644
--- a/Ryujinx.Common/Memory/PartialUnmaps/NativeReaderWriterLock.cs
+++ b/src/Ryujinx.Common/Memory/PartialUnmaps/NativeReaderWriterLock.cs
diff --git a/Ryujinx.Common/Memory/PartialUnmaps/PartialUnmapHelpers.cs b/src/Ryujinx.Common/Memory/PartialUnmaps/PartialUnmapHelpers.cs
index e650de06..e650de06 100644
--- a/Ryujinx.Common/Memory/PartialUnmaps/PartialUnmapHelpers.cs
+++ b/src/Ryujinx.Common/Memory/PartialUnmaps/PartialUnmapHelpers.cs
diff --git a/Ryujinx.Common/Memory/PartialUnmaps/PartialUnmapState.cs b/src/Ryujinx.Common/Memory/PartialUnmaps/PartialUnmapState.cs
index 5b0bc07e..5b0bc07e 100644
--- a/Ryujinx.Common/Memory/PartialUnmaps/PartialUnmapState.cs
+++ b/src/Ryujinx.Common/Memory/PartialUnmaps/PartialUnmapState.cs
diff --git a/Ryujinx.Common/Memory/PartialUnmaps/ThreadLocalMap.cs b/src/Ryujinx.Common/Memory/PartialUnmaps/ThreadLocalMap.cs
index a3bd5be8..a3bd5be8 100644
--- a/Ryujinx.Common/Memory/PartialUnmaps/ThreadLocalMap.cs
+++ b/src/Ryujinx.Common/Memory/PartialUnmaps/ThreadLocalMap.cs
diff --git a/Ryujinx.Common/Memory/Ptr.cs b/src/Ryujinx.Common/Memory/Ptr.cs
index 66bcf569..66bcf569 100644
--- a/Ryujinx.Common/Memory/Ptr.cs
+++ b/src/Ryujinx.Common/Memory/Ptr.cs
diff --git a/Ryujinx.Common/Memory/SpanOrArray.cs b/src/Ryujinx.Common/Memory/SpanOrArray.cs
index a9798d27..a9798d27 100644
--- a/Ryujinx.Common/Memory/SpanOrArray.cs
+++ b/src/Ryujinx.Common/Memory/SpanOrArray.cs
diff --git a/Ryujinx.Common/Memory/SpanReader.cs b/src/Ryujinx.Common/Memory/SpanReader.cs
index 673932d0..673932d0 100644
--- a/Ryujinx.Common/Memory/SpanReader.cs
+++ b/src/Ryujinx.Common/Memory/SpanReader.cs
diff --git a/Ryujinx.Common/Memory/SpanWriter.cs b/src/Ryujinx.Common/Memory/SpanWriter.cs
index 5c35569d..5c35569d 100644
--- a/Ryujinx.Common/Memory/SpanWriter.cs
+++ b/src/Ryujinx.Common/Memory/SpanWriter.cs
diff --git a/Ryujinx.Common/Memory/StructArrayHelpers.cs b/src/Ryujinx.Common/Memory/StructArrayHelpers.cs
index a039d04e..a039d04e 100644
--- a/Ryujinx.Common/Memory/StructArrayHelpers.cs
+++ b/src/Ryujinx.Common/Memory/StructArrayHelpers.cs
diff --git a/Ryujinx.Common/Memory/StructByteArrayHelpers.cs b/src/Ryujinx.Common/Memory/StructByteArrayHelpers.cs
index 8693f5b8..8693f5b8 100644
--- a/Ryujinx.Common/Memory/StructByteArrayHelpers.cs
+++ b/src/Ryujinx.Common/Memory/StructByteArrayHelpers.cs
diff --git a/Ryujinx.Common/PerformanceCounter.cs b/src/Ryujinx.Common/PerformanceCounter.cs
index 97ee23a2..97ee23a2 100644
--- a/Ryujinx.Common/PerformanceCounter.cs
+++ b/src/Ryujinx.Common/PerformanceCounter.cs
diff --git a/Ryujinx.Common/Pools/ObjectPool.cs b/src/Ryujinx.Common/Pools/ObjectPool.cs
index e0bf5df6..e0bf5df6 100644
--- a/Ryujinx.Common/Pools/ObjectPool.cs
+++ b/src/Ryujinx.Common/Pools/ObjectPool.cs
diff --git a/Ryujinx.Common/Pools/SharedPools.cs b/src/Ryujinx.Common/Pools/SharedPools.cs
index b4860b85..b4860b85 100644
--- a/Ryujinx.Common/Pools/SharedPools.cs
+++ b/src/Ryujinx.Common/Pools/SharedPools.cs
diff --git a/Ryujinx.Common/Pools/ThreadStaticArray.cs b/src/Ryujinx.Common/Pools/ThreadStaticArray.cs
index 21434a02..21434a02 100644
--- a/Ryujinx.Common/Pools/ThreadStaticArray.cs
+++ b/src/Ryujinx.Common/Pools/ThreadStaticArray.cs
diff --git a/Ryujinx.Common/ReactiveObject.cs b/src/Ryujinx.Common/ReactiveObject.cs
index 44897f26..44897f26 100644
--- a/Ryujinx.Common/ReactiveObject.cs
+++ b/src/Ryujinx.Common/ReactiveObject.cs
diff --git a/Ryujinx.Common/ReferenceEqualityComparer.cs b/src/Ryujinx.Common/ReferenceEqualityComparer.cs
index d8ec29d8..d8ec29d8 100644
--- a/Ryujinx.Common/ReferenceEqualityComparer.cs
+++ b/src/Ryujinx.Common/ReferenceEqualityComparer.cs
diff --git a/Ryujinx.Common/ReleaseInformation.cs b/src/Ryujinx.Common/ReleaseInformation.cs
index 601c05b1..601c05b1 100644
--- a/Ryujinx.Common/ReleaseInformation.cs
+++ b/src/Ryujinx.Common/ReleaseInformation.cs
diff --git a/Ryujinx.Common/Ryujinx.Common.csproj b/src/Ryujinx.Common/Ryujinx.Common.csproj
index c02b11e0..c02b11e0 100644
--- a/Ryujinx.Common/Ryujinx.Common.csproj
+++ b/src/Ryujinx.Common/Ryujinx.Common.csproj
diff --git a/Ryujinx.Common/SystemInfo/LinuxSystemInfo.cs b/src/Ryujinx.Common/SystemInfo/LinuxSystemInfo.cs
index b0c15e49..b0c15e49 100644
--- a/Ryujinx.Common/SystemInfo/LinuxSystemInfo.cs
+++ b/src/Ryujinx.Common/SystemInfo/LinuxSystemInfo.cs
diff --git a/Ryujinx.Common/SystemInfo/MacOSSystemInfo.cs b/src/Ryujinx.Common/SystemInfo/MacOSSystemInfo.cs
index 06324a54..06324a54 100644
--- a/Ryujinx.Common/SystemInfo/MacOSSystemInfo.cs
+++ b/src/Ryujinx.Common/SystemInfo/MacOSSystemInfo.cs
diff --git a/Ryujinx.Common/SystemInfo/SystemInfo.cs b/src/Ryujinx.Common/SystemInfo/SystemInfo.cs
index e9ce3c58..e9ce3c58 100644
--- a/Ryujinx.Common/SystemInfo/SystemInfo.cs
+++ b/src/Ryujinx.Common/SystemInfo/SystemInfo.cs
diff --git a/Ryujinx.Common/SystemInfo/WindowsSystemInfo.cs b/src/Ryujinx.Common/SystemInfo/WindowsSystemInfo.cs
index c3598a1e..c3598a1e 100644
--- a/Ryujinx.Common/SystemInfo/WindowsSystemInfo.cs
+++ b/src/Ryujinx.Common/SystemInfo/WindowsSystemInfo.cs
diff --git a/Ryujinx.Common/SystemInterop/DisplaySleep.cs b/src/Ryujinx.Common/SystemInterop/DisplaySleep.cs
index 5a1f66f5..5a1f66f5 100644
--- a/Ryujinx.Common/SystemInterop/DisplaySleep.cs
+++ b/src/Ryujinx.Common/SystemInterop/DisplaySleep.cs
diff --git a/Ryujinx.Common/SystemInterop/ForceDpiAware.cs b/src/Ryujinx.Common/SystemInterop/ForceDpiAware.cs
index f17612a6..f17612a6 100644
--- a/Ryujinx.Common/SystemInterop/ForceDpiAware.cs
+++ b/src/Ryujinx.Common/SystemInterop/ForceDpiAware.cs
diff --git a/Ryujinx.Common/SystemInterop/GdiPlusHelper.cs b/src/Ryujinx.Common/SystemInterop/GdiPlusHelper.cs
index 1001424d..1001424d 100644
--- a/Ryujinx.Common/SystemInterop/GdiPlusHelper.cs
+++ b/src/Ryujinx.Common/SystemInterop/GdiPlusHelper.cs
diff --git a/Ryujinx.Common/SystemInterop/StdErrAdapter.cs b/src/Ryujinx.Common/SystemInterop/StdErrAdapter.cs
index b1ed7b68..b1ed7b68 100644
--- a/Ryujinx.Common/SystemInterop/StdErrAdapter.cs
+++ b/src/Ryujinx.Common/SystemInterop/StdErrAdapter.cs
diff --git a/Ryujinx.Common/SystemInterop/WindowsMultimediaTimerResolution.cs b/src/Ryujinx.Common/SystemInterop/WindowsMultimediaTimerResolution.cs
index a4fbf0bd..a4fbf0bd 100644
--- a/Ryujinx.Common/SystemInterop/WindowsMultimediaTimerResolution.cs
+++ b/src/Ryujinx.Common/SystemInterop/WindowsMultimediaTimerResolution.cs
diff --git a/Ryujinx.Common/Utilities/BitUtils.cs b/src/Ryujinx.Common/Utilities/BitUtils.cs
index f885ce84..f885ce84 100644
--- a/Ryujinx.Common/Utilities/BitUtils.cs
+++ b/src/Ryujinx.Common/Utilities/BitUtils.cs
diff --git a/Ryujinx.Common/Utilities/BitfieldExtensions.cs b/src/Ryujinx.Common/Utilities/BitfieldExtensions.cs
index ca429944..ca429944 100644
--- a/Ryujinx.Common/Utilities/BitfieldExtensions.cs
+++ b/src/Ryujinx.Common/Utilities/BitfieldExtensions.cs
diff --git a/Ryujinx.Common/Utilities/Buffers.cs b/src/Ryujinx.Common/Utilities/Buffers.cs
index d614bfc4..d614bfc4 100644
--- a/Ryujinx.Common/Utilities/Buffers.cs
+++ b/src/Ryujinx.Common/Utilities/Buffers.cs
diff --git a/Ryujinx.Common/Utilities/CommonJsonContext.cs b/src/Ryujinx.Common/Utilities/CommonJsonContext.cs
index d7b3f78c..d7b3f78c 100644
--- a/Ryujinx.Common/Utilities/CommonJsonContext.cs
+++ b/src/Ryujinx.Common/Utilities/CommonJsonContext.cs
diff --git a/Ryujinx.Common/Utilities/EmbeddedResources.cs b/src/Ryujinx.Common/Utilities/EmbeddedResources.cs
index 22b55f16..22b55f16 100644
--- a/Ryujinx.Common/Utilities/EmbeddedResources.cs
+++ b/src/Ryujinx.Common/Utilities/EmbeddedResources.cs
diff --git a/Ryujinx.Common/Utilities/HexUtils.cs b/src/Ryujinx.Common/Utilities/HexUtils.cs
index 63587cea..63587cea 100644
--- a/Ryujinx.Common/Utilities/HexUtils.cs
+++ b/src/Ryujinx.Common/Utilities/HexUtils.cs
diff --git a/Ryujinx.Common/Utilities/JsonHelper.cs b/src/Ryujinx.Common/Utilities/JsonHelper.cs
index 9a2d6f18..9a2d6f18 100644
--- a/Ryujinx.Common/Utilities/JsonHelper.cs
+++ b/src/Ryujinx.Common/Utilities/JsonHelper.cs
diff --git a/Ryujinx.Common/Utilities/MessagePackObjectFormatter.cs b/src/Ryujinx.Common/Utilities/MessagePackObjectFormatter.cs
index 3714bec0..3714bec0 100644
--- a/Ryujinx.Common/Utilities/MessagePackObjectFormatter.cs
+++ b/src/Ryujinx.Common/Utilities/MessagePackObjectFormatter.cs
diff --git a/Ryujinx.Common/Utilities/NetworkHelpers.cs b/src/Ryujinx.Common/Utilities/NetworkHelpers.cs
index b2f6f45d..b2f6f45d 100644
--- a/Ryujinx.Common/Utilities/NetworkHelpers.cs
+++ b/src/Ryujinx.Common/Utilities/NetworkHelpers.cs
diff --git a/Ryujinx.Common/Utilities/SpanHelpers.cs b/src/Ryujinx.Common/Utilities/SpanHelpers.cs
index 4765eab3..4765eab3 100644
--- a/Ryujinx.Common/Utilities/SpanHelpers.cs
+++ b/src/Ryujinx.Common/Utilities/SpanHelpers.cs
diff --git a/Ryujinx.Common/Utilities/StreamUtils.cs b/src/Ryujinx.Common/Utilities/StreamUtils.cs
index da97188d..da97188d 100644
--- a/Ryujinx.Common/Utilities/StreamUtils.cs
+++ b/src/Ryujinx.Common/Utilities/StreamUtils.cs
diff --git a/Ryujinx.Common/Utilities/TypedStringEnumConverter.cs b/src/Ryujinx.Common/Utilities/TypedStringEnumConverter.cs
index c0127dc4..c0127dc4 100644
--- a/Ryujinx.Common/Utilities/TypedStringEnumConverter.cs
+++ b/src/Ryujinx.Common/Utilities/TypedStringEnumConverter.cs
diff --git a/Ryujinx.Common/Utilities/UInt128Utils.cs b/src/Ryujinx.Common/Utilities/UInt128Utils.cs
index af8521b4..af8521b4 100644
--- a/Ryujinx.Common/Utilities/UInt128Utils.cs
+++ b/src/Ryujinx.Common/Utilities/UInt128Utils.cs
diff --git a/Ryujinx.Common/XXHash128.cs b/src/Ryujinx.Common/XXHash128.cs
index edbc652f..edbc652f 100644
--- a/Ryujinx.Common/XXHash128.cs
+++ b/src/Ryujinx.Common/XXHash128.cs
diff --git a/Ryujinx.Cpu/AddressSpace.cs b/src/Ryujinx.Cpu/AddressSpace.cs
index 9dc32426..9dc32426 100644
--- a/Ryujinx.Cpu/AddressSpace.cs
+++ b/src/Ryujinx.Cpu/AddressSpace.cs
diff --git a/Ryujinx.Cpu/AppleHv/Arm/ApFlags.cs b/src/Ryujinx.Cpu/AppleHv/Arm/ApFlags.cs
index 95e67432..95e67432 100644
--- a/Ryujinx.Cpu/AppleHv/Arm/ApFlags.cs
+++ b/src/Ryujinx.Cpu/AppleHv/Arm/ApFlags.cs
diff --git a/Ryujinx.Cpu/AppleHv/Arm/ExceptionClass.cs b/src/Ryujinx.Cpu/AppleHv/Arm/ExceptionClass.cs
index 18152f25..18152f25 100644
--- a/Ryujinx.Cpu/AppleHv/Arm/ExceptionClass.cs
+++ b/src/Ryujinx.Cpu/AppleHv/Arm/ExceptionClass.cs
diff --git a/Ryujinx.Cpu/AppleHv/DummyDiskCacheLoadState.cs b/src/Ryujinx.Cpu/AppleHv/DummyDiskCacheLoadState.cs
index 6a692e74..6a692e74 100644
--- a/Ryujinx.Cpu/AppleHv/DummyDiskCacheLoadState.cs
+++ b/src/Ryujinx.Cpu/AppleHv/DummyDiskCacheLoadState.cs
diff --git a/Ryujinx.Cpu/AppleHv/HvAddressSpace.cs b/src/Ryujinx.Cpu/AppleHv/HvAddressSpace.cs
index 78f4c464..78f4c464 100644
--- a/Ryujinx.Cpu/AppleHv/HvAddressSpace.cs
+++ b/src/Ryujinx.Cpu/AppleHv/HvAddressSpace.cs
diff --git a/Ryujinx.Cpu/AppleHv/HvAddressSpaceRange.cs b/src/Ryujinx.Cpu/AppleHv/HvAddressSpaceRange.cs
index ca30bb68..ca30bb68 100644
--- a/Ryujinx.Cpu/AppleHv/HvAddressSpaceRange.cs
+++ b/src/Ryujinx.Cpu/AppleHv/HvAddressSpaceRange.cs
diff --git a/Ryujinx.Cpu/AppleHv/HvApi.cs b/src/Ryujinx.Cpu/AppleHv/HvApi.cs
index d7628bb5..d7628bb5 100644
--- a/Ryujinx.Cpu/AppleHv/HvApi.cs
+++ b/src/Ryujinx.Cpu/AppleHv/HvApi.cs
diff --git a/Ryujinx.Cpu/AppleHv/HvCpuContext.cs b/src/Ryujinx.Cpu/AppleHv/HvCpuContext.cs
index de782d54..de782d54 100644
--- a/Ryujinx.Cpu/AppleHv/HvCpuContext.cs
+++ b/src/Ryujinx.Cpu/AppleHv/HvCpuContext.cs
diff --git a/Ryujinx.Cpu/AppleHv/HvEngine.cs b/src/Ryujinx.Cpu/AppleHv/HvEngine.cs
index 7ad99cb9..7ad99cb9 100644
--- a/Ryujinx.Cpu/AppleHv/HvEngine.cs
+++ b/src/Ryujinx.Cpu/AppleHv/HvEngine.cs
diff --git a/Ryujinx.Cpu/AppleHv/HvExecutionContext.cs b/src/Ryujinx.Cpu/AppleHv/HvExecutionContext.cs
index dc1f6f6d..dc1f6f6d 100644
--- a/Ryujinx.Cpu/AppleHv/HvExecutionContext.cs
+++ b/src/Ryujinx.Cpu/AppleHv/HvExecutionContext.cs
diff --git a/Ryujinx.Cpu/AppleHv/HvExecutionContextShadow.cs b/src/Ryujinx.Cpu/AppleHv/HvExecutionContextShadow.cs
index c088ebdc..c088ebdc 100644
--- a/Ryujinx.Cpu/AppleHv/HvExecutionContextShadow.cs
+++ b/src/Ryujinx.Cpu/AppleHv/HvExecutionContextShadow.cs
diff --git a/Ryujinx.Cpu/AppleHv/HvExecutionContextVcpu.cs b/src/Ryujinx.Cpu/AppleHv/HvExecutionContextVcpu.cs
index 4f6ebefa..4f6ebefa 100644
--- a/Ryujinx.Cpu/AppleHv/HvExecutionContextVcpu.cs
+++ b/src/Ryujinx.Cpu/AppleHv/HvExecutionContextVcpu.cs
diff --git a/Ryujinx.Cpu/AppleHv/HvIpaAllocator.cs b/src/Ryujinx.Cpu/AppleHv/HvIpaAllocator.cs
index 7eefe130..7eefe130 100644
--- a/Ryujinx.Cpu/AppleHv/HvIpaAllocator.cs
+++ b/src/Ryujinx.Cpu/AppleHv/HvIpaAllocator.cs
diff --git a/Ryujinx.Cpu/AppleHv/HvMemoryBlockAllocation.cs b/src/Ryujinx.Cpu/AppleHv/HvMemoryBlockAllocation.cs
index 94289d1c..94289d1c 100644
--- a/Ryujinx.Cpu/AppleHv/HvMemoryBlockAllocation.cs
+++ b/src/Ryujinx.Cpu/AppleHv/HvMemoryBlockAllocation.cs
diff --git a/Ryujinx.Cpu/AppleHv/HvMemoryBlockAllocator.cs b/src/Ryujinx.Cpu/AppleHv/HvMemoryBlockAllocator.cs
index 24c3a969..24c3a969 100644
--- a/Ryujinx.Cpu/AppleHv/HvMemoryBlockAllocator.cs
+++ b/src/Ryujinx.Cpu/AppleHv/HvMemoryBlockAllocator.cs
diff --git a/Ryujinx.Cpu/AppleHv/HvMemoryManager.cs b/src/Ryujinx.Cpu/AppleHv/HvMemoryManager.cs
index 437e02ae..437e02ae 100644
--- a/Ryujinx.Cpu/AppleHv/HvMemoryManager.cs
+++ b/src/Ryujinx.Cpu/AppleHv/HvMemoryManager.cs
diff --git a/Ryujinx.Cpu/AppleHv/HvVcpu.cs b/src/Ryujinx.Cpu/AppleHv/HvVcpu.cs
index 484a9fe8..484a9fe8 100644
--- a/Ryujinx.Cpu/AppleHv/HvVcpu.cs
+++ b/src/Ryujinx.Cpu/AppleHv/HvVcpu.cs
diff --git a/Ryujinx.Cpu/AppleHv/HvVcpuPool.cs b/src/Ryujinx.Cpu/AppleHv/HvVcpuPool.cs
index cb1944fe..cb1944fe 100644
--- a/Ryujinx.Cpu/AppleHv/HvVcpuPool.cs
+++ b/src/Ryujinx.Cpu/AppleHv/HvVcpuPool.cs
diff --git a/Ryujinx.Cpu/AppleHv/HvVm.cs b/src/Ryujinx.Cpu/AppleHv/HvVm.cs
index d91abff9..d91abff9 100644
--- a/Ryujinx.Cpu/AppleHv/HvVm.cs
+++ b/src/Ryujinx.Cpu/AppleHv/HvVm.cs
diff --git a/Ryujinx.Cpu/AppleHv/IHvExecutionContext.cs b/src/Ryujinx.Cpu/AppleHv/IHvExecutionContext.cs
index adf2dd99..adf2dd99 100644
--- a/Ryujinx.Cpu/AppleHv/IHvExecutionContext.cs
+++ b/src/Ryujinx.Cpu/AppleHv/IHvExecutionContext.cs
diff --git a/Ryujinx.Cpu/ExceptionCallbacks.cs b/src/Ryujinx.Cpu/ExceptionCallbacks.cs
index d9293302..d9293302 100644
--- a/Ryujinx.Cpu/ExceptionCallbacks.cs
+++ b/src/Ryujinx.Cpu/ExceptionCallbacks.cs
diff --git a/Ryujinx.Cpu/ICpuContext.cs b/src/Ryujinx.Cpu/ICpuContext.cs
index 80916d1c..80916d1c 100644
--- a/Ryujinx.Cpu/ICpuContext.cs
+++ b/src/Ryujinx.Cpu/ICpuContext.cs
diff --git a/Ryujinx.Cpu/ICpuEngine.cs b/src/Ryujinx.Cpu/ICpuEngine.cs
index b53b23a8..b53b23a8 100644
--- a/Ryujinx.Cpu/ICpuEngine.cs
+++ b/src/Ryujinx.Cpu/ICpuEngine.cs
diff --git a/Ryujinx.Cpu/IDiskCacheState.cs b/src/Ryujinx.Cpu/IDiskCacheState.cs
index 61bbdf92..61bbdf92 100644
--- a/Ryujinx.Cpu/IDiskCacheState.cs
+++ b/src/Ryujinx.Cpu/IDiskCacheState.cs
diff --git a/Ryujinx.Cpu/IExecutionContext.cs b/src/Ryujinx.Cpu/IExecutionContext.cs
index c3821080..c3821080 100644
--- a/Ryujinx.Cpu/IExecutionContext.cs
+++ b/src/Ryujinx.Cpu/IExecutionContext.cs
diff --git a/Ryujinx.Cpu/ITickSource.cs b/src/Ryujinx.Cpu/ITickSource.cs
index e65e99e2..e65e99e2 100644
--- a/Ryujinx.Cpu/ITickSource.cs
+++ b/src/Ryujinx.Cpu/ITickSource.cs
diff --git a/Ryujinx.Cpu/IVirtualMemoryManagerTracked.cs b/src/Ryujinx.Cpu/IVirtualMemoryManagerTracked.cs
index 92d3c76c..92d3c76c 100644
--- a/Ryujinx.Cpu/IVirtualMemoryManagerTracked.cs
+++ b/src/Ryujinx.Cpu/IVirtualMemoryManagerTracked.cs
diff --git a/Ryujinx.Cpu/Jit/JitCpuContext.cs b/src/Ryujinx.Cpu/Jit/JitCpuContext.cs
index 02465a0b..02465a0b 100644
--- a/Ryujinx.Cpu/Jit/JitCpuContext.cs
+++ b/src/Ryujinx.Cpu/Jit/JitCpuContext.cs
diff --git a/Ryujinx.Cpu/Jit/JitDiskCacheLoadState.cs b/src/Ryujinx.Cpu/Jit/JitDiskCacheLoadState.cs
index 7a4b670b..7a4b670b 100644
--- a/Ryujinx.Cpu/Jit/JitDiskCacheLoadState.cs
+++ b/src/Ryujinx.Cpu/Jit/JitDiskCacheLoadState.cs
diff --git a/Ryujinx.Cpu/Jit/JitEngine.cs b/src/Ryujinx.Cpu/Jit/JitEngine.cs
index b158074f..b158074f 100644
--- a/Ryujinx.Cpu/Jit/JitEngine.cs
+++ b/src/Ryujinx.Cpu/Jit/JitEngine.cs
diff --git a/Ryujinx.Cpu/Jit/JitExecutionContext.cs b/src/Ryujinx.Cpu/Jit/JitExecutionContext.cs
index e1a527b1..e1a527b1 100644
--- a/Ryujinx.Cpu/Jit/JitExecutionContext.cs
+++ b/src/Ryujinx.Cpu/Jit/JitExecutionContext.cs
diff --git a/Ryujinx.Cpu/Jit/JitMemoryAllocator.cs b/src/Ryujinx.Cpu/Jit/JitMemoryAllocator.cs
index 4aa78d06..4aa78d06 100644
--- a/Ryujinx.Cpu/Jit/JitMemoryAllocator.cs
+++ b/src/Ryujinx.Cpu/Jit/JitMemoryAllocator.cs
diff --git a/Ryujinx.Cpu/Jit/JitMemoryBlock.cs b/src/Ryujinx.Cpu/Jit/JitMemoryBlock.cs
index 327fb303..327fb303 100644
--- a/Ryujinx.Cpu/Jit/JitMemoryBlock.cs
+++ b/src/Ryujinx.Cpu/Jit/JitMemoryBlock.cs
diff --git a/Ryujinx.Cpu/Jit/MemoryManager.cs b/src/Ryujinx.Cpu/Jit/MemoryManager.cs
index 8542d53e..8542d53e 100644
--- a/Ryujinx.Cpu/Jit/MemoryManager.cs
+++ b/src/Ryujinx.Cpu/Jit/MemoryManager.cs
diff --git a/Ryujinx.Cpu/Jit/MemoryManagerHostMapped.cs b/src/Ryujinx.Cpu/Jit/MemoryManagerHostMapped.cs
index 090740ab..090740ab 100644
--- a/Ryujinx.Cpu/Jit/MemoryManagerHostMapped.cs
+++ b/src/Ryujinx.Cpu/Jit/MemoryManagerHostMapped.cs
diff --git a/Ryujinx.Cpu/LoadState.cs b/src/Ryujinx.Cpu/LoadState.cs
index 1f2e1ae8..1f2e1ae8 100644
--- a/Ryujinx.Cpu/LoadState.cs
+++ b/src/Ryujinx.Cpu/LoadState.cs
diff --git a/Ryujinx.Cpu/MemoryEhMeilleure.cs b/src/Ryujinx.Cpu/MemoryEhMeilleure.cs
index 0b434ea7..0b434ea7 100644
--- a/Ryujinx.Cpu/MemoryEhMeilleure.cs
+++ b/src/Ryujinx.Cpu/MemoryEhMeilleure.cs
diff --git a/Ryujinx.Cpu/MemoryHelper.cs b/src/Ryujinx.Cpu/MemoryHelper.cs
index 194a0c35..194a0c35 100644
--- a/Ryujinx.Cpu/MemoryHelper.cs
+++ b/src/Ryujinx.Cpu/MemoryHelper.cs
diff --git a/Ryujinx.Cpu/MemoryManagerBase.cs b/src/Ryujinx.Cpu/MemoryManagerBase.cs
index d2fc7a19..d2fc7a19 100644
--- a/Ryujinx.Cpu/MemoryManagerBase.cs
+++ b/src/Ryujinx.Cpu/MemoryManagerBase.cs
diff --git a/Ryujinx.Cpu/PrivateMemoryAllocation.cs b/src/Ryujinx.Cpu/PrivateMemoryAllocation.cs
index 1327880e..1327880e 100644
--- a/Ryujinx.Cpu/PrivateMemoryAllocation.cs
+++ b/src/Ryujinx.Cpu/PrivateMemoryAllocation.cs
diff --git a/Ryujinx.Cpu/PrivateMemoryAllocator.cs b/src/Ryujinx.Cpu/PrivateMemoryAllocator.cs
index cbf1f1d9..cbf1f1d9 100644
--- a/Ryujinx.Cpu/PrivateMemoryAllocator.cs
+++ b/src/Ryujinx.Cpu/PrivateMemoryAllocator.cs
diff --git a/Ryujinx.Cpu/Ryujinx.Cpu.csproj b/src/Ryujinx.Cpu/Ryujinx.Cpu.csproj
index 7da8da25..7da8da25 100644
--- a/Ryujinx.Cpu/Ryujinx.Cpu.csproj
+++ b/src/Ryujinx.Cpu/Ryujinx.Cpu.csproj
diff --git a/Ryujinx.Cpu/TickSource.cs b/src/Ryujinx.Cpu/TickSource.cs
index dc510bc2..dc510bc2 100644
--- a/Ryujinx.Cpu/TickSource.cs
+++ b/src/Ryujinx.Cpu/TickSource.cs
diff --git a/Ryujinx.Cpu/Tracking/CpuMultiRegionHandle.cs b/src/Ryujinx.Cpu/Tracking/CpuMultiRegionHandle.cs
index 0ed8bfc5..0ed8bfc5 100644
--- a/Ryujinx.Cpu/Tracking/CpuMultiRegionHandle.cs
+++ b/src/Ryujinx.Cpu/Tracking/CpuMultiRegionHandle.cs
diff --git a/Ryujinx.Cpu/Tracking/CpuRegionHandle.cs b/src/Ryujinx.Cpu/Tracking/CpuRegionHandle.cs
index e766460f..e766460f 100644
--- a/Ryujinx.Cpu/Tracking/CpuRegionHandle.cs
+++ b/src/Ryujinx.Cpu/Tracking/CpuRegionHandle.cs
diff --git a/Ryujinx.Cpu/Tracking/CpuSmartMultiRegionHandle.cs b/src/Ryujinx.Cpu/Tracking/CpuSmartMultiRegionHandle.cs
index 665271c6..665271c6 100644
--- a/Ryujinx.Cpu/Tracking/CpuSmartMultiRegionHandle.cs
+++ b/src/Ryujinx.Cpu/Tracking/CpuSmartMultiRegionHandle.cs
diff --git a/Ryujinx.Graphics.Device/DeviceState.cs b/src/Ryujinx.Graphics.Device/DeviceState.cs
index a9b446e1..a9b446e1 100644
--- a/Ryujinx.Graphics.Device/DeviceState.cs
+++ b/src/Ryujinx.Graphics.Device/DeviceState.cs
diff --git a/Ryujinx.Graphics.Device/IDeviceState.cs b/src/Ryujinx.Graphics.Device/IDeviceState.cs
index 077d69f2..077d69f2 100644
--- a/Ryujinx.Graphics.Device/IDeviceState.cs
+++ b/src/Ryujinx.Graphics.Device/IDeviceState.cs
diff --git a/Ryujinx.Graphics.Device/IDeviceStateWithContext.cs b/src/Ryujinx.Graphics.Device/IDeviceStateWithContext.cs
index 17b2fa21..17b2fa21 100644
--- a/Ryujinx.Graphics.Device/IDeviceStateWithContext.cs
+++ b/src/Ryujinx.Graphics.Device/IDeviceStateWithContext.cs
diff --git a/Ryujinx.Graphics.Device/RwCallback.cs b/src/Ryujinx.Graphics.Device/RwCallback.cs
index dc8499e9..dc8499e9 100644
--- a/Ryujinx.Graphics.Device/RwCallback.cs
+++ b/src/Ryujinx.Graphics.Device/RwCallback.cs
diff --git a/Ryujinx.Graphics.Device/Ryujinx.Graphics.Device.csproj b/src/Ryujinx.Graphics.Device/Ryujinx.Graphics.Device.csproj
index 082dac9c..082dac9c 100644
--- a/Ryujinx.Graphics.Device/Ryujinx.Graphics.Device.csproj
+++ b/src/Ryujinx.Graphics.Device/Ryujinx.Graphics.Device.csproj
diff --git a/Ryujinx.Graphics.Device/SizeCalculator.cs b/src/Ryujinx.Graphics.Device/SizeCalculator.cs
index 7409c041..7409c041 100644
--- a/Ryujinx.Graphics.Device/SizeCalculator.cs
+++ b/src/Ryujinx.Graphics.Device/SizeCalculator.cs
diff --git a/Ryujinx.Graphics.GAL/AddressMode.cs b/src/Ryujinx.Graphics.GAL/AddressMode.cs
index 153925b1..153925b1 100644
--- a/Ryujinx.Graphics.GAL/AddressMode.cs
+++ b/src/Ryujinx.Graphics.GAL/AddressMode.cs
diff --git a/Ryujinx.Graphics.GAL/AdvancedBlendDescriptor.cs b/src/Ryujinx.Graphics.GAL/AdvancedBlendDescriptor.cs
index 1f1f7c3f..1f1f7c3f 100644
--- a/Ryujinx.Graphics.GAL/AdvancedBlendDescriptor.cs
+++ b/src/Ryujinx.Graphics.GAL/AdvancedBlendDescriptor.cs
diff --git a/Ryujinx.Graphics.GAL/AdvancedBlendOp.cs b/src/Ryujinx.Graphics.GAL/AdvancedBlendOp.cs
index 4140bf49..4140bf49 100644
--- a/Ryujinx.Graphics.GAL/AdvancedBlendOp.cs
+++ b/src/Ryujinx.Graphics.GAL/AdvancedBlendOp.cs
diff --git a/Ryujinx.Graphics.GAL/AdvancedBlendOverlap.cs b/src/Ryujinx.Graphics.GAL/AdvancedBlendOverlap.cs
index d4feb2b3..d4feb2b3 100644
--- a/Ryujinx.Graphics.GAL/AdvancedBlendOverlap.cs
+++ b/src/Ryujinx.Graphics.GAL/AdvancedBlendOverlap.cs
diff --git a/Ryujinx.Graphics.GAL/AntiAliasing.cs b/src/Ryujinx.Graphics.GAL/AntiAliasing.cs
index d4e5754d..d4e5754d 100644
--- a/Ryujinx.Graphics.GAL/AntiAliasing.cs
+++ b/src/Ryujinx.Graphics.GAL/AntiAliasing.cs
diff --git a/Ryujinx.Graphics.GAL/BlendDescriptor.cs b/src/Ryujinx.Graphics.GAL/BlendDescriptor.cs
index 83b8afe2..83b8afe2 100644
--- a/Ryujinx.Graphics.GAL/BlendDescriptor.cs
+++ b/src/Ryujinx.Graphics.GAL/BlendDescriptor.cs
diff --git a/Ryujinx.Graphics.GAL/BlendFactor.cs b/src/Ryujinx.Graphics.GAL/BlendFactor.cs
index 4149ad51..4149ad51 100644
--- a/Ryujinx.Graphics.GAL/BlendFactor.cs
+++ b/src/Ryujinx.Graphics.GAL/BlendFactor.cs
diff --git a/Ryujinx.Graphics.GAL/BlendOp.cs b/src/Ryujinx.Graphics.GAL/BlendOp.cs
index b4a5a930..b4a5a930 100644
--- a/Ryujinx.Graphics.GAL/BlendOp.cs
+++ b/src/Ryujinx.Graphics.GAL/BlendOp.cs
diff --git a/Ryujinx.Graphics.GAL/BufferAssignment.cs b/src/Ryujinx.Graphics.GAL/BufferAssignment.cs
index d803d90b..d803d90b 100644
--- a/Ryujinx.Graphics.GAL/BufferAssignment.cs
+++ b/src/Ryujinx.Graphics.GAL/BufferAssignment.cs
diff --git a/Ryujinx.Graphics.GAL/BufferHandle.cs b/src/Ryujinx.Graphics.GAL/BufferHandle.cs
index 5ba50d19..5ba50d19 100644
--- a/Ryujinx.Graphics.GAL/BufferHandle.cs
+++ b/src/Ryujinx.Graphics.GAL/BufferHandle.cs
diff --git a/Ryujinx.Graphics.GAL/BufferRange.cs b/src/Ryujinx.Graphics.GAL/BufferRange.cs
index ad9ebee4..ad9ebee4 100644
--- a/Ryujinx.Graphics.GAL/BufferRange.cs
+++ b/src/Ryujinx.Graphics.GAL/BufferRange.cs
diff --git a/Ryujinx.Graphics.GAL/Capabilities.cs b/src/Ryujinx.Graphics.GAL/Capabilities.cs
index a93d3846..a93d3846 100644
--- a/Ryujinx.Graphics.GAL/Capabilities.cs
+++ b/src/Ryujinx.Graphics.GAL/Capabilities.cs
diff --git a/Ryujinx.Graphics.GAL/ColorF.cs b/src/Ryujinx.Graphics.GAL/ColorF.cs
index 235f4229..235f4229 100644
--- a/Ryujinx.Graphics.GAL/ColorF.cs
+++ b/src/Ryujinx.Graphics.GAL/ColorF.cs
diff --git a/Ryujinx.Graphics.GAL/CompareMode.cs b/src/Ryujinx.Graphics.GAL/CompareMode.cs
index 7a64d9bb..7a64d9bb 100644
--- a/Ryujinx.Graphics.GAL/CompareMode.cs
+++ b/src/Ryujinx.Graphics.GAL/CompareMode.cs
diff --git a/Ryujinx.Graphics.GAL/CompareOp.cs b/src/Ryujinx.Graphics.GAL/CompareOp.cs
index 358ed2b4..358ed2b4 100644
--- a/Ryujinx.Graphics.GAL/CompareOp.cs
+++ b/src/Ryujinx.Graphics.GAL/CompareOp.cs
diff --git a/Ryujinx.Graphics.GAL/CounterType.cs b/src/Ryujinx.Graphics.GAL/CounterType.cs
index 9d7b3b98..9d7b3b98 100644
--- a/Ryujinx.Graphics.GAL/CounterType.cs
+++ b/src/Ryujinx.Graphics.GAL/CounterType.cs
diff --git a/Ryujinx.Graphics.GAL/DepthMode.cs b/src/Ryujinx.Graphics.GAL/DepthMode.cs
index aafbb65a..aafbb65a 100644
--- a/Ryujinx.Graphics.GAL/DepthMode.cs
+++ b/src/Ryujinx.Graphics.GAL/DepthMode.cs
diff --git a/Ryujinx.Graphics.GAL/DepthStencilMode.cs b/src/Ryujinx.Graphics.GAL/DepthStencilMode.cs
index e80d0d4b..e80d0d4b 100644
--- a/Ryujinx.Graphics.GAL/DepthStencilMode.cs
+++ b/src/Ryujinx.Graphics.GAL/DepthStencilMode.cs
diff --git a/Ryujinx.Graphics.GAL/DepthTestDescriptor.cs b/src/Ryujinx.Graphics.GAL/DepthTestDescriptor.cs
index 4c593392..4c593392 100644
--- a/Ryujinx.Graphics.GAL/DepthTestDescriptor.cs
+++ b/src/Ryujinx.Graphics.GAL/DepthTestDescriptor.cs
diff --git a/Ryujinx.Graphics.GAL/DeviceInfo.cs b/src/Ryujinx.Graphics.GAL/DeviceInfo.cs
index eb4a016f..eb4a016f 100644
--- a/Ryujinx.Graphics.GAL/DeviceInfo.cs
+++ b/src/Ryujinx.Graphics.GAL/DeviceInfo.cs
diff --git a/Ryujinx.Graphics.GAL/Extents2D.cs b/src/Ryujinx.Graphics.GAL/Extents2D.cs
index bac44f83..bac44f83 100644
--- a/Ryujinx.Graphics.GAL/Extents2D.cs
+++ b/src/Ryujinx.Graphics.GAL/Extents2D.cs
diff --git a/Ryujinx.Graphics.GAL/Extents2DF.cs b/src/Ryujinx.Graphics.GAL/Extents2DF.cs
index 43f0e25e..43f0e25e 100644
--- a/Ryujinx.Graphics.GAL/Extents2DF.cs
+++ b/src/Ryujinx.Graphics.GAL/Extents2DF.cs
diff --git a/Ryujinx.Graphics.GAL/Face.cs b/src/Ryujinx.Graphics.GAL/Face.cs
index 0587641f..0587641f 100644
--- a/Ryujinx.Graphics.GAL/Face.cs
+++ b/src/Ryujinx.Graphics.GAL/Face.cs
diff --git a/Ryujinx.Graphics.GAL/Format.cs b/src/Ryujinx.Graphics.GAL/Format.cs
index 5e0274e5..5e0274e5 100644
--- a/Ryujinx.Graphics.GAL/Format.cs
+++ b/src/Ryujinx.Graphics.GAL/Format.cs
diff --git a/Ryujinx.Graphics.GAL/FrontFace.cs b/src/Ryujinx.Graphics.GAL/FrontFace.cs
index aa6bfdc5..aa6bfdc5 100644
--- a/Ryujinx.Graphics.GAL/FrontFace.cs
+++ b/src/Ryujinx.Graphics.GAL/FrontFace.cs
diff --git a/Ryujinx.Graphics.GAL/HardwareInfo.cs b/src/Ryujinx.Graphics.GAL/HardwareInfo.cs
index 4dd6849b..4dd6849b 100644
--- a/Ryujinx.Graphics.GAL/HardwareInfo.cs
+++ b/src/Ryujinx.Graphics.GAL/HardwareInfo.cs
diff --git a/Ryujinx.Graphics.GAL/ICounterEvent.cs b/src/Ryujinx.Graphics.GAL/ICounterEvent.cs
index 13b15ae4..13b15ae4 100644
--- a/Ryujinx.Graphics.GAL/ICounterEvent.cs
+++ b/src/Ryujinx.Graphics.GAL/ICounterEvent.cs
diff --git a/Ryujinx.Graphics.GAL/IPipeline.cs b/src/Ryujinx.Graphics.GAL/IPipeline.cs
index 0a362081..0a362081 100644
--- a/Ryujinx.Graphics.GAL/IPipeline.cs
+++ b/src/Ryujinx.Graphics.GAL/IPipeline.cs
diff --git a/Ryujinx.Graphics.GAL/IProgram.cs b/src/Ryujinx.Graphics.GAL/IProgram.cs
index 272a2f7d..272a2f7d 100644
--- a/Ryujinx.Graphics.GAL/IProgram.cs
+++ b/src/Ryujinx.Graphics.GAL/IProgram.cs
diff --git a/Ryujinx.Graphics.GAL/IRenderer.cs b/src/Ryujinx.Graphics.GAL/IRenderer.cs
index 2af7b5db..2af7b5db 100644
--- a/Ryujinx.Graphics.GAL/IRenderer.cs
+++ b/src/Ryujinx.Graphics.GAL/IRenderer.cs
diff --git a/Ryujinx.Graphics.GAL/ISampler.cs b/src/Ryujinx.Graphics.GAL/ISampler.cs
index 3aefc6a7..3aefc6a7 100644
--- a/Ryujinx.Graphics.GAL/ISampler.cs
+++ b/src/Ryujinx.Graphics.GAL/ISampler.cs
diff --git a/Ryujinx.Graphics.GAL/ITexture.cs b/src/Ryujinx.Graphics.GAL/ITexture.cs
index 792c863c..792c863c 100644
--- a/Ryujinx.Graphics.GAL/ITexture.cs
+++ b/src/Ryujinx.Graphics.GAL/ITexture.cs
diff --git a/Ryujinx.Graphics.GAL/IWindow.cs b/src/Ryujinx.Graphics.GAL/IWindow.cs
index 1221d685..1221d685 100644
--- a/Ryujinx.Graphics.GAL/IWindow.cs
+++ b/src/Ryujinx.Graphics.GAL/IWindow.cs
diff --git a/Ryujinx.Graphics.GAL/ImageCrop.cs b/src/Ryujinx.Graphics.GAL/ImageCrop.cs
index e8220974..e8220974 100644
--- a/Ryujinx.Graphics.GAL/ImageCrop.cs
+++ b/src/Ryujinx.Graphics.GAL/ImageCrop.cs
diff --git a/Ryujinx.Graphics.GAL/IndexType.cs b/src/Ryujinx.Graphics.GAL/IndexType.cs
index 4abf28d9..4abf28d9 100644
--- a/Ryujinx.Graphics.GAL/IndexType.cs
+++ b/src/Ryujinx.Graphics.GAL/IndexType.cs
diff --git a/Ryujinx.Graphics.GAL/LogicalOp.cs b/src/Ryujinx.Graphics.GAL/LogicalOp.cs
index 848215d0..848215d0 100644
--- a/Ryujinx.Graphics.GAL/LogicalOp.cs
+++ b/src/Ryujinx.Graphics.GAL/LogicalOp.cs
diff --git a/Ryujinx.Graphics.GAL/MagFilter.cs b/src/Ryujinx.Graphics.GAL/MagFilter.cs
index f20d095e..f20d095e 100644
--- a/Ryujinx.Graphics.GAL/MagFilter.cs
+++ b/src/Ryujinx.Graphics.GAL/MagFilter.cs
diff --git a/Ryujinx.Graphics.GAL/MinFilter.cs b/src/Ryujinx.Graphics.GAL/MinFilter.cs
index b7a0740b..b7a0740b 100644
--- a/Ryujinx.Graphics.GAL/MinFilter.cs
+++ b/src/Ryujinx.Graphics.GAL/MinFilter.cs
diff --git a/Ryujinx.Graphics.GAL/MultisampleDescriptor.cs b/src/Ryujinx.Graphics.GAL/MultisampleDescriptor.cs
index a6fb65aa..a6fb65aa 100644
--- a/Ryujinx.Graphics.GAL/MultisampleDescriptor.cs
+++ b/src/Ryujinx.Graphics.GAL/MultisampleDescriptor.cs
diff --git a/Ryujinx.Graphics.GAL/Multithreading/BufferMap.cs b/src/Ryujinx.Graphics.GAL/Multithreading/BufferMap.cs
index 24b0af2d..24b0af2d 100644
--- a/Ryujinx.Graphics.GAL/Multithreading/BufferMap.cs
+++ b/src/Ryujinx.Graphics.GAL/Multithreading/BufferMap.cs
diff --git a/Ryujinx.Graphics.GAL/Multithreading/CommandHelper.cs b/src/Ryujinx.Graphics.GAL/Multithreading/CommandHelper.cs
index 063b7edf..063b7edf 100644
--- a/Ryujinx.Graphics.GAL/Multithreading/CommandHelper.cs
+++ b/src/Ryujinx.Graphics.GAL/Multithreading/CommandHelper.cs
diff --git a/Ryujinx.Graphics.GAL/Multithreading/CommandType.cs b/src/Ryujinx.Graphics.GAL/Multithreading/CommandType.cs
index 61e729b4..61e729b4 100644
--- a/Ryujinx.Graphics.GAL/Multithreading/CommandType.cs
+++ b/src/Ryujinx.Graphics.GAL/Multithreading/CommandType.cs
diff --git a/Ryujinx.Graphics.GAL/Multithreading/Commands/BarrierCommand.cs b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/BarrierCommand.cs
index 4f8e1b08..4f8e1b08 100644
--- a/Ryujinx.Graphics.GAL/Multithreading/Commands/BarrierCommand.cs
+++ b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/BarrierCommand.cs
diff --git a/Ryujinx.Graphics.GAL/Multithreading/Commands/BeginTransformFeedbackCommand.cs b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/BeginTransformFeedbackCommand.cs
index 50032635..50032635 100644
--- a/Ryujinx.Graphics.GAL/Multithreading/Commands/BeginTransformFeedbackCommand.cs
+++ b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/BeginTransformFeedbackCommand.cs
diff --git a/Ryujinx.Graphics.GAL/Multithreading/Commands/Buffer/BufferDisposeCommand.cs b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/Buffer/BufferDisposeCommand.cs
index 5be42fff..5be42fff 100644
--- a/Ryujinx.Graphics.GAL/Multithreading/Commands/Buffer/BufferDisposeCommand.cs
+++ b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/Buffer/BufferDisposeCommand.cs
diff --git a/Ryujinx.Graphics.GAL/Multithreading/Commands/Buffer/BufferGetDataCommand.cs b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/Buffer/BufferGetDataCommand.cs
index 031c6153..031c6153 100644
--- a/Ryujinx.Graphics.GAL/Multithreading/Commands/Buffer/BufferGetDataCommand.cs
+++ b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/Buffer/BufferGetDataCommand.cs
diff --git a/Ryujinx.Graphics.GAL/Multithreading/Commands/Buffer/BufferSetDataCommand.cs b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/Buffer/BufferSetDataCommand.cs
index dcb8c2f2..dcb8c2f2 100644
--- a/Ryujinx.Graphics.GAL/Multithreading/Commands/Buffer/BufferSetDataCommand.cs
+++ b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/Buffer/BufferSetDataCommand.cs
diff --git a/Ryujinx.Graphics.GAL/Multithreading/Commands/ClearBufferCommand.cs b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/ClearBufferCommand.cs
index 1d70460a..1d70460a 100644
--- a/Ryujinx.Graphics.GAL/Multithreading/Commands/ClearBufferCommand.cs
+++ b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/ClearBufferCommand.cs
diff --git a/Ryujinx.Graphics.GAL/Multithreading/Commands/ClearRenderTargetColorCommand.cs b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/ClearRenderTargetColorCommand.cs
index f8c2bdfe..f8c2bdfe 100644
--- a/Ryujinx.Graphics.GAL/Multithreading/Commands/ClearRenderTargetColorCommand.cs
+++ b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/ClearRenderTargetColorCommand.cs
diff --git a/Ryujinx.Graphics.GAL/Multithreading/Commands/ClearRenderTargetDepthStencilCommand.cs b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/ClearRenderTargetDepthStencilCommand.cs
index ca86673e..ca86673e 100644
--- a/Ryujinx.Graphics.GAL/Multithreading/Commands/ClearRenderTargetDepthStencilCommand.cs
+++ b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/ClearRenderTargetDepthStencilCommand.cs
diff --git a/Ryujinx.Graphics.GAL/Multithreading/Commands/CommandBufferBarrierCommand.cs b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/CommandBufferBarrierCommand.cs
index ad3ab0f8..ad3ab0f8 100644
--- a/Ryujinx.Graphics.GAL/Multithreading/Commands/CommandBufferBarrierCommand.cs
+++ b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/CommandBufferBarrierCommand.cs
diff --git a/Ryujinx.Graphics.GAL/Multithreading/Commands/CopyBufferCommand.cs b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/CopyBufferCommand.cs
index 43111bce..43111bce 100644
--- a/Ryujinx.Graphics.GAL/Multithreading/Commands/CopyBufferCommand.cs
+++ b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/CopyBufferCommand.cs
diff --git a/Ryujinx.Graphics.GAL/Multithreading/Commands/CounterEvent/CounterEventDisposeCommand.cs b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/CounterEvent/CounterEventDisposeCommand.cs
index e5250212..e5250212 100644
--- a/Ryujinx.Graphics.GAL/Multithreading/Commands/CounterEvent/CounterEventDisposeCommand.cs
+++ b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/CounterEvent/CounterEventDisposeCommand.cs
diff --git a/Ryujinx.Graphics.GAL/Multithreading/Commands/CounterEvent/CounterEventFlushCommand.cs b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/CounterEvent/CounterEventFlushCommand.cs
index 608cf8f9..608cf8f9 100644
--- a/Ryujinx.Graphics.GAL/Multithreading/Commands/CounterEvent/CounterEventFlushCommand.cs
+++ b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/CounterEvent/CounterEventFlushCommand.cs
diff --git a/Ryujinx.Graphics.GAL/Multithreading/Commands/DispatchComputeCommand.cs b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/DispatchComputeCommand.cs
index 29568837..29568837 100644
--- a/Ryujinx.Graphics.GAL/Multithreading/Commands/DispatchComputeCommand.cs
+++ b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/DispatchComputeCommand.cs
diff --git a/Ryujinx.Graphics.GAL/Multithreading/Commands/DrawCommand.cs b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/DrawCommand.cs
index 804eaa49..804eaa49 100644
--- a/Ryujinx.Graphics.GAL/Multithreading/Commands/DrawCommand.cs
+++ b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/DrawCommand.cs
diff --git a/Ryujinx.Graphics.GAL/Multithreading/Commands/DrawIndexedCommand.cs b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/DrawIndexedCommand.cs
index 1b28afcd..1b28afcd 100644
--- a/Ryujinx.Graphics.GAL/Multithreading/Commands/DrawIndexedCommand.cs
+++ b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/DrawIndexedCommand.cs
diff --git a/Ryujinx.Graphics.GAL/Multithreading/Commands/DrawIndexedIndirectCommand.cs b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/DrawIndexedIndirectCommand.cs
index 521b2f0c..521b2f0c 100644
--- a/Ryujinx.Graphics.GAL/Multithreading/Commands/DrawIndexedIndirectCommand.cs
+++ b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/DrawIndexedIndirectCommand.cs
diff --git a/Ryujinx.Graphics.GAL/Multithreading/Commands/DrawIndexedIndirectCountCommand.cs b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/DrawIndexedIndirectCountCommand.cs
index 6bdf376d..6bdf376d 100644
--- a/Ryujinx.Graphics.GAL/Multithreading/Commands/DrawIndexedIndirectCountCommand.cs
+++ b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/DrawIndexedIndirectCountCommand.cs
diff --git a/Ryujinx.Graphics.GAL/Multithreading/Commands/DrawIndirectCommand.cs b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/DrawIndirectCommand.cs
index e1947084..e1947084 100644
--- a/Ryujinx.Graphics.GAL/Multithreading/Commands/DrawIndirectCommand.cs
+++ b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/DrawIndirectCommand.cs
diff --git a/Ryujinx.Graphics.GAL/Multithreading/Commands/DrawIndirectCountCommand.cs b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/DrawIndirectCountCommand.cs
index ef56ffb2..ef56ffb2 100644
--- a/Ryujinx.Graphics.GAL/Multithreading/Commands/DrawIndirectCountCommand.cs
+++ b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/DrawIndirectCountCommand.cs
diff --git a/Ryujinx.Graphics.GAL/Multithreading/Commands/DrawTextureCommand.cs b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/DrawTextureCommand.cs
index b3e9c4b5..b3e9c4b5 100644
--- a/Ryujinx.Graphics.GAL/Multithreading/Commands/DrawTextureCommand.cs
+++ b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/DrawTextureCommand.cs
diff --git a/Ryujinx.Graphics.GAL/Multithreading/Commands/EndHostConditionalRenderingCommand.cs b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/EndHostConditionalRenderingCommand.cs
index 877af23b..877af23b 100644
--- a/Ryujinx.Graphics.GAL/Multithreading/Commands/EndHostConditionalRenderingCommand.cs
+++ b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/EndHostConditionalRenderingCommand.cs
diff --git a/Ryujinx.Graphics.GAL/Multithreading/Commands/EndTransformFeedbackCommand.cs b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/EndTransformFeedbackCommand.cs
index 33df325f..33df325f 100644
--- a/Ryujinx.Graphics.GAL/Multithreading/Commands/EndTransformFeedbackCommand.cs
+++ b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/EndTransformFeedbackCommand.cs
diff --git a/Ryujinx.Graphics.GAL/Multithreading/Commands/IGALCommand.cs b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/IGALCommand.cs
index ea831c8d..ea831c8d 100644
--- a/Ryujinx.Graphics.GAL/Multithreading/Commands/IGALCommand.cs
+++ b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/IGALCommand.cs
diff --git a/Ryujinx.Graphics.GAL/Multithreading/Commands/Program/ProgramCheckLinkCommand.cs b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/Program/ProgramCheckLinkCommand.cs
index f3662424..f3662424 100644
--- a/Ryujinx.Graphics.GAL/Multithreading/Commands/Program/ProgramCheckLinkCommand.cs
+++ b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/Program/ProgramCheckLinkCommand.cs
diff --git a/Ryujinx.Graphics.GAL/Multithreading/Commands/Program/ProgramDisposeCommand.cs b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/Program/ProgramDisposeCommand.cs
index d1ec4298..d1ec4298 100644
--- a/Ryujinx.Graphics.GAL/Multithreading/Commands/Program/ProgramDisposeCommand.cs
+++ b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/Program/ProgramDisposeCommand.cs
diff --git a/Ryujinx.Graphics.GAL/Multithreading/Commands/Program/ProgramGetBinaryCommand.cs b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/Program/ProgramGetBinaryCommand.cs
index 16963245..16963245 100644
--- a/Ryujinx.Graphics.GAL/Multithreading/Commands/Program/ProgramGetBinaryCommand.cs
+++ b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/Program/ProgramGetBinaryCommand.cs
diff --git a/Ryujinx.Graphics.GAL/Multithreading/Commands/Renderer/ActionCommand.cs b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/Renderer/ActionCommand.cs
index 41987da1..41987da1 100644
--- a/Ryujinx.Graphics.GAL/Multithreading/Commands/Renderer/ActionCommand.cs
+++ b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/Renderer/ActionCommand.cs
diff --git a/Ryujinx.Graphics.GAL/Multithreading/Commands/Renderer/CreateBufferCommand.cs b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/Renderer/CreateBufferCommand.cs
index b36d8bbe..b36d8bbe 100644
--- a/Ryujinx.Graphics.GAL/Multithreading/Commands/Renderer/CreateBufferCommand.cs
+++ b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/Renderer/CreateBufferCommand.cs
diff --git a/Ryujinx.Graphics.GAL/Multithreading/Commands/Renderer/CreateProgramCommand.cs b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/Renderer/CreateProgramCommand.cs
index 19563e12..19563e12 100644
--- a/Ryujinx.Graphics.GAL/Multithreading/Commands/Renderer/CreateProgramCommand.cs
+++ b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/Renderer/CreateProgramCommand.cs
diff --git a/Ryujinx.Graphics.GAL/Multithreading/Commands/Renderer/CreateSamplerCommand.cs b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/Renderer/CreateSamplerCommand.cs
index 6ab862d4..6ab862d4 100644
--- a/Ryujinx.Graphics.GAL/Multithreading/Commands/Renderer/CreateSamplerCommand.cs
+++ b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/Renderer/CreateSamplerCommand.cs
diff --git a/Ryujinx.Graphics.GAL/Multithreading/Commands/Renderer/CreateSyncCommand.cs b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/Renderer/CreateSyncCommand.cs
index 32afb051..32afb051 100644
--- a/Ryujinx.Graphics.GAL/Multithreading/Commands/Renderer/CreateSyncCommand.cs
+++ b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/Renderer/CreateSyncCommand.cs
diff --git a/Ryujinx.Graphics.GAL/Multithreading/Commands/Renderer/CreateTextureCommand.cs b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/Renderer/CreateTextureCommand.cs
index 0347ded4..0347ded4 100644
--- a/Ryujinx.Graphics.GAL/Multithreading/Commands/Renderer/CreateTextureCommand.cs
+++ b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/Renderer/CreateTextureCommand.cs
diff --git a/Ryujinx.Graphics.GAL/Multithreading/Commands/Renderer/GetCapabilitiesCommand.cs b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/Renderer/GetCapabilitiesCommand.cs
index 4111dcfd..4111dcfd 100644
--- a/Ryujinx.Graphics.GAL/Multithreading/Commands/Renderer/GetCapabilitiesCommand.cs
+++ b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/Renderer/GetCapabilitiesCommand.cs
diff --git a/Ryujinx.Graphics.GAL/Multithreading/Commands/Renderer/PreFrameCommand.cs b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/Renderer/PreFrameCommand.cs
index 820908f3..820908f3 100644
--- a/Ryujinx.Graphics.GAL/Multithreading/Commands/Renderer/PreFrameCommand.cs
+++ b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/Renderer/PreFrameCommand.cs
diff --git a/Ryujinx.Graphics.GAL/Multithreading/Commands/Renderer/ReportCounterCommand.cs b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/Renderer/ReportCounterCommand.cs
index 4b0210cb..4b0210cb 100644
--- a/Ryujinx.Graphics.GAL/Multithreading/Commands/Renderer/ReportCounterCommand.cs
+++ b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/Renderer/ReportCounterCommand.cs
diff --git a/Ryujinx.Graphics.GAL/Multithreading/Commands/Renderer/ResetCounterCommand.cs b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/Renderer/ResetCounterCommand.cs
index 3d796041..3d796041 100644
--- a/Ryujinx.Graphics.GAL/Multithreading/Commands/Renderer/ResetCounterCommand.cs
+++ b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/Renderer/ResetCounterCommand.cs
diff --git a/Ryujinx.Graphics.GAL/Multithreading/Commands/Renderer/UpdateCountersCommand.cs b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/Renderer/UpdateCountersCommand.cs
index c7076c0e..c7076c0e 100644
--- a/Ryujinx.Graphics.GAL/Multithreading/Commands/Renderer/UpdateCountersCommand.cs
+++ b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/Renderer/UpdateCountersCommand.cs
diff --git a/Ryujinx.Graphics.GAL/Multithreading/Commands/Sampler/SamplerDisposeCommand.cs b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/Sampler/SamplerDisposeCommand.cs
index 9485e9a1..9485e9a1 100644
--- a/Ryujinx.Graphics.GAL/Multithreading/Commands/Sampler/SamplerDisposeCommand.cs
+++ b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/Sampler/SamplerDisposeCommand.cs
diff --git a/Ryujinx.Graphics.GAL/Multithreading/Commands/SetAlphaTestCommand.cs b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/SetAlphaTestCommand.cs
index a96879ff..a96879ff 100644
--- a/Ryujinx.Graphics.GAL/Multithreading/Commands/SetAlphaTestCommand.cs
+++ b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/SetAlphaTestCommand.cs
diff --git a/Ryujinx.Graphics.GAL/Multithreading/Commands/SetBlendStateAdvancedCommand.cs b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/SetBlendStateAdvancedCommand.cs
index 2ec10a50..2ec10a50 100644
--- a/Ryujinx.Graphics.GAL/Multithreading/Commands/SetBlendStateAdvancedCommand.cs
+++ b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/SetBlendStateAdvancedCommand.cs
diff --git a/Ryujinx.Graphics.GAL/Multithreading/Commands/SetBlendStateCommand.cs b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/SetBlendStateCommand.cs
index 68e48da5..68e48da5 100644
--- a/Ryujinx.Graphics.GAL/Multithreading/Commands/SetBlendStateCommand.cs
+++ b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/SetBlendStateCommand.cs
diff --git a/Ryujinx.Graphics.GAL/Multithreading/Commands/SetDepthBiasCommand.cs b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/SetDepthBiasCommand.cs
index eb8d4a72..eb8d4a72 100644
--- a/Ryujinx.Graphics.GAL/Multithreading/Commands/SetDepthBiasCommand.cs
+++ b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/SetDepthBiasCommand.cs
diff --git a/Ryujinx.Graphics.GAL/Multithreading/Commands/SetDepthClampCommand.cs b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/SetDepthClampCommand.cs
index 15159cb4..15159cb4 100644
--- a/Ryujinx.Graphics.GAL/Multithreading/Commands/SetDepthClampCommand.cs
+++ b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/SetDepthClampCommand.cs
diff --git a/Ryujinx.Graphics.GAL/Multithreading/Commands/SetDepthModeCommand.cs b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/SetDepthModeCommand.cs
index 3e169164..3e169164 100644
--- a/Ryujinx.Graphics.GAL/Multithreading/Commands/SetDepthModeCommand.cs
+++ b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/SetDepthModeCommand.cs
diff --git a/Ryujinx.Graphics.GAL/Multithreading/Commands/SetDepthTestCommand.cs b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/SetDepthTestCommand.cs
index 2abaeb78..2abaeb78 100644
--- a/Ryujinx.Graphics.GAL/Multithreading/Commands/SetDepthTestCommand.cs
+++ b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/SetDepthTestCommand.cs
diff --git a/Ryujinx.Graphics.GAL/Multithreading/Commands/SetFaceCullingCommand.cs b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/SetFaceCullingCommand.cs
index 54311e95..54311e95 100644
--- a/Ryujinx.Graphics.GAL/Multithreading/Commands/SetFaceCullingCommand.cs
+++ b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/SetFaceCullingCommand.cs
diff --git a/Ryujinx.Graphics.GAL/Multithreading/Commands/SetFrontFaceCommand.cs b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/SetFrontFaceCommand.cs
index e4d7b814..e4d7b814 100644
--- a/Ryujinx.Graphics.GAL/Multithreading/Commands/SetFrontFaceCommand.cs
+++ b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/SetFrontFaceCommand.cs
diff --git a/Ryujinx.Graphics.GAL/Multithreading/Commands/SetImageCommand.cs b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/SetImageCommand.cs
index 7836acd7..7836acd7 100644
--- a/Ryujinx.Graphics.GAL/Multithreading/Commands/SetImageCommand.cs
+++ b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/SetImageCommand.cs
diff --git a/Ryujinx.Graphics.GAL/Multithreading/Commands/SetIndexBufferCommand.cs b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/SetIndexBufferCommand.cs
index ded44c55..ded44c55 100644
--- a/Ryujinx.Graphics.GAL/Multithreading/Commands/SetIndexBufferCommand.cs
+++ b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/SetIndexBufferCommand.cs
diff --git a/Ryujinx.Graphics.GAL/Multithreading/Commands/SetLineParametersCommand.cs b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/SetLineParametersCommand.cs
index 68331932..68331932 100644
--- a/Ryujinx.Graphics.GAL/Multithreading/Commands/SetLineParametersCommand.cs
+++ b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/SetLineParametersCommand.cs
diff --git a/Ryujinx.Graphics.GAL/Multithreading/Commands/SetLogicOpStateCommand.cs b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/SetLogicOpStateCommand.cs
index 2d7fc169..2d7fc169 100644
--- a/Ryujinx.Graphics.GAL/Multithreading/Commands/SetLogicOpStateCommand.cs
+++ b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/SetLogicOpStateCommand.cs
diff --git a/Ryujinx.Graphics.GAL/Multithreading/Commands/SetMultisampleStateCommand.cs b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/SetMultisampleStateCommand.cs
index f7b4969a..f7b4969a 100644
--- a/Ryujinx.Graphics.GAL/Multithreading/Commands/SetMultisampleStateCommand.cs
+++ b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/SetMultisampleStateCommand.cs
diff --git a/Ryujinx.Graphics.GAL/Multithreading/Commands/SetPatchParametersCommand.cs b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/SetPatchParametersCommand.cs
index 815bc3c2..815bc3c2 100644
--- a/Ryujinx.Graphics.GAL/Multithreading/Commands/SetPatchParametersCommand.cs
+++ b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/SetPatchParametersCommand.cs
diff --git a/Ryujinx.Graphics.GAL/Multithreading/Commands/SetPointParametersCommand.cs b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/SetPointParametersCommand.cs
index e3fad0f8..e3fad0f8 100644
--- a/Ryujinx.Graphics.GAL/Multithreading/Commands/SetPointParametersCommand.cs
+++ b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/SetPointParametersCommand.cs
diff --git a/Ryujinx.Graphics.GAL/Multithreading/Commands/SetPolygonModeCommand.cs b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/SetPolygonModeCommand.cs
index ea2f838b..ea2f838b 100644
--- a/Ryujinx.Graphics.GAL/Multithreading/Commands/SetPolygonModeCommand.cs
+++ b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/SetPolygonModeCommand.cs
diff --git a/Ryujinx.Graphics.GAL/Multithreading/Commands/SetPrimitiveRestartCommand.cs b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/SetPrimitiveRestartCommand.cs
index 26b88b01..26b88b01 100644
--- a/Ryujinx.Graphics.GAL/Multithreading/Commands/SetPrimitiveRestartCommand.cs
+++ b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/SetPrimitiveRestartCommand.cs
diff --git a/Ryujinx.Graphics.GAL/Multithreading/Commands/SetPrimitiveTopologyCommand.cs b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/SetPrimitiveTopologyCommand.cs
index 062c4e57..062c4e57 100644
--- a/Ryujinx.Graphics.GAL/Multithreading/Commands/SetPrimitiveTopologyCommand.cs
+++ b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/SetPrimitiveTopologyCommand.cs
diff --git a/Ryujinx.Graphics.GAL/Multithreading/Commands/SetProgramCommand.cs b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/SetProgramCommand.cs
index fa2e9a8a..fa2e9a8a 100644
--- a/Ryujinx.Graphics.GAL/Multithreading/Commands/SetProgramCommand.cs
+++ b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/SetProgramCommand.cs
diff --git a/Ryujinx.Graphics.GAL/Multithreading/Commands/SetRasterizerDiscardCommand.cs b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/SetRasterizerDiscardCommand.cs
index d2095a4f..d2095a4f 100644
--- a/Ryujinx.Graphics.GAL/Multithreading/Commands/SetRasterizerDiscardCommand.cs
+++ b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/SetRasterizerDiscardCommand.cs
diff --git a/Ryujinx.Graphics.GAL/Multithreading/Commands/SetRenderTargetColorMasksCommand.cs b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/SetRenderTargetColorMasksCommand.cs
index c247ff3a..c247ff3a 100644
--- a/Ryujinx.Graphics.GAL/Multithreading/Commands/SetRenderTargetColorMasksCommand.cs
+++ b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/SetRenderTargetColorMasksCommand.cs
diff --git a/Ryujinx.Graphics.GAL/Multithreading/Commands/SetRenderTargetScaleCommand.cs b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/SetRenderTargetScaleCommand.cs
index 7cb5ec11..7cb5ec11 100644
--- a/Ryujinx.Graphics.GAL/Multithreading/Commands/SetRenderTargetScaleCommand.cs
+++ b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/SetRenderTargetScaleCommand.cs
diff --git a/Ryujinx.Graphics.GAL/Multithreading/Commands/SetRenderTargetsCommand.cs b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/SetRenderTargetsCommand.cs
index 0b175a72..0b175a72 100644
--- a/Ryujinx.Graphics.GAL/Multithreading/Commands/SetRenderTargetsCommand.cs
+++ b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/SetRenderTargetsCommand.cs
diff --git a/Ryujinx.Graphics.GAL/Multithreading/Commands/SetScissorsCommand.cs b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/SetScissorsCommand.cs
index 985d775e..985d775e 100644
--- a/Ryujinx.Graphics.GAL/Multithreading/Commands/SetScissorsCommand.cs
+++ b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/SetScissorsCommand.cs
diff --git a/Ryujinx.Graphics.GAL/Multithreading/Commands/SetStencilTestCommand.cs b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/SetStencilTestCommand.cs
index 41bff97e..41bff97e 100644
--- a/Ryujinx.Graphics.GAL/Multithreading/Commands/SetStencilTestCommand.cs
+++ b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/SetStencilTestCommand.cs
diff --git a/Ryujinx.Graphics.GAL/Multithreading/Commands/SetStorageBuffersCommand.cs b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/SetStorageBuffersCommand.cs
index 6ecb0989..6ecb0989 100644
--- a/Ryujinx.Graphics.GAL/Multithreading/Commands/SetStorageBuffersCommand.cs
+++ b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/SetStorageBuffersCommand.cs
diff --git a/Ryujinx.Graphics.GAL/Multithreading/Commands/SetTextureAndSamplerCommand.cs b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/SetTextureAndSamplerCommand.cs
index 5e8e0854..5e8e0854 100644
--- a/Ryujinx.Graphics.GAL/Multithreading/Commands/SetTextureAndSamplerCommand.cs
+++ b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/SetTextureAndSamplerCommand.cs
diff --git a/Ryujinx.Graphics.GAL/Multithreading/Commands/SetTransformFeedbackBuffersCommand.cs b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/SetTransformFeedbackBuffersCommand.cs
index e0d4ef2d..e0d4ef2d 100644
--- a/Ryujinx.Graphics.GAL/Multithreading/Commands/SetTransformFeedbackBuffersCommand.cs
+++ b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/SetTransformFeedbackBuffersCommand.cs
diff --git a/Ryujinx.Graphics.GAL/Multithreading/Commands/SetUniformBuffersCommand.cs b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/SetUniformBuffersCommand.cs
index 9e93db9e..9e93db9e 100644
--- a/Ryujinx.Graphics.GAL/Multithreading/Commands/SetUniformBuffersCommand.cs
+++ b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/SetUniformBuffersCommand.cs
diff --git a/Ryujinx.Graphics.GAL/Multithreading/Commands/SetUserClipDistanceCommand.cs b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/SetUserClipDistanceCommand.cs
index 4336ce49..4336ce49 100644
--- a/Ryujinx.Graphics.GAL/Multithreading/Commands/SetUserClipDistanceCommand.cs
+++ b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/SetUserClipDistanceCommand.cs
diff --git a/Ryujinx.Graphics.GAL/Multithreading/Commands/SetVertexAttribsCommand.cs b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/SetVertexAttribsCommand.cs
index e442c72d..e442c72d 100644
--- a/Ryujinx.Graphics.GAL/Multithreading/Commands/SetVertexAttribsCommand.cs
+++ b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/SetVertexAttribsCommand.cs
diff --git a/Ryujinx.Graphics.GAL/Multithreading/Commands/SetVertexBuffersCommand.cs b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/SetVertexBuffersCommand.cs
index 585da2a4..585da2a4 100644
--- a/Ryujinx.Graphics.GAL/Multithreading/Commands/SetVertexBuffersCommand.cs
+++ b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/SetVertexBuffersCommand.cs
diff --git a/Ryujinx.Graphics.GAL/Multithreading/Commands/SetViewportsCommand.cs b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/SetViewportsCommand.cs
index c18bd811..c18bd811 100644
--- a/Ryujinx.Graphics.GAL/Multithreading/Commands/SetViewportsCommand.cs
+++ b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/SetViewportsCommand.cs
diff --git a/Ryujinx.Graphics.GAL/Multithreading/Commands/Texture/TextureCopyToCommand.cs b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/Texture/TextureCopyToCommand.cs
index 02d0b639..02d0b639 100644
--- a/Ryujinx.Graphics.GAL/Multithreading/Commands/Texture/TextureCopyToCommand.cs
+++ b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/Texture/TextureCopyToCommand.cs
diff --git a/Ryujinx.Graphics.GAL/Multithreading/Commands/Texture/TextureCopyToScaledCommand.cs b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/Texture/TextureCopyToScaledCommand.cs
index 6b83d3f8..6b83d3f8 100644
--- a/Ryujinx.Graphics.GAL/Multithreading/Commands/Texture/TextureCopyToScaledCommand.cs
+++ b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/Texture/TextureCopyToScaledCommand.cs
diff --git a/Ryujinx.Graphics.GAL/Multithreading/Commands/Texture/TextureCopyToSliceCommand.cs b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/Texture/TextureCopyToSliceCommand.cs
index 2a340a70..2a340a70 100644
--- a/Ryujinx.Graphics.GAL/Multithreading/Commands/Texture/TextureCopyToSliceCommand.cs
+++ b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/Texture/TextureCopyToSliceCommand.cs
diff --git a/Ryujinx.Graphics.GAL/Multithreading/Commands/Texture/TextureCreateViewCommand.cs b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/Texture/TextureCreateViewCommand.cs
index 09e9ca2f..09e9ca2f 100644
--- a/Ryujinx.Graphics.GAL/Multithreading/Commands/Texture/TextureCreateViewCommand.cs
+++ b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/Texture/TextureCreateViewCommand.cs
diff --git a/Ryujinx.Graphics.GAL/Multithreading/Commands/Texture/TextureGetDataCommand.cs b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/Texture/TextureGetDataCommand.cs
index 91320d45..91320d45 100644
--- a/Ryujinx.Graphics.GAL/Multithreading/Commands/Texture/TextureGetDataCommand.cs
+++ b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/Texture/TextureGetDataCommand.cs
diff --git a/Ryujinx.Graphics.GAL/Multithreading/Commands/Texture/TextureGetDataSliceCommand.cs b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/Texture/TextureGetDataSliceCommand.cs
index ec06cc4d..ec06cc4d 100644
--- a/Ryujinx.Graphics.GAL/Multithreading/Commands/Texture/TextureGetDataSliceCommand.cs
+++ b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/Texture/TextureGetDataSliceCommand.cs
diff --git a/Ryujinx.Graphics.GAL/Multithreading/Commands/Texture/TextureReleaseCommand.cs b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/Texture/TextureReleaseCommand.cs
index 61486e09..61486e09 100644
--- a/Ryujinx.Graphics.GAL/Multithreading/Commands/Texture/TextureReleaseCommand.cs
+++ b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/Texture/TextureReleaseCommand.cs
diff --git a/Ryujinx.Graphics.GAL/Multithreading/Commands/Texture/TextureSetDataCommand.cs b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/Texture/TextureSetDataCommand.cs
index cfbaffd3..cfbaffd3 100644
--- a/Ryujinx.Graphics.GAL/Multithreading/Commands/Texture/TextureSetDataCommand.cs
+++ b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/Texture/TextureSetDataCommand.cs
diff --git a/Ryujinx.Graphics.GAL/Multithreading/Commands/Texture/TextureSetDataSliceCommand.cs b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/Texture/TextureSetDataSliceCommand.cs
index a7126f61..a7126f61 100644
--- a/Ryujinx.Graphics.GAL/Multithreading/Commands/Texture/TextureSetDataSliceCommand.cs
+++ b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/Texture/TextureSetDataSliceCommand.cs
diff --git a/Ryujinx.Graphics.GAL/Multithreading/Commands/Texture/TextureSetDataSliceRegionCommand.cs b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/Texture/TextureSetDataSliceRegionCommand.cs
index 4df83e08..4df83e08 100644
--- a/Ryujinx.Graphics.GAL/Multithreading/Commands/Texture/TextureSetDataSliceRegionCommand.cs
+++ b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/Texture/TextureSetDataSliceRegionCommand.cs
diff --git a/Ryujinx.Graphics.GAL/Multithreading/Commands/Texture/TextureSetStorageCommand.cs b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/Texture/TextureSetStorageCommand.cs
index 2a1943a9..2a1943a9 100644
--- a/Ryujinx.Graphics.GAL/Multithreading/Commands/Texture/TextureSetStorageCommand.cs
+++ b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/Texture/TextureSetStorageCommand.cs
diff --git a/Ryujinx.Graphics.GAL/Multithreading/Commands/TextureBarrierCommand.cs b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/TextureBarrierCommand.cs
index ce1a83a7..ce1a83a7 100644
--- a/Ryujinx.Graphics.GAL/Multithreading/Commands/TextureBarrierCommand.cs
+++ b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/TextureBarrierCommand.cs
diff --git a/Ryujinx.Graphics.GAL/Multithreading/Commands/TextureBarrierTiledCommand.cs b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/TextureBarrierTiledCommand.cs
index c65ffe2e..c65ffe2e 100644
--- a/Ryujinx.Graphics.GAL/Multithreading/Commands/TextureBarrierTiledCommand.cs
+++ b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/TextureBarrierTiledCommand.cs
diff --git a/Ryujinx.Graphics.GAL/Multithreading/Commands/TryHostConditionalRenderingCommand.cs b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/TryHostConditionalRenderingCommand.cs
index 9124ca1f..9124ca1f 100644
--- a/Ryujinx.Graphics.GAL/Multithreading/Commands/TryHostConditionalRenderingCommand.cs
+++ b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/TryHostConditionalRenderingCommand.cs
diff --git a/Ryujinx.Graphics.GAL/Multithreading/Commands/TryHostConditionalRenderingFlushCommand.cs b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/TryHostConditionalRenderingFlushCommand.cs
index a5d07640..a5d07640 100644
--- a/Ryujinx.Graphics.GAL/Multithreading/Commands/TryHostConditionalRenderingFlushCommand.cs
+++ b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/TryHostConditionalRenderingFlushCommand.cs
diff --git a/Ryujinx.Graphics.GAL/Multithreading/Commands/UpdateRenderScaleCommand.cs b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/UpdateRenderScaleCommand.cs
index ebe14150..ebe14150 100644
--- a/Ryujinx.Graphics.GAL/Multithreading/Commands/UpdateRenderScaleCommand.cs
+++ b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/UpdateRenderScaleCommand.cs
diff --git a/Ryujinx.Graphics.GAL/Multithreading/Commands/Window/WindowPresentCommand.cs b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/Window/WindowPresentCommand.cs
index 6a24cd35..6a24cd35 100644
--- a/Ryujinx.Graphics.GAL/Multithreading/Commands/Window/WindowPresentCommand.cs
+++ b/src/Ryujinx.Graphics.GAL/Multithreading/Commands/Window/WindowPresentCommand.cs
diff --git a/Ryujinx.Graphics.GAL/Multithreading/Model/CircularSpanPool.cs b/src/Ryujinx.Graphics.GAL/Multithreading/Model/CircularSpanPool.cs
index 4ea1a2c7..4ea1a2c7 100644
--- a/Ryujinx.Graphics.GAL/Multithreading/Model/CircularSpanPool.cs
+++ b/src/Ryujinx.Graphics.GAL/Multithreading/Model/CircularSpanPool.cs
diff --git a/Ryujinx.Graphics.GAL/Multithreading/Model/ResultBox.cs b/src/Ryujinx.Graphics.GAL/Multithreading/Model/ResultBox.cs
index 7a0be785..7a0be785 100644
--- a/Ryujinx.Graphics.GAL/Multithreading/Model/ResultBox.cs
+++ b/src/Ryujinx.Graphics.GAL/Multithreading/Model/ResultBox.cs
diff --git a/Ryujinx.Graphics.GAL/Multithreading/Model/SpanRef.cs b/src/Ryujinx.Graphics.GAL/Multithreading/Model/SpanRef.cs
index 7dbebc76..7dbebc76 100644
--- a/Ryujinx.Graphics.GAL/Multithreading/Model/SpanRef.cs
+++ b/src/Ryujinx.Graphics.GAL/Multithreading/Model/SpanRef.cs
diff --git a/Ryujinx.Graphics.GAL/Multithreading/Model/TableRef.cs b/src/Ryujinx.Graphics.GAL/Multithreading/Model/TableRef.cs
index 166aa71a..166aa71a 100644
--- a/Ryujinx.Graphics.GAL/Multithreading/Model/TableRef.cs
+++ b/src/Ryujinx.Graphics.GAL/Multithreading/Model/TableRef.cs
diff --git a/Ryujinx.Graphics.GAL/Multithreading/Resources/ProgramQueue.cs b/src/Ryujinx.Graphics.GAL/Multithreading/Resources/ProgramQueue.cs
index 3f982d31..3f982d31 100644
--- a/Ryujinx.Graphics.GAL/Multithreading/Resources/ProgramQueue.cs
+++ b/src/Ryujinx.Graphics.GAL/Multithreading/Resources/ProgramQueue.cs
diff --git a/Ryujinx.Graphics.GAL/Multithreading/Resources/Programs/BinaryProgramRequest.cs b/src/Ryujinx.Graphics.GAL/Multithreading/Resources/Programs/BinaryProgramRequest.cs
index b4c6853f..b4c6853f 100644
--- a/Ryujinx.Graphics.GAL/Multithreading/Resources/Programs/BinaryProgramRequest.cs
+++ b/src/Ryujinx.Graphics.GAL/Multithreading/Resources/Programs/BinaryProgramRequest.cs
diff --git a/Ryujinx.Graphics.GAL/Multithreading/Resources/Programs/IProgramRequest.cs b/src/Ryujinx.Graphics.GAL/Multithreading/Resources/Programs/IProgramRequest.cs
index cdbfe03c..cdbfe03c 100644
--- a/Ryujinx.Graphics.GAL/Multithreading/Resources/Programs/IProgramRequest.cs
+++ b/src/Ryujinx.Graphics.GAL/Multithreading/Resources/Programs/IProgramRequest.cs
diff --git a/Ryujinx.Graphics.GAL/Multithreading/Resources/Programs/SourceProgramRequest.cs b/src/Ryujinx.Graphics.GAL/Multithreading/Resources/Programs/SourceProgramRequest.cs
index ff06abb1..ff06abb1 100644
--- a/Ryujinx.Graphics.GAL/Multithreading/Resources/Programs/SourceProgramRequest.cs
+++ b/src/Ryujinx.Graphics.GAL/Multithreading/Resources/Programs/SourceProgramRequest.cs
diff --git a/Ryujinx.Graphics.GAL/Multithreading/Resources/ThreadedCounterEvent.cs b/src/Ryujinx.Graphics.GAL/Multithreading/Resources/ThreadedCounterEvent.cs
index 4b7471d6..4b7471d6 100644
--- a/Ryujinx.Graphics.GAL/Multithreading/Resources/ThreadedCounterEvent.cs
+++ b/src/Ryujinx.Graphics.GAL/Multithreading/Resources/ThreadedCounterEvent.cs
diff --git a/Ryujinx.Graphics.GAL/Multithreading/Resources/ThreadedProgram.cs b/src/Ryujinx.Graphics.GAL/Multithreading/Resources/ThreadedProgram.cs
index 068d058e..068d058e 100644
--- a/Ryujinx.Graphics.GAL/Multithreading/Resources/ThreadedProgram.cs
+++ b/src/Ryujinx.Graphics.GAL/Multithreading/Resources/ThreadedProgram.cs
diff --git a/Ryujinx.Graphics.GAL/Multithreading/Resources/ThreadedSampler.cs b/src/Ryujinx.Graphics.GAL/Multithreading/Resources/ThreadedSampler.cs
index d8de9a70..d8de9a70 100644
--- a/Ryujinx.Graphics.GAL/Multithreading/Resources/ThreadedSampler.cs
+++ b/src/Ryujinx.Graphics.GAL/Multithreading/Resources/ThreadedSampler.cs
diff --git a/Ryujinx.Graphics.GAL/Multithreading/Resources/ThreadedTexture.cs b/src/Ryujinx.Graphics.GAL/Multithreading/Resources/ThreadedTexture.cs
index ee1cfa29..ee1cfa29 100644
--- a/Ryujinx.Graphics.GAL/Multithreading/Resources/ThreadedTexture.cs
+++ b/src/Ryujinx.Graphics.GAL/Multithreading/Resources/ThreadedTexture.cs
diff --git a/Ryujinx.Graphics.GAL/Multithreading/SyncMap.cs b/src/Ryujinx.Graphics.GAL/Multithreading/SyncMap.cs
index ae09e852..ae09e852 100644
--- a/Ryujinx.Graphics.GAL/Multithreading/SyncMap.cs
+++ b/src/Ryujinx.Graphics.GAL/Multithreading/SyncMap.cs
diff --git a/Ryujinx.Graphics.GAL/Multithreading/ThreadedHelpers.cs b/src/Ryujinx.Graphics.GAL/Multithreading/ThreadedHelpers.cs
index 7ddb19e6..7ddb19e6 100644
--- a/Ryujinx.Graphics.GAL/Multithreading/ThreadedHelpers.cs
+++ b/src/Ryujinx.Graphics.GAL/Multithreading/ThreadedHelpers.cs
diff --git a/Ryujinx.Graphics.GAL/Multithreading/ThreadedPipeline.cs b/src/Ryujinx.Graphics.GAL/Multithreading/ThreadedPipeline.cs
index 1bdc9cf4..1bdc9cf4 100644
--- a/Ryujinx.Graphics.GAL/Multithreading/ThreadedPipeline.cs
+++ b/src/Ryujinx.Graphics.GAL/Multithreading/ThreadedPipeline.cs
diff --git a/Ryujinx.Graphics.GAL/Multithreading/ThreadedRenderer.cs b/src/Ryujinx.Graphics.GAL/Multithreading/ThreadedRenderer.cs
index 2148f43f..2148f43f 100644
--- a/Ryujinx.Graphics.GAL/Multithreading/ThreadedRenderer.cs
+++ b/src/Ryujinx.Graphics.GAL/Multithreading/ThreadedRenderer.cs
diff --git a/Ryujinx.Graphics.GAL/Multithreading/ThreadedWindow.cs b/src/Ryujinx.Graphics.GAL/Multithreading/ThreadedWindow.cs
index a647d37e..a647d37e 100644
--- a/Ryujinx.Graphics.GAL/Multithreading/ThreadedWindow.cs
+++ b/src/Ryujinx.Graphics.GAL/Multithreading/ThreadedWindow.cs
diff --git a/Ryujinx.Graphics.GAL/Origin.cs b/src/Ryujinx.Graphics.GAL/Origin.cs
index d1b69cfd..d1b69cfd 100644
--- a/Ryujinx.Graphics.GAL/Origin.cs
+++ b/src/Ryujinx.Graphics.GAL/Origin.cs
diff --git a/Ryujinx.Graphics.GAL/PinnedSpan.cs b/src/Ryujinx.Graphics.GAL/PinnedSpan.cs
index 275b3b86..275b3b86 100644
--- a/Ryujinx.Graphics.GAL/PinnedSpan.cs
+++ b/src/Ryujinx.Graphics.GAL/PinnedSpan.cs
diff --git a/Ryujinx.Graphics.GAL/PolygonMode.cs b/src/Ryujinx.Graphics.GAL/PolygonMode.cs
index d6110c1b..d6110c1b 100644
--- a/Ryujinx.Graphics.GAL/PolygonMode.cs
+++ b/src/Ryujinx.Graphics.GAL/PolygonMode.cs
diff --git a/Ryujinx.Graphics.GAL/PolygonModeMask.cs b/src/Ryujinx.Graphics.GAL/PolygonModeMask.cs
index 514b4231..514b4231 100644
--- a/Ryujinx.Graphics.GAL/PolygonModeMask.cs
+++ b/src/Ryujinx.Graphics.GAL/PolygonModeMask.cs
diff --git a/Ryujinx.Graphics.GAL/PrimitiveTopology.cs b/src/Ryujinx.Graphics.GAL/PrimitiveTopology.cs
index ed567a68..ed567a68 100644
--- a/Ryujinx.Graphics.GAL/PrimitiveTopology.cs
+++ b/src/Ryujinx.Graphics.GAL/PrimitiveTopology.cs
diff --git a/Ryujinx.Graphics.GAL/ProgramLinkStatus.cs b/src/Ryujinx.Graphics.GAL/ProgramLinkStatus.cs
index 5ca1be8c..5ca1be8c 100644
--- a/Ryujinx.Graphics.GAL/ProgramLinkStatus.cs
+++ b/src/Ryujinx.Graphics.GAL/ProgramLinkStatus.cs
diff --git a/Ryujinx.Graphics.GAL/ProgramPipelineState.cs b/src/Ryujinx.Graphics.GAL/ProgramPipelineState.cs
index 41afb34b..41afb34b 100644
--- a/Ryujinx.Graphics.GAL/ProgramPipelineState.cs
+++ b/src/Ryujinx.Graphics.GAL/ProgramPipelineState.cs
diff --git a/Ryujinx.Graphics.GAL/Rectangle.cs b/src/Ryujinx.Graphics.GAL/Rectangle.cs
index c8fa93d9..c8fa93d9 100644
--- a/Ryujinx.Graphics.GAL/Rectangle.cs
+++ b/src/Ryujinx.Graphics.GAL/Rectangle.cs
diff --git a/Ryujinx.Graphics.GAL/Ryujinx.Graphics.GAL.csproj b/src/Ryujinx.Graphics.GAL/Ryujinx.Graphics.GAL.csproj
index 189108a3..189108a3 100644
--- a/Ryujinx.Graphics.GAL/Ryujinx.Graphics.GAL.csproj
+++ b/src/Ryujinx.Graphics.GAL/Ryujinx.Graphics.GAL.csproj
diff --git a/Ryujinx.Graphics.GAL/SamplerCreateInfo.cs b/src/Ryujinx.Graphics.GAL/SamplerCreateInfo.cs
index 990c302e..990c302e 100644
--- a/Ryujinx.Graphics.GAL/SamplerCreateInfo.cs
+++ b/src/Ryujinx.Graphics.GAL/SamplerCreateInfo.cs
diff --git a/Ryujinx.Graphics.GAL/ScreenCaptureImageInfo.cs b/src/Ryujinx.Graphics.GAL/ScreenCaptureImageInfo.cs
index 129913ec..129913ec 100644
--- a/Ryujinx.Graphics.GAL/ScreenCaptureImageInfo.cs
+++ b/src/Ryujinx.Graphics.GAL/ScreenCaptureImageInfo.cs
diff --git a/Ryujinx.Graphics.GAL/ShaderBindings.cs b/src/Ryujinx.Graphics.GAL/ShaderBindings.cs
index 6ab29382..6ab29382 100644
--- a/Ryujinx.Graphics.GAL/ShaderBindings.cs
+++ b/src/Ryujinx.Graphics.GAL/ShaderBindings.cs
diff --git a/Ryujinx.Graphics.GAL/ShaderInfo.cs b/src/Ryujinx.Graphics.GAL/ShaderInfo.cs
index b4c87117..b4c87117 100644
--- a/Ryujinx.Graphics.GAL/ShaderInfo.cs
+++ b/src/Ryujinx.Graphics.GAL/ShaderInfo.cs
diff --git a/Ryujinx.Graphics.GAL/ShaderSource.cs b/src/Ryujinx.Graphics.GAL/ShaderSource.cs
index 91d3a632..91d3a632 100644
--- a/Ryujinx.Graphics.GAL/ShaderSource.cs
+++ b/src/Ryujinx.Graphics.GAL/ShaderSource.cs
diff --git a/Ryujinx.Graphics.GAL/StencilOp.cs b/src/Ryujinx.Graphics.GAL/StencilOp.cs
index fe999b0f..fe999b0f 100644
--- a/Ryujinx.Graphics.GAL/StencilOp.cs
+++ b/src/Ryujinx.Graphics.GAL/StencilOp.cs
diff --git a/Ryujinx.Graphics.GAL/StencilTestDescriptor.cs b/src/Ryujinx.Graphics.GAL/StencilTestDescriptor.cs
index db46c957..db46c957 100644
--- a/Ryujinx.Graphics.GAL/StencilTestDescriptor.cs
+++ b/src/Ryujinx.Graphics.GAL/StencilTestDescriptor.cs
diff --git a/Ryujinx.Graphics.GAL/SupportBufferUpdater.cs b/src/Ryujinx.Graphics.GAL/SupportBufferUpdater.cs
index 6eeddb6c..6eeddb6c 100644
--- a/Ryujinx.Graphics.GAL/SupportBufferUpdater.cs
+++ b/src/Ryujinx.Graphics.GAL/SupportBufferUpdater.cs
diff --git a/Ryujinx.Graphics.GAL/SwizzleComponent.cs b/src/Ryujinx.Graphics.GAL/SwizzleComponent.cs
index a405bd13..a405bd13 100644
--- a/Ryujinx.Graphics.GAL/SwizzleComponent.cs
+++ b/src/Ryujinx.Graphics.GAL/SwizzleComponent.cs
diff --git a/Ryujinx.Graphics.GAL/Target.cs b/src/Ryujinx.Graphics.GAL/Target.cs
index 711eea24..711eea24 100644
--- a/Ryujinx.Graphics.GAL/Target.cs
+++ b/src/Ryujinx.Graphics.GAL/Target.cs
diff --git a/Ryujinx.Graphics.GAL/TextureCreateInfo.cs b/src/Ryujinx.Graphics.GAL/TextureCreateInfo.cs
index 52b3b11f..52b3b11f 100644
--- a/Ryujinx.Graphics.GAL/TextureCreateInfo.cs
+++ b/src/Ryujinx.Graphics.GAL/TextureCreateInfo.cs
diff --git a/Ryujinx.Graphics.GAL/TextureReleaseCallback.cs b/src/Ryujinx.Graphics.GAL/TextureReleaseCallback.cs
index c058df2b..c058df2b 100644
--- a/Ryujinx.Graphics.GAL/TextureReleaseCallback.cs
+++ b/src/Ryujinx.Graphics.GAL/TextureReleaseCallback.cs
diff --git a/Ryujinx.Graphics.GAL/UpscaleType.cs b/src/Ryujinx.Graphics.GAL/UpscaleType.cs
index 442b65f2..442b65f2 100644
--- a/Ryujinx.Graphics.GAL/UpscaleType.cs
+++ b/src/Ryujinx.Graphics.GAL/UpscaleType.cs
diff --git a/Ryujinx.Graphics.GAL/VertexAttribDescriptor.cs b/src/Ryujinx.Graphics.GAL/VertexAttribDescriptor.cs
index 4f5ea6a6..4f5ea6a6 100644
--- a/Ryujinx.Graphics.GAL/VertexAttribDescriptor.cs
+++ b/src/Ryujinx.Graphics.GAL/VertexAttribDescriptor.cs
diff --git a/Ryujinx.Graphics.GAL/VertexBufferDescriptor.cs b/src/Ryujinx.Graphics.GAL/VertexBufferDescriptor.cs
index 15f0dff8..15f0dff8 100644
--- a/Ryujinx.Graphics.GAL/VertexBufferDescriptor.cs
+++ b/src/Ryujinx.Graphics.GAL/VertexBufferDescriptor.cs
diff --git a/Ryujinx.Graphics.GAL/Viewport.cs b/src/Ryujinx.Graphics.GAL/Viewport.cs
index 94012c00..94012c00 100644
--- a/Ryujinx.Graphics.GAL/Viewport.cs
+++ b/src/Ryujinx.Graphics.GAL/Viewport.cs
diff --git a/Ryujinx.Graphics.GAL/ViewportSwizzle.cs b/src/Ryujinx.Graphics.GAL/ViewportSwizzle.cs
index c24a2246..c24a2246 100644
--- a/Ryujinx.Graphics.GAL/ViewportSwizzle.cs
+++ b/src/Ryujinx.Graphics.GAL/ViewportSwizzle.cs
diff --git a/Ryujinx.Graphics.Gpu/ClassId.cs b/src/Ryujinx.Graphics.Gpu/ClassId.cs
index 4e475a24..4e475a24 100644
--- a/Ryujinx.Graphics.Gpu/ClassId.cs
+++ b/src/Ryujinx.Graphics.Gpu/ClassId.cs
diff --git a/Ryujinx.Graphics.Gpu/Constants.cs b/src/Ryujinx.Graphics.Gpu/Constants.cs
index 1897f5d0..1897f5d0 100644
--- a/Ryujinx.Graphics.Gpu/Constants.cs
+++ b/src/Ryujinx.Graphics.Gpu/Constants.cs
diff --git a/Ryujinx.Graphics.Gpu/Engine/Compute/ComputeClass.cs b/src/Ryujinx.Graphics.Gpu/Engine/Compute/ComputeClass.cs
index 2ac738fd..2ac738fd 100644
--- a/Ryujinx.Graphics.Gpu/Engine/Compute/ComputeClass.cs
+++ b/src/Ryujinx.Graphics.Gpu/Engine/Compute/ComputeClass.cs
diff --git a/Ryujinx.Graphics.Gpu/Engine/Compute/ComputeClassState.cs b/src/Ryujinx.Graphics.Gpu/Engine/Compute/ComputeClassState.cs
index 5d81de5d..5d81de5d 100644
--- a/Ryujinx.Graphics.Gpu/Engine/Compute/ComputeClassState.cs
+++ b/src/Ryujinx.Graphics.Gpu/Engine/Compute/ComputeClassState.cs
diff --git a/Ryujinx.Graphics.Gpu/Engine/Compute/ComputeQmd.cs b/src/Ryujinx.Graphics.Gpu/Engine/Compute/ComputeQmd.cs
index 1b20e41c..1b20e41c 100644
--- a/Ryujinx.Graphics.Gpu/Engine/Compute/ComputeQmd.cs
+++ b/src/Ryujinx.Graphics.Gpu/Engine/Compute/ComputeQmd.cs
diff --git a/Ryujinx.Graphics.Gpu/Engine/ConditionalRenderEnabled.cs b/src/Ryujinx.Graphics.Gpu/Engine/ConditionalRenderEnabled.cs
index 5581b5cc..5581b5cc 100644
--- a/Ryujinx.Graphics.Gpu/Engine/ConditionalRenderEnabled.cs
+++ b/src/Ryujinx.Graphics.Gpu/Engine/ConditionalRenderEnabled.cs
diff --git a/Ryujinx.Graphics.Gpu/Engine/DeviceStateWithShadow.cs b/src/Ryujinx.Graphics.Gpu/Engine/DeviceStateWithShadow.cs
index 74a9aa04..74a9aa04 100644
--- a/Ryujinx.Graphics.Gpu/Engine/DeviceStateWithShadow.cs
+++ b/src/Ryujinx.Graphics.Gpu/Engine/DeviceStateWithShadow.cs
diff --git a/Ryujinx.Graphics.Gpu/Engine/Dma/DmaClass.cs b/src/Ryujinx.Graphics.Gpu/Engine/Dma/DmaClass.cs
index fd93cd8b..fd93cd8b 100644
--- a/Ryujinx.Graphics.Gpu/Engine/Dma/DmaClass.cs
+++ b/src/Ryujinx.Graphics.Gpu/Engine/Dma/DmaClass.cs
diff --git a/Ryujinx.Graphics.Gpu/Engine/Dma/DmaClassState.cs b/src/Ryujinx.Graphics.Gpu/Engine/Dma/DmaClassState.cs
index 7de4d5f0..7de4d5f0 100644
--- a/Ryujinx.Graphics.Gpu/Engine/Dma/DmaClassState.cs
+++ b/src/Ryujinx.Graphics.Gpu/Engine/Dma/DmaClassState.cs
diff --git a/Ryujinx.Graphics.Gpu/Engine/Dma/DmaTexture.cs b/src/Ryujinx.Graphics.Gpu/Engine/Dma/DmaTexture.cs
index 6873ff40..6873ff40 100644
--- a/Ryujinx.Graphics.Gpu/Engine/Dma/DmaTexture.cs
+++ b/src/Ryujinx.Graphics.Gpu/Engine/Dma/DmaTexture.cs
diff --git a/Ryujinx.Graphics.Gpu/Engine/GPFifo/CompressedMethod.cs b/src/Ryujinx.Graphics.Gpu/Engine/GPFifo/CompressedMethod.cs
index 458dc8f6..458dc8f6 100644
--- a/Ryujinx.Graphics.Gpu/Engine/GPFifo/CompressedMethod.cs
+++ b/src/Ryujinx.Graphics.Gpu/Engine/GPFifo/CompressedMethod.cs
diff --git a/Ryujinx.Graphics.Gpu/Engine/GPFifo/GPEntry.cs b/src/Ryujinx.Graphics.Gpu/Engine/GPFifo/GPEntry.cs
index b1b236e7..b1b236e7 100644
--- a/Ryujinx.Graphics.Gpu/Engine/GPFifo/GPEntry.cs
+++ b/src/Ryujinx.Graphics.Gpu/Engine/GPFifo/GPEntry.cs
diff --git a/Ryujinx.Graphics.Gpu/Engine/GPFifo/GPFifoClass.cs b/src/Ryujinx.Graphics.Gpu/Engine/GPFifo/GPFifoClass.cs
index e80d98a1..e80d98a1 100644
--- a/Ryujinx.Graphics.Gpu/Engine/GPFifo/GPFifoClass.cs
+++ b/src/Ryujinx.Graphics.Gpu/Engine/GPFifo/GPFifoClass.cs
diff --git a/Ryujinx.Graphics.Gpu/Engine/GPFifo/GPFifoClassState.cs b/src/Ryujinx.Graphics.Gpu/Engine/GPFifo/GPFifoClassState.cs
index 07d062eb..07d062eb 100644
--- a/Ryujinx.Graphics.Gpu/Engine/GPFifo/GPFifoClassState.cs
+++ b/src/Ryujinx.Graphics.Gpu/Engine/GPFifo/GPFifoClassState.cs
diff --git a/Ryujinx.Graphics.Gpu/Engine/GPFifo/GPFifoDevice.cs b/src/Ryujinx.Graphics.Gpu/Engine/GPFifo/GPFifoDevice.cs
index cd29a9da..cd29a9da 100644
--- a/Ryujinx.Graphics.Gpu/Engine/GPFifo/GPFifoDevice.cs
+++ b/src/Ryujinx.Graphics.Gpu/Engine/GPFifo/GPFifoDevice.cs
diff --git a/Ryujinx.Graphics.Gpu/Engine/GPFifo/GPFifoProcessor.cs b/src/Ryujinx.Graphics.Gpu/Engine/GPFifo/GPFifoProcessor.cs
index 3fb3feee..3fb3feee 100644
--- a/Ryujinx.Graphics.Gpu/Engine/GPFifo/GPFifoProcessor.cs
+++ b/src/Ryujinx.Graphics.Gpu/Engine/GPFifo/GPFifoProcessor.cs
diff --git a/Ryujinx.Graphics.Gpu/Engine/InlineToMemory/InlineToMemoryClass.cs b/src/Ryujinx.Graphics.Gpu/Engine/InlineToMemory/InlineToMemoryClass.cs
index e1d7e940..e1d7e940 100644
--- a/Ryujinx.Graphics.Gpu/Engine/InlineToMemory/InlineToMemoryClass.cs
+++ b/src/Ryujinx.Graphics.Gpu/Engine/InlineToMemory/InlineToMemoryClass.cs
diff --git a/Ryujinx.Graphics.Gpu/Engine/InlineToMemory/InlineToMemoryClassState.cs b/src/Ryujinx.Graphics.Gpu/Engine/InlineToMemory/InlineToMemoryClassState.cs
index d0c82a5e..d0c82a5e 100644
--- a/Ryujinx.Graphics.Gpu/Engine/InlineToMemory/InlineToMemoryClassState.cs
+++ b/src/Ryujinx.Graphics.Gpu/Engine/InlineToMemory/InlineToMemoryClassState.cs
diff --git a/Ryujinx.Graphics.Gpu/Engine/MME/AluOperation.cs b/src/Ryujinx.Graphics.Gpu/Engine/MME/AluOperation.cs
index eeef9c67..eeef9c67 100644
--- a/Ryujinx.Graphics.Gpu/Engine/MME/AluOperation.cs
+++ b/src/Ryujinx.Graphics.Gpu/Engine/MME/AluOperation.cs
diff --git a/Ryujinx.Graphics.Gpu/Engine/MME/AluRegOperation.cs b/src/Ryujinx.Graphics.Gpu/Engine/MME/AluRegOperation.cs
index f3e05d38..f3e05d38 100644
--- a/Ryujinx.Graphics.Gpu/Engine/MME/AluRegOperation.cs
+++ b/src/Ryujinx.Graphics.Gpu/Engine/MME/AluRegOperation.cs
diff --git a/Ryujinx.Graphics.Gpu/Engine/MME/AssignmentOperation.cs b/src/Ryujinx.Graphics.Gpu/Engine/MME/AssignmentOperation.cs
index dc336026..dc336026 100644
--- a/Ryujinx.Graphics.Gpu/Engine/MME/AssignmentOperation.cs
+++ b/src/Ryujinx.Graphics.Gpu/Engine/MME/AssignmentOperation.cs
diff --git a/Ryujinx.Graphics.Gpu/Engine/MME/IMacroEE.cs b/src/Ryujinx.Graphics.Gpu/Engine/MME/IMacroEE.cs
index 117961db..117961db 100644
--- a/Ryujinx.Graphics.Gpu/Engine/MME/IMacroEE.cs
+++ b/src/Ryujinx.Graphics.Gpu/Engine/MME/IMacroEE.cs
diff --git a/Ryujinx.Graphics.Gpu/Engine/MME/Macro.cs b/src/Ryujinx.Graphics.Gpu/Engine/MME/Macro.cs
index 12a3ac02..12a3ac02 100644
--- a/Ryujinx.Graphics.Gpu/Engine/MME/Macro.cs
+++ b/src/Ryujinx.Graphics.Gpu/Engine/MME/Macro.cs
diff --git a/Ryujinx.Graphics.Gpu/Engine/MME/MacroHLE.cs b/src/Ryujinx.Graphics.Gpu/Engine/MME/MacroHLE.cs
index 8630bbc4..8630bbc4 100644
--- a/Ryujinx.Graphics.Gpu/Engine/MME/MacroHLE.cs
+++ b/src/Ryujinx.Graphics.Gpu/Engine/MME/MacroHLE.cs
diff --git a/Ryujinx.Graphics.Gpu/Engine/MME/MacroHLEFunctionName.cs b/src/Ryujinx.Graphics.Gpu/Engine/MME/MacroHLEFunctionName.cs
index 751867fc..751867fc 100644
--- a/Ryujinx.Graphics.Gpu/Engine/MME/MacroHLEFunctionName.cs
+++ b/src/Ryujinx.Graphics.Gpu/Engine/MME/MacroHLEFunctionName.cs
diff --git a/Ryujinx.Graphics.Gpu/Engine/MME/MacroHLETable.cs b/src/Ryujinx.Graphics.Gpu/Engine/MME/MacroHLETable.cs
index 719e170f..719e170f 100644
--- a/Ryujinx.Graphics.Gpu/Engine/MME/MacroHLETable.cs
+++ b/src/Ryujinx.Graphics.Gpu/Engine/MME/MacroHLETable.cs
diff --git a/Ryujinx.Graphics.Gpu/Engine/MME/MacroInterpreter.cs b/src/Ryujinx.Graphics.Gpu/Engine/MME/MacroInterpreter.cs
index df6ee040..df6ee040 100644
--- a/Ryujinx.Graphics.Gpu/Engine/MME/MacroInterpreter.cs
+++ b/src/Ryujinx.Graphics.Gpu/Engine/MME/MacroInterpreter.cs
diff --git a/Ryujinx.Graphics.Gpu/Engine/MME/MacroJit.cs b/src/Ryujinx.Graphics.Gpu/Engine/MME/MacroJit.cs
index 4077f74e..4077f74e 100644
--- a/Ryujinx.Graphics.Gpu/Engine/MME/MacroJit.cs
+++ b/src/Ryujinx.Graphics.Gpu/Engine/MME/MacroJit.cs
diff --git a/Ryujinx.Graphics.Gpu/Engine/MME/MacroJitCompiler.cs b/src/Ryujinx.Graphics.Gpu/Engine/MME/MacroJitCompiler.cs
index f8d839fa..f8d839fa 100644
--- a/Ryujinx.Graphics.Gpu/Engine/MME/MacroJitCompiler.cs
+++ b/src/Ryujinx.Graphics.Gpu/Engine/MME/MacroJitCompiler.cs
diff --git a/Ryujinx.Graphics.Gpu/Engine/MME/MacroJitContext.cs b/src/Ryujinx.Graphics.Gpu/Engine/MME/MacroJitContext.cs
index 52c2a11b..52c2a11b 100644
--- a/Ryujinx.Graphics.Gpu/Engine/MME/MacroJitContext.cs
+++ b/src/Ryujinx.Graphics.Gpu/Engine/MME/MacroJitContext.cs
diff --git a/Ryujinx.Graphics.Gpu/Engine/MmeShadowScratch.cs b/src/Ryujinx.Graphics.Gpu/Engine/MmeShadowScratch.cs
index 44cd8213..44cd8213 100644
--- a/Ryujinx.Graphics.Gpu/Engine/MmeShadowScratch.cs
+++ b/src/Ryujinx.Graphics.Gpu/Engine/MmeShadowScratch.cs
diff --git a/Ryujinx.Graphics.Gpu/Engine/SetMmeShadowRamControlMode.cs b/src/Ryujinx.Graphics.Gpu/Engine/SetMmeShadowRamControlMode.cs
index 060d35ca..060d35ca 100644
--- a/Ryujinx.Graphics.Gpu/Engine/SetMmeShadowRamControlMode.cs
+++ b/src/Ryujinx.Graphics.Gpu/Engine/SetMmeShadowRamControlMode.cs
diff --git a/Ryujinx.Graphics.Gpu/Engine/ShaderTexture.cs b/src/Ryujinx.Graphics.Gpu/Engine/ShaderTexture.cs
index e1e3085b..e1e3085b 100644
--- a/Ryujinx.Graphics.Gpu/Engine/ShaderTexture.cs
+++ b/src/Ryujinx.Graphics.Gpu/Engine/ShaderTexture.cs
diff --git a/Ryujinx.Graphics.Gpu/Engine/Threed/Blender/AdvancedBlendFunctions.cs b/src/Ryujinx.Graphics.Gpu/Engine/Threed/Blender/AdvancedBlendFunctions.cs
index a40b9cc4..a40b9cc4 100644
--- a/Ryujinx.Graphics.Gpu/Engine/Threed/Blender/AdvancedBlendFunctions.cs
+++ b/src/Ryujinx.Graphics.Gpu/Engine/Threed/Blender/AdvancedBlendFunctions.cs
diff --git a/Ryujinx.Graphics.Gpu/Engine/Threed/Blender/AdvancedBlendManager.cs b/src/Ryujinx.Graphics.Gpu/Engine/Threed/Blender/AdvancedBlendManager.cs
index 8072c6af..8072c6af 100644
--- a/Ryujinx.Graphics.Gpu/Engine/Threed/Blender/AdvancedBlendManager.cs
+++ b/src/Ryujinx.Graphics.Gpu/Engine/Threed/Blender/AdvancedBlendManager.cs
diff --git a/Ryujinx.Graphics.Gpu/Engine/Threed/Blender/AdvancedBlendPreGenTable.cs b/src/Ryujinx.Graphics.Gpu/Engine/Threed/Blender/AdvancedBlendPreGenTable.cs
index d35d8abf..d35d8abf 100644
--- a/Ryujinx.Graphics.Gpu/Engine/Threed/Blender/AdvancedBlendPreGenTable.cs
+++ b/src/Ryujinx.Graphics.Gpu/Engine/Threed/Blender/AdvancedBlendPreGenTable.cs
diff --git a/Ryujinx.Graphics.Gpu/Engine/Threed/Blender/AdvancedBlendUcode.cs b/src/Ryujinx.Graphics.Gpu/Engine/Threed/Blender/AdvancedBlendUcode.cs
index f06b4bf7..f06b4bf7 100644
--- a/Ryujinx.Graphics.Gpu/Engine/Threed/Blender/AdvancedBlendUcode.cs
+++ b/src/Ryujinx.Graphics.Gpu/Engine/Threed/Blender/AdvancedBlendUcode.cs
diff --git a/Ryujinx.Graphics.Gpu/Engine/Threed/Blender/UcodeAssembler.cs b/src/Ryujinx.Graphics.Gpu/Engine/Threed/Blender/UcodeAssembler.cs
index f854787e..f854787e 100644
--- a/Ryujinx.Graphics.Gpu/Engine/Threed/Blender/UcodeAssembler.cs
+++ b/src/Ryujinx.Graphics.Gpu/Engine/Threed/Blender/UcodeAssembler.cs
diff --git a/Ryujinx.Graphics.Gpu/Engine/Threed/ConditionalRendering.cs b/src/Ryujinx.Graphics.Gpu/Engine/Threed/ConditionalRendering.cs
index a6b62a4a..a6b62a4a 100644
--- a/Ryujinx.Graphics.Gpu/Engine/Threed/ConditionalRendering.cs
+++ b/src/Ryujinx.Graphics.Gpu/Engine/Threed/ConditionalRendering.cs
diff --git a/Ryujinx.Graphics.Gpu/Engine/Threed/ConstantBufferUpdater.cs b/src/Ryujinx.Graphics.Gpu/Engine/Threed/ConstantBufferUpdater.cs
index 5c936616..5c936616 100644
--- a/Ryujinx.Graphics.Gpu/Engine/Threed/ConstantBufferUpdater.cs
+++ b/src/Ryujinx.Graphics.Gpu/Engine/Threed/ConstantBufferUpdater.cs
diff --git a/Ryujinx.Graphics.Gpu/Engine/Threed/DrawManager.cs b/src/Ryujinx.Graphics.Gpu/Engine/Threed/DrawManager.cs
index 7438ba03..7438ba03 100644
--- a/Ryujinx.Graphics.Gpu/Engine/Threed/DrawManager.cs
+++ b/src/Ryujinx.Graphics.Gpu/Engine/Threed/DrawManager.cs
diff --git a/Ryujinx.Graphics.Gpu/Engine/Threed/DrawState.cs b/src/Ryujinx.Graphics.Gpu/Engine/Threed/DrawState.cs
index 42ec2442..42ec2442 100644
--- a/Ryujinx.Graphics.Gpu/Engine/Threed/DrawState.cs
+++ b/src/Ryujinx.Graphics.Gpu/Engine/Threed/DrawState.cs
diff --git a/Ryujinx.Graphics.Gpu/Engine/Threed/IbStreamer.cs b/src/Ryujinx.Graphics.Gpu/Engine/Threed/IbStreamer.cs
index 80d8c00b..80d8c00b 100644
--- a/Ryujinx.Graphics.Gpu/Engine/Threed/IbStreamer.cs
+++ b/src/Ryujinx.Graphics.Gpu/Engine/Threed/IbStreamer.cs
diff --git a/Ryujinx.Graphics.Gpu/Engine/Threed/IndirectDrawType.cs b/src/Ryujinx.Graphics.Gpu/Engine/Threed/IndirectDrawType.cs
index d78aa498..d78aa498 100644
--- a/Ryujinx.Graphics.Gpu/Engine/Threed/IndirectDrawType.cs
+++ b/src/Ryujinx.Graphics.Gpu/Engine/Threed/IndirectDrawType.cs
diff --git a/Ryujinx.Graphics.Gpu/Engine/Threed/RenderTargetUpdateFlags.cs b/src/Ryujinx.Graphics.Gpu/Engine/Threed/RenderTargetUpdateFlags.cs
index cf2e818c..cf2e818c 100644
--- a/Ryujinx.Graphics.Gpu/Engine/Threed/RenderTargetUpdateFlags.cs
+++ b/src/Ryujinx.Graphics.Gpu/Engine/Threed/RenderTargetUpdateFlags.cs
diff --git a/Ryujinx.Graphics.Gpu/Engine/Threed/SemaphoreUpdater.cs b/src/Ryujinx.Graphics.Gpu/Engine/Threed/SemaphoreUpdater.cs
index 63a2c841..63a2c841 100644
--- a/Ryujinx.Graphics.Gpu/Engine/Threed/SemaphoreUpdater.cs
+++ b/src/Ryujinx.Graphics.Gpu/Engine/Threed/SemaphoreUpdater.cs
diff --git a/Ryujinx.Graphics.Gpu/Engine/Threed/SpecializationStateUpdater.cs b/src/Ryujinx.Graphics.Gpu/Engine/Threed/SpecializationStateUpdater.cs
index a8af5497..a8af5497 100644
--- a/Ryujinx.Graphics.Gpu/Engine/Threed/SpecializationStateUpdater.cs
+++ b/src/Ryujinx.Graphics.Gpu/Engine/Threed/SpecializationStateUpdater.cs
diff --git a/Ryujinx.Graphics.Gpu/Engine/Threed/StateUpdateTracker.cs b/src/Ryujinx.Graphics.Gpu/Engine/Threed/StateUpdateTracker.cs
index 7c730967..7c730967 100644
--- a/Ryujinx.Graphics.Gpu/Engine/Threed/StateUpdateTracker.cs
+++ b/src/Ryujinx.Graphics.Gpu/Engine/Threed/StateUpdateTracker.cs
diff --git a/Ryujinx.Graphics.Gpu/Engine/Threed/StateUpdater.cs b/src/Ryujinx.Graphics.Gpu/Engine/Threed/StateUpdater.cs
index 00e09a31..00e09a31 100644
--- a/Ryujinx.Graphics.Gpu/Engine/Threed/StateUpdater.cs
+++ b/src/Ryujinx.Graphics.Gpu/Engine/Threed/StateUpdater.cs
diff --git a/Ryujinx.Graphics.Gpu/Engine/Threed/ThreedClass.cs b/src/Ryujinx.Graphics.Gpu/Engine/Threed/ThreedClass.cs
index caeee18e..caeee18e 100644
--- a/Ryujinx.Graphics.Gpu/Engine/Threed/ThreedClass.cs
+++ b/src/Ryujinx.Graphics.Gpu/Engine/Threed/ThreedClass.cs
diff --git a/Ryujinx.Graphics.Gpu/Engine/Threed/ThreedClassState.cs b/src/Ryujinx.Graphics.Gpu/Engine/Threed/ThreedClassState.cs
index 8f26f38f..8f26f38f 100644
--- a/Ryujinx.Graphics.Gpu/Engine/Threed/ThreedClassState.cs
+++ b/src/Ryujinx.Graphics.Gpu/Engine/Threed/ThreedClassState.cs
diff --git a/Ryujinx.Graphics.Gpu/Engine/Twod/TwodClass.cs b/src/Ryujinx.Graphics.Gpu/Engine/Twod/TwodClass.cs
index 4ce53e78..4ce53e78 100644
--- a/Ryujinx.Graphics.Gpu/Engine/Twod/TwodClass.cs
+++ b/src/Ryujinx.Graphics.Gpu/Engine/Twod/TwodClass.cs
diff --git a/Ryujinx.Graphics.Gpu/Engine/Twod/TwodClassState.cs b/src/Ryujinx.Graphics.Gpu/Engine/Twod/TwodClassState.cs
index 46fddb04..46fddb04 100644
--- a/Ryujinx.Graphics.Gpu/Engine/Twod/TwodClassState.cs
+++ b/src/Ryujinx.Graphics.Gpu/Engine/Twod/TwodClassState.cs
diff --git a/Ryujinx.Graphics.Gpu/Engine/Twod/TwodTexture.cs b/src/Ryujinx.Graphics.Gpu/Engine/Twod/TwodTexture.cs
index c28da094..c28da094 100644
--- a/Ryujinx.Graphics.Gpu/Engine/Twod/TwodTexture.cs
+++ b/src/Ryujinx.Graphics.Gpu/Engine/Twod/TwodTexture.cs
diff --git a/Ryujinx.Graphics.Gpu/Engine/Types/Boolean32.cs b/src/Ryujinx.Graphics.Gpu/Engine/Types/Boolean32.cs
index c982347a..c982347a 100644
--- a/Ryujinx.Graphics.Gpu/Engine/Types/Boolean32.cs
+++ b/src/Ryujinx.Graphics.Gpu/Engine/Types/Boolean32.cs
diff --git a/Ryujinx.Graphics.Gpu/Engine/Types/ColorFormat.cs b/src/Ryujinx.Graphics.Gpu/Engine/Types/ColorFormat.cs
index 889b5c8b..889b5c8b 100644
--- a/Ryujinx.Graphics.Gpu/Engine/Types/ColorFormat.cs
+++ b/src/Ryujinx.Graphics.Gpu/Engine/Types/ColorFormat.cs
diff --git a/Ryujinx.Graphics.Gpu/Engine/Types/GpuVa.cs b/src/Ryujinx.Graphics.Gpu/Engine/Types/GpuVa.cs
index 839faac9..839faac9 100644
--- a/Ryujinx.Graphics.Gpu/Engine/Types/GpuVa.cs
+++ b/src/Ryujinx.Graphics.Gpu/Engine/Types/GpuVa.cs
diff --git a/Ryujinx.Graphics.Gpu/Engine/Types/MemoryLayout.cs b/src/Ryujinx.Graphics.Gpu/Engine/Types/MemoryLayout.cs
index 6da96bd4..6da96bd4 100644
--- a/Ryujinx.Graphics.Gpu/Engine/Types/MemoryLayout.cs
+++ b/src/Ryujinx.Graphics.Gpu/Engine/Types/MemoryLayout.cs
diff --git a/Ryujinx.Graphics.Gpu/Engine/Types/PrimitiveType.cs b/src/Ryujinx.Graphics.Gpu/Engine/Types/PrimitiveType.cs
index dae63124..dae63124 100644
--- a/Ryujinx.Graphics.Gpu/Engine/Types/PrimitiveType.cs
+++ b/src/Ryujinx.Graphics.Gpu/Engine/Types/PrimitiveType.cs
diff --git a/Ryujinx.Graphics.Gpu/Engine/Types/SamplerIndex.cs b/src/Ryujinx.Graphics.Gpu/Engine/Types/SamplerIndex.cs
index 839a4d0a..839a4d0a 100644
--- a/Ryujinx.Graphics.Gpu/Engine/Types/SamplerIndex.cs
+++ b/src/Ryujinx.Graphics.Gpu/Engine/Types/SamplerIndex.cs
diff --git a/Ryujinx.Graphics.Gpu/Engine/Types/SbDescriptor.cs b/src/Ryujinx.Graphics.Gpu/Engine/Types/SbDescriptor.cs
index c457dbf9..c457dbf9 100644
--- a/Ryujinx.Graphics.Gpu/Engine/Types/SbDescriptor.cs
+++ b/src/Ryujinx.Graphics.Gpu/Engine/Types/SbDescriptor.cs
diff --git a/Ryujinx.Graphics.Gpu/Engine/Types/ZetaFormat.cs b/src/Ryujinx.Graphics.Gpu/Engine/Types/ZetaFormat.cs
index 1de1621f..1de1621f 100644
--- a/Ryujinx.Graphics.Gpu/Engine/Types/ZetaFormat.cs
+++ b/src/Ryujinx.Graphics.Gpu/Engine/Types/ZetaFormat.cs
diff --git a/Ryujinx.Graphics.Gpu/GpuChannel.cs b/src/Ryujinx.Graphics.Gpu/GpuChannel.cs
index 43fa8484..43fa8484 100644
--- a/Ryujinx.Graphics.Gpu/GpuChannel.cs
+++ b/src/Ryujinx.Graphics.Gpu/GpuChannel.cs
diff --git a/Ryujinx.Graphics.Gpu/GpuContext.cs b/src/Ryujinx.Graphics.Gpu/GpuContext.cs
index 91758863..91758863 100644
--- a/Ryujinx.Graphics.Gpu/GpuContext.cs
+++ b/src/Ryujinx.Graphics.Gpu/GpuContext.cs
diff --git a/Ryujinx.Graphics.Gpu/GraphicsConfig.cs b/src/Ryujinx.Graphics.Gpu/GraphicsConfig.cs
index d2f98c7f..d2f98c7f 100644
--- a/Ryujinx.Graphics.Gpu/GraphicsConfig.cs
+++ b/src/Ryujinx.Graphics.Gpu/GraphicsConfig.cs
diff --git a/Ryujinx.Graphics.Gpu/Image/AutoDeleteCache.cs b/src/Ryujinx.Graphics.Gpu/Image/AutoDeleteCache.cs
index a0b9f57b..a0b9f57b 100644
--- a/Ryujinx.Graphics.Gpu/Image/AutoDeleteCache.cs
+++ b/src/Ryujinx.Graphics.Gpu/Image/AutoDeleteCache.cs
diff --git a/Ryujinx.Graphics.Gpu/Image/FormatInfo.cs b/src/Ryujinx.Graphics.Gpu/Image/FormatInfo.cs
index 9ee649d2..9ee649d2 100644
--- a/Ryujinx.Graphics.Gpu/Image/FormatInfo.cs
+++ b/src/Ryujinx.Graphics.Gpu/Image/FormatInfo.cs
diff --git a/Ryujinx.Graphics.Gpu/Image/FormatTable.cs b/src/Ryujinx.Graphics.Gpu/Image/FormatTable.cs
index 72901610..72901610 100644
--- a/Ryujinx.Graphics.Gpu/Image/FormatTable.cs
+++ b/src/Ryujinx.Graphics.Gpu/Image/FormatTable.cs
diff --git a/Ryujinx.Graphics.Gpu/Image/ITextureDescriptor.cs b/src/Ryujinx.Graphics.Gpu/Image/ITextureDescriptor.cs
index 378de44b..378de44b 100644
--- a/Ryujinx.Graphics.Gpu/Image/ITextureDescriptor.cs
+++ b/src/Ryujinx.Graphics.Gpu/Image/ITextureDescriptor.cs
diff --git a/Ryujinx.Graphics.Gpu/Image/Pool.cs b/src/Ryujinx.Graphics.Gpu/Image/Pool.cs
index 3e557c0b..3e557c0b 100644
--- a/Ryujinx.Graphics.Gpu/Image/Pool.cs
+++ b/src/Ryujinx.Graphics.Gpu/Image/Pool.cs
diff --git a/Ryujinx.Graphics.Gpu/Image/PoolCache.cs b/src/Ryujinx.Graphics.Gpu/Image/PoolCache.cs
index e1493f38..e1493f38 100644
--- a/Ryujinx.Graphics.Gpu/Image/PoolCache.cs
+++ b/src/Ryujinx.Graphics.Gpu/Image/PoolCache.cs
diff --git a/Ryujinx.Graphics.Gpu/Image/ReductionFilter.cs b/src/Ryujinx.Graphics.Gpu/Image/ReductionFilter.cs
index 1f7d9b07..1f7d9b07 100644
--- a/Ryujinx.Graphics.Gpu/Image/ReductionFilter.cs
+++ b/src/Ryujinx.Graphics.Gpu/Image/ReductionFilter.cs
diff --git a/Ryujinx.Graphics.Gpu/Image/Sampler.cs b/src/Ryujinx.Graphics.Gpu/Image/Sampler.cs
index b70ac9eb..b70ac9eb 100644
--- a/Ryujinx.Graphics.Gpu/Image/Sampler.cs
+++ b/src/Ryujinx.Graphics.Gpu/Image/Sampler.cs
diff --git a/Ryujinx.Graphics.Gpu/Image/SamplerDescriptor.cs b/src/Ryujinx.Graphics.Gpu/Image/SamplerDescriptor.cs
index 64a146fb..64a146fb 100644
--- a/Ryujinx.Graphics.Gpu/Image/SamplerDescriptor.cs
+++ b/src/Ryujinx.Graphics.Gpu/Image/SamplerDescriptor.cs
diff --git a/Ryujinx.Graphics.Gpu/Image/SamplerMinFilter.cs b/src/Ryujinx.Graphics.Gpu/Image/SamplerMinFilter.cs
index 17beb129..17beb129 100644
--- a/Ryujinx.Graphics.Gpu/Image/SamplerMinFilter.cs
+++ b/src/Ryujinx.Graphics.Gpu/Image/SamplerMinFilter.cs
diff --git a/Ryujinx.Graphics.Gpu/Image/SamplerMipFilter.cs b/src/Ryujinx.Graphics.Gpu/Image/SamplerMipFilter.cs
index 319d4196..319d4196 100644
--- a/Ryujinx.Graphics.Gpu/Image/SamplerMipFilter.cs
+++ b/src/Ryujinx.Graphics.Gpu/Image/SamplerMipFilter.cs
diff --git a/Ryujinx.Graphics.Gpu/Image/SamplerPool.cs b/src/Ryujinx.Graphics.Gpu/Image/SamplerPool.cs
index eb7222f9..eb7222f9 100644
--- a/Ryujinx.Graphics.Gpu/Image/SamplerPool.cs
+++ b/src/Ryujinx.Graphics.Gpu/Image/SamplerPool.cs
diff --git a/Ryujinx.Graphics.Gpu/Image/SamplerPoolCache.cs b/src/Ryujinx.Graphics.Gpu/Image/SamplerPoolCache.cs
index 3b3350fb..3b3350fb 100644
--- a/Ryujinx.Graphics.Gpu/Image/SamplerPoolCache.cs
+++ b/src/Ryujinx.Graphics.Gpu/Image/SamplerPoolCache.cs
diff --git a/Ryujinx.Graphics.Gpu/Image/Texture.cs b/src/Ryujinx.Graphics.Gpu/Image/Texture.cs
index 84808a84..84808a84 100644
--- a/Ryujinx.Graphics.Gpu/Image/Texture.cs
+++ b/src/Ryujinx.Graphics.Gpu/Image/Texture.cs
diff --git a/Ryujinx.Graphics.Gpu/Image/TextureBindingInfo.cs b/src/Ryujinx.Graphics.Gpu/Image/TextureBindingInfo.cs
index febe508b..febe508b 100644
--- a/Ryujinx.Graphics.Gpu/Image/TextureBindingInfo.cs
+++ b/src/Ryujinx.Graphics.Gpu/Image/TextureBindingInfo.cs
diff --git a/Ryujinx.Graphics.Gpu/Image/TextureBindingsManager.cs b/src/Ryujinx.Graphics.Gpu/Image/TextureBindingsManager.cs
index bbfb704d..bbfb704d 100644
--- a/Ryujinx.Graphics.Gpu/Image/TextureBindingsManager.cs
+++ b/src/Ryujinx.Graphics.Gpu/Image/TextureBindingsManager.cs
diff --git a/Ryujinx.Graphics.Gpu/Image/TextureCache.cs b/src/Ryujinx.Graphics.Gpu/Image/TextureCache.cs
index c3243cf2..c3243cf2 100644
--- a/Ryujinx.Graphics.Gpu/Image/TextureCache.cs
+++ b/src/Ryujinx.Graphics.Gpu/Image/TextureCache.cs
diff --git a/Ryujinx.Graphics.Gpu/Image/TextureCompatibility.cs b/src/Ryujinx.Graphics.Gpu/Image/TextureCompatibility.cs
index e93ea0c0..e93ea0c0 100644
--- a/Ryujinx.Graphics.Gpu/Image/TextureCompatibility.cs
+++ b/src/Ryujinx.Graphics.Gpu/Image/TextureCompatibility.cs
diff --git a/Ryujinx.Graphics.Gpu/Image/TextureComponent.cs b/src/Ryujinx.Graphics.Gpu/Image/TextureComponent.cs
index 359069bc..359069bc 100644
--- a/Ryujinx.Graphics.Gpu/Image/TextureComponent.cs
+++ b/src/Ryujinx.Graphics.Gpu/Image/TextureComponent.cs
diff --git a/Ryujinx.Graphics.Gpu/Image/TextureDependency.cs b/src/Ryujinx.Graphics.Gpu/Image/TextureDependency.cs
index 269ddbd9..269ddbd9 100644
--- a/Ryujinx.Graphics.Gpu/Image/TextureDependency.cs
+++ b/src/Ryujinx.Graphics.Gpu/Image/TextureDependency.cs
diff --git a/Ryujinx.Graphics.Gpu/Image/TextureDescriptor.cs b/src/Ryujinx.Graphics.Gpu/Image/TextureDescriptor.cs
index 3e35f8d2..3e35f8d2 100644
--- a/Ryujinx.Graphics.Gpu/Image/TextureDescriptor.cs
+++ b/src/Ryujinx.Graphics.Gpu/Image/TextureDescriptor.cs
diff --git a/Ryujinx.Graphics.Gpu/Image/TextureDescriptorType.cs b/src/Ryujinx.Graphics.Gpu/Image/TextureDescriptorType.cs
index 8e7d40bb..8e7d40bb 100644
--- a/Ryujinx.Graphics.Gpu/Image/TextureDescriptorType.cs
+++ b/src/Ryujinx.Graphics.Gpu/Image/TextureDescriptorType.cs
diff --git a/Ryujinx.Graphics.Gpu/Image/TextureGroup.cs b/src/Ryujinx.Graphics.Gpu/Image/TextureGroup.cs
index 234e7e8c..234e7e8c 100644
--- a/Ryujinx.Graphics.Gpu/Image/TextureGroup.cs
+++ b/src/Ryujinx.Graphics.Gpu/Image/TextureGroup.cs
diff --git a/Ryujinx.Graphics.Gpu/Image/TextureGroupHandle.cs b/src/Ryujinx.Graphics.Gpu/Image/TextureGroupHandle.cs
index ebb4e9ae..ebb4e9ae 100644
--- a/Ryujinx.Graphics.Gpu/Image/TextureGroupHandle.cs
+++ b/src/Ryujinx.Graphics.Gpu/Image/TextureGroupHandle.cs
diff --git a/Ryujinx.Graphics.Gpu/Image/TextureInfo.cs b/src/Ryujinx.Graphics.Gpu/Image/TextureInfo.cs
index a7ee12bc..a7ee12bc 100644
--- a/Ryujinx.Graphics.Gpu/Image/TextureInfo.cs
+++ b/src/Ryujinx.Graphics.Gpu/Image/TextureInfo.cs
diff --git a/Ryujinx.Graphics.Gpu/Image/TextureManager.cs b/src/Ryujinx.Graphics.Gpu/Image/TextureManager.cs
index 266f6285..266f6285 100644
--- a/Ryujinx.Graphics.Gpu/Image/TextureManager.cs
+++ b/src/Ryujinx.Graphics.Gpu/Image/TextureManager.cs
diff --git a/Ryujinx.Graphics.Gpu/Image/TextureMatchQuality.cs b/src/Ryujinx.Graphics.Gpu/Image/TextureMatchQuality.cs
index 1351bf24..1351bf24 100644
--- a/Ryujinx.Graphics.Gpu/Image/TextureMatchQuality.cs
+++ b/src/Ryujinx.Graphics.Gpu/Image/TextureMatchQuality.cs
diff --git a/Ryujinx.Graphics.Gpu/Image/TextureMsaaMode.cs b/src/Ryujinx.Graphics.Gpu/Image/TextureMsaaMode.cs
index 0461888f..0461888f 100644
--- a/Ryujinx.Graphics.Gpu/Image/TextureMsaaMode.cs
+++ b/src/Ryujinx.Graphics.Gpu/Image/TextureMsaaMode.cs
diff --git a/Ryujinx.Graphics.Gpu/Image/TexturePool.cs b/src/Ryujinx.Graphics.Gpu/Image/TexturePool.cs
index 5277e789..5277e789 100644
--- a/Ryujinx.Graphics.Gpu/Image/TexturePool.cs
+++ b/src/Ryujinx.Graphics.Gpu/Image/TexturePool.cs
diff --git a/Ryujinx.Graphics.Gpu/Image/TexturePoolCache.cs b/src/Ryujinx.Graphics.Gpu/Image/TexturePoolCache.cs
index 0017f4cc..0017f4cc 100644
--- a/Ryujinx.Graphics.Gpu/Image/TexturePoolCache.cs
+++ b/src/Ryujinx.Graphics.Gpu/Image/TexturePoolCache.cs
diff --git a/Ryujinx.Graphics.Gpu/Image/TextureScaleMode.cs b/src/Ryujinx.Graphics.Gpu/Image/TextureScaleMode.cs
index b937f577..b937f577 100644
--- a/Ryujinx.Graphics.Gpu/Image/TextureScaleMode.cs
+++ b/src/Ryujinx.Graphics.Gpu/Image/TextureScaleMode.cs
diff --git a/Ryujinx.Graphics.Gpu/Image/TextureSearchFlags.cs b/src/Ryujinx.Graphics.Gpu/Image/TextureSearchFlags.cs
index 890bf173..890bf173 100644
--- a/Ryujinx.Graphics.Gpu/Image/TextureSearchFlags.cs
+++ b/src/Ryujinx.Graphics.Gpu/Image/TextureSearchFlags.cs
diff --git a/Ryujinx.Graphics.Gpu/Image/TextureTarget.cs b/src/Ryujinx.Graphics.Gpu/Image/TextureTarget.cs
index 5e0a0721..5e0a0721 100644
--- a/Ryujinx.Graphics.Gpu/Image/TextureTarget.cs
+++ b/src/Ryujinx.Graphics.Gpu/Image/TextureTarget.cs
diff --git a/Ryujinx.Graphics.Gpu/Image/TextureViewCompatibility.cs b/src/Ryujinx.Graphics.Gpu/Image/TextureViewCompatibility.cs
index b89936eb..b89936eb 100644
--- a/Ryujinx.Graphics.Gpu/Image/TextureViewCompatibility.cs
+++ b/src/Ryujinx.Graphics.Gpu/Image/TextureViewCompatibility.cs
diff --git a/Ryujinx.Graphics.Gpu/Memory/Buffer.cs b/src/Ryujinx.Graphics.Gpu/Memory/Buffer.cs
index f267dfda..f267dfda 100644
--- a/Ryujinx.Graphics.Gpu/Memory/Buffer.cs
+++ b/src/Ryujinx.Graphics.Gpu/Memory/Buffer.cs
diff --git a/Ryujinx.Graphics.Gpu/Memory/BufferBounds.cs b/src/Ryujinx.Graphics.Gpu/Memory/BufferBounds.cs
index d513b7ad..d513b7ad 100644
--- a/Ryujinx.Graphics.Gpu/Memory/BufferBounds.cs
+++ b/src/Ryujinx.Graphics.Gpu/Memory/BufferBounds.cs
diff --git a/Ryujinx.Graphics.Gpu/Memory/BufferCache.cs b/src/Ryujinx.Graphics.Gpu/Memory/BufferCache.cs
index a5a9b75e..a5a9b75e 100644
--- a/Ryujinx.Graphics.Gpu/Memory/BufferCache.cs
+++ b/src/Ryujinx.Graphics.Gpu/Memory/BufferCache.cs
diff --git a/Ryujinx.Graphics.Gpu/Memory/BufferCacheEntry.cs b/src/Ryujinx.Graphics.Gpu/Memory/BufferCacheEntry.cs
index fa38b54e..fa38b54e 100644
--- a/Ryujinx.Graphics.Gpu/Memory/BufferCacheEntry.cs
+++ b/src/Ryujinx.Graphics.Gpu/Memory/BufferCacheEntry.cs
diff --git a/Ryujinx.Graphics.Gpu/Memory/BufferManager.cs b/src/Ryujinx.Graphics.Gpu/Memory/BufferManager.cs
index e20e1bb6..e20e1bb6 100644
--- a/Ryujinx.Graphics.Gpu/Memory/BufferManager.cs
+++ b/src/Ryujinx.Graphics.Gpu/Memory/BufferManager.cs
diff --git a/Ryujinx.Graphics.Gpu/Memory/BufferMigration.cs b/src/Ryujinx.Graphics.Gpu/Memory/BufferMigration.cs
index e020c0c3..e020c0c3 100644
--- a/Ryujinx.Graphics.Gpu/Memory/BufferMigration.cs
+++ b/src/Ryujinx.Graphics.Gpu/Memory/BufferMigration.cs
diff --git a/Ryujinx.Graphics.Gpu/Memory/BufferModifiedRangeList.cs b/src/Ryujinx.Graphics.Gpu/Memory/BufferModifiedRangeList.cs
index d0230b62..d0230b62 100644
--- a/Ryujinx.Graphics.Gpu/Memory/BufferModifiedRangeList.cs
+++ b/src/Ryujinx.Graphics.Gpu/Memory/BufferModifiedRangeList.cs
diff --git a/Ryujinx.Graphics.Gpu/Memory/BufferTextureBinding.cs b/src/Ryujinx.Graphics.Gpu/Memory/BufferTextureBinding.cs
index b7a0e726..b7a0e726 100644
--- a/Ryujinx.Graphics.Gpu/Memory/BufferTextureBinding.cs
+++ b/src/Ryujinx.Graphics.Gpu/Memory/BufferTextureBinding.cs
diff --git a/Ryujinx.Graphics.Gpu/Memory/CounterCache.cs b/src/Ryujinx.Graphics.Gpu/Memory/CounterCache.cs
index e763a899..e763a899 100644
--- a/Ryujinx.Graphics.Gpu/Memory/CounterCache.cs
+++ b/src/Ryujinx.Graphics.Gpu/Memory/CounterCache.cs
diff --git a/Ryujinx.Graphics.Gpu/Memory/GpuRegionHandle.cs b/src/Ryujinx.Graphics.Gpu/Memory/GpuRegionHandle.cs
index bc07bfad..bc07bfad 100644
--- a/Ryujinx.Graphics.Gpu/Memory/GpuRegionHandle.cs
+++ b/src/Ryujinx.Graphics.Gpu/Memory/GpuRegionHandle.cs
diff --git a/Ryujinx.Graphics.Gpu/Memory/IndexBuffer.cs b/src/Ryujinx.Graphics.Gpu/Memory/IndexBuffer.cs
index 7765e899..7765e899 100644
--- a/Ryujinx.Graphics.Gpu/Memory/IndexBuffer.cs
+++ b/src/Ryujinx.Graphics.Gpu/Memory/IndexBuffer.cs
diff --git a/Ryujinx.Graphics.Gpu/Memory/MemoryManager.cs b/src/Ryujinx.Graphics.Gpu/Memory/MemoryManager.cs
index b0f7e799..b0f7e799 100644
--- a/Ryujinx.Graphics.Gpu/Memory/MemoryManager.cs
+++ b/src/Ryujinx.Graphics.Gpu/Memory/MemoryManager.cs
diff --git a/Ryujinx.Graphics.Gpu/Memory/MultiRangeWritableBlock.cs b/src/Ryujinx.Graphics.Gpu/Memory/MultiRangeWritableBlock.cs
index 155dda7b..155dda7b 100644
--- a/Ryujinx.Graphics.Gpu/Memory/MultiRangeWritableBlock.cs
+++ b/src/Ryujinx.Graphics.Gpu/Memory/MultiRangeWritableBlock.cs
diff --git a/Ryujinx.Graphics.Gpu/Memory/PhysicalMemory.cs b/src/Ryujinx.Graphics.Gpu/Memory/PhysicalMemory.cs
index bd33383e..bd33383e 100644
--- a/Ryujinx.Graphics.Gpu/Memory/PhysicalMemory.cs
+++ b/src/Ryujinx.Graphics.Gpu/Memory/PhysicalMemory.cs
diff --git a/Ryujinx.Graphics.Gpu/Memory/PteKind.cs b/src/Ryujinx.Graphics.Gpu/Memory/PteKind.cs
index 4ceb6bcf..4ceb6bcf 100644
--- a/Ryujinx.Graphics.Gpu/Memory/PteKind.cs
+++ b/src/Ryujinx.Graphics.Gpu/Memory/PteKind.cs
diff --git a/Ryujinx.Graphics.Gpu/Memory/ResourceKind.cs b/src/Ryujinx.Graphics.Gpu/Memory/ResourceKind.cs
index 55d697b8..55d697b8 100644
--- a/Ryujinx.Graphics.Gpu/Memory/ResourceKind.cs
+++ b/src/Ryujinx.Graphics.Gpu/Memory/ResourceKind.cs
diff --git a/Ryujinx.Graphics.Gpu/Memory/UnmapEventArgs.cs b/src/Ryujinx.Graphics.Gpu/Memory/UnmapEventArgs.cs
index 305747f8..305747f8 100644
--- a/Ryujinx.Graphics.Gpu/Memory/UnmapEventArgs.cs
+++ b/src/Ryujinx.Graphics.Gpu/Memory/UnmapEventArgs.cs
diff --git a/Ryujinx.Graphics.Gpu/Memory/VertexBuffer.cs b/src/Ryujinx.Graphics.Gpu/Memory/VertexBuffer.cs
index 8f089125..8f089125 100644
--- a/Ryujinx.Graphics.Gpu/Memory/VertexBuffer.cs
+++ b/src/Ryujinx.Graphics.Gpu/Memory/VertexBuffer.cs
diff --git a/Ryujinx.Graphics.Gpu/Ryujinx.Graphics.Gpu.csproj b/src/Ryujinx.Graphics.Gpu/Ryujinx.Graphics.Gpu.csproj
index 5255a6e0..5255a6e0 100644
--- a/Ryujinx.Graphics.Gpu/Ryujinx.Graphics.Gpu.csproj
+++ b/src/Ryujinx.Graphics.Gpu/Ryujinx.Graphics.Gpu.csproj
diff --git a/Ryujinx.Graphics.Gpu/Shader/CachedShaderBindings.cs b/src/Ryujinx.Graphics.Gpu/Shader/CachedShaderBindings.cs
index 1734f08a..1734f08a 100644
--- a/Ryujinx.Graphics.Gpu/Shader/CachedShaderBindings.cs
+++ b/src/Ryujinx.Graphics.Gpu/Shader/CachedShaderBindings.cs
diff --git a/Ryujinx.Graphics.Gpu/Shader/CachedShaderProgram.cs b/src/Ryujinx.Graphics.Gpu/Shader/CachedShaderProgram.cs
index ff9c39a1..ff9c39a1 100644
--- a/Ryujinx.Graphics.Gpu/Shader/CachedShaderProgram.cs
+++ b/src/Ryujinx.Graphics.Gpu/Shader/CachedShaderProgram.cs
diff --git a/Ryujinx.Graphics.Gpu/Shader/CachedShaderStage.cs b/src/Ryujinx.Graphics.Gpu/Shader/CachedShaderStage.cs
index 22b08dd5..22b08dd5 100644
--- a/Ryujinx.Graphics.Gpu/Shader/CachedShaderStage.cs
+++ b/src/Ryujinx.Graphics.Gpu/Shader/CachedShaderStage.cs
diff --git a/Ryujinx.Graphics.Gpu/Shader/ComputeShaderCacheHashTable.cs b/src/Ryujinx.Graphics.Gpu/Shader/ComputeShaderCacheHashTable.cs
index a6718211..a6718211 100644
--- a/Ryujinx.Graphics.Gpu/Shader/ComputeShaderCacheHashTable.cs
+++ b/src/Ryujinx.Graphics.Gpu/Shader/ComputeShaderCacheHashTable.cs
diff --git a/Ryujinx.Graphics.Gpu/Shader/DiskCache/BackgroundDiskCacheWriter.cs b/src/Ryujinx.Graphics.Gpu/Shader/DiskCache/BackgroundDiskCacheWriter.cs
index 568fe968..568fe968 100644
--- a/Ryujinx.Graphics.Gpu/Shader/DiskCache/BackgroundDiskCacheWriter.cs
+++ b/src/Ryujinx.Graphics.Gpu/Shader/DiskCache/BackgroundDiskCacheWriter.cs
diff --git a/Ryujinx.Graphics.Gpu/Shader/DiskCache/BinarySerializer.cs b/src/Ryujinx.Graphics.Gpu/Shader/DiskCache/BinarySerializer.cs
index 50e37033..50e37033 100644
--- a/Ryujinx.Graphics.Gpu/Shader/DiskCache/BinarySerializer.cs
+++ b/src/Ryujinx.Graphics.Gpu/Shader/DiskCache/BinarySerializer.cs
diff --git a/Ryujinx.Graphics.Gpu/Shader/DiskCache/CompressionAlgorithm.cs b/src/Ryujinx.Graphics.Gpu/Shader/DiskCache/CompressionAlgorithm.cs
index a46e1ef7..a46e1ef7 100644
--- a/Ryujinx.Graphics.Gpu/Shader/DiskCache/CompressionAlgorithm.cs
+++ b/src/Ryujinx.Graphics.Gpu/Shader/DiskCache/CompressionAlgorithm.cs
diff --git a/Ryujinx.Graphics.Gpu/Shader/DiskCache/DiskCacheCommon.cs b/src/Ryujinx.Graphics.Gpu/Shader/DiskCache/DiskCacheCommon.cs
index c8a9f7ff..c8a9f7ff 100644
--- a/Ryujinx.Graphics.Gpu/Shader/DiskCache/DiskCacheCommon.cs
+++ b/src/Ryujinx.Graphics.Gpu/Shader/DiskCache/DiskCacheCommon.cs
diff --git a/Ryujinx.Graphics.Gpu/Shader/DiskCache/DiskCacheGpuAccessor.cs b/src/Ryujinx.Graphics.Gpu/Shader/DiskCache/DiskCacheGpuAccessor.cs
index 17639ca1..17639ca1 100644
--- a/Ryujinx.Graphics.Gpu/Shader/DiskCache/DiskCacheGpuAccessor.cs
+++ b/src/Ryujinx.Graphics.Gpu/Shader/DiskCache/DiskCacheGpuAccessor.cs
diff --git a/Ryujinx.Graphics.Gpu/Shader/DiskCache/DiskCacheGuestStorage.cs b/src/Ryujinx.Graphics.Gpu/Shader/DiskCache/DiskCacheGuestStorage.cs
index 01034b49..01034b49 100644
--- a/Ryujinx.Graphics.Gpu/Shader/DiskCache/DiskCacheGuestStorage.cs
+++ b/src/Ryujinx.Graphics.Gpu/Shader/DiskCache/DiskCacheGuestStorage.cs
diff --git a/Ryujinx.Graphics.Gpu/Shader/DiskCache/DiskCacheHostStorage.cs b/src/Ryujinx.Graphics.Gpu/Shader/DiskCache/DiskCacheHostStorage.cs
index b182f299..b182f299 100644
--- a/Ryujinx.Graphics.Gpu/Shader/DiskCache/DiskCacheHostStorage.cs
+++ b/src/Ryujinx.Graphics.Gpu/Shader/DiskCache/DiskCacheHostStorage.cs
diff --git a/Ryujinx.Graphics.Gpu/Shader/DiskCache/DiskCacheLoadException.cs b/src/Ryujinx.Graphics.Gpu/Shader/DiskCache/DiskCacheLoadException.cs
index d6e23302..d6e23302 100644
--- a/Ryujinx.Graphics.Gpu/Shader/DiskCache/DiskCacheLoadException.cs
+++ b/src/Ryujinx.Graphics.Gpu/Shader/DiskCache/DiskCacheLoadException.cs
diff --git a/Ryujinx.Graphics.Gpu/Shader/DiskCache/DiskCacheLoadResult.cs b/src/Ryujinx.Graphics.Gpu/Shader/DiskCache/DiskCacheLoadResult.cs
index b3ffa4a7..b3ffa4a7 100644
--- a/Ryujinx.Graphics.Gpu/Shader/DiskCache/DiskCacheLoadResult.cs
+++ b/src/Ryujinx.Graphics.Gpu/Shader/DiskCache/DiskCacheLoadResult.cs
diff --git a/Ryujinx.Graphics.Gpu/Shader/DiskCache/DiskCacheOutputStreams.cs b/src/Ryujinx.Graphics.Gpu/Shader/DiskCache/DiskCacheOutputStreams.cs
index 1e0df264..1e0df264 100644
--- a/Ryujinx.Graphics.Gpu/Shader/DiskCache/DiskCacheOutputStreams.cs
+++ b/src/Ryujinx.Graphics.Gpu/Shader/DiskCache/DiskCacheOutputStreams.cs
diff --git a/Ryujinx.Graphics.Gpu/Shader/DiskCache/GuestCodeAndCbData.cs b/src/Ryujinx.Graphics.Gpu/Shader/DiskCache/GuestCodeAndCbData.cs
index 959d6e18..959d6e18 100644
--- a/Ryujinx.Graphics.Gpu/Shader/DiskCache/GuestCodeAndCbData.cs
+++ b/src/Ryujinx.Graphics.Gpu/Shader/DiskCache/GuestCodeAndCbData.cs
diff --git a/Ryujinx.Graphics.Gpu/Shader/DiskCache/ParallelDiskCacheLoader.cs b/src/Ryujinx.Graphics.Gpu/Shader/DiskCache/ParallelDiskCacheLoader.cs
index 77fb3ca4..77fb3ca4 100644
--- a/Ryujinx.Graphics.Gpu/Shader/DiskCache/ParallelDiskCacheLoader.cs
+++ b/src/Ryujinx.Graphics.Gpu/Shader/DiskCache/ParallelDiskCacheLoader.cs
diff --git a/Ryujinx.Graphics.Gpu/Shader/DiskCache/ShaderBinarySerializer.cs b/src/Ryujinx.Graphics.Gpu/Shader/DiskCache/ShaderBinarySerializer.cs
index 77e52667..77e52667 100644
--- a/Ryujinx.Graphics.Gpu/Shader/DiskCache/ShaderBinarySerializer.cs
+++ b/src/Ryujinx.Graphics.Gpu/Shader/DiskCache/ShaderBinarySerializer.cs
diff --git a/Ryujinx.Graphics.Gpu/Shader/GpuAccessor.cs b/src/Ryujinx.Graphics.Gpu/Shader/GpuAccessor.cs
index 3e816733..3e816733 100644
--- a/Ryujinx.Graphics.Gpu/Shader/GpuAccessor.cs
+++ b/src/Ryujinx.Graphics.Gpu/Shader/GpuAccessor.cs
diff --git a/Ryujinx.Graphics.Gpu/Shader/GpuAccessorBase.cs b/src/Ryujinx.Graphics.Gpu/Shader/GpuAccessorBase.cs
index d35b8d92..d35b8d92 100644
--- a/Ryujinx.Graphics.Gpu/Shader/GpuAccessorBase.cs
+++ b/src/Ryujinx.Graphics.Gpu/Shader/GpuAccessorBase.cs
diff --git a/Ryujinx.Graphics.Gpu/Shader/GpuAccessorState.cs b/src/Ryujinx.Graphics.Gpu/Shader/GpuAccessorState.cs
index 0e8e979c..0e8e979c 100644
--- a/Ryujinx.Graphics.Gpu/Shader/GpuAccessorState.cs
+++ b/src/Ryujinx.Graphics.Gpu/Shader/GpuAccessorState.cs
diff --git a/Ryujinx.Graphics.Gpu/Shader/GpuChannelComputeState.cs b/src/Ryujinx.Graphics.Gpu/Shader/GpuChannelComputeState.cs
index b65dd75e..b65dd75e 100644
--- a/Ryujinx.Graphics.Gpu/Shader/GpuChannelComputeState.cs
+++ b/src/Ryujinx.Graphics.Gpu/Shader/GpuChannelComputeState.cs
diff --git a/Ryujinx.Graphics.Gpu/Shader/GpuChannelGraphicsState.cs b/src/Ryujinx.Graphics.Gpu/Shader/GpuChannelGraphicsState.cs
index 5247a096..5247a096 100644
--- a/Ryujinx.Graphics.Gpu/Shader/GpuChannelGraphicsState.cs
+++ b/src/Ryujinx.Graphics.Gpu/Shader/GpuChannelGraphicsState.cs
diff --git a/Ryujinx.Graphics.Gpu/Shader/GpuChannelPoolState.cs b/src/Ryujinx.Graphics.Gpu/Shader/GpuChannelPoolState.cs
index 1e34c5de..1e34c5de 100644
--- a/Ryujinx.Graphics.Gpu/Shader/GpuChannelPoolState.cs
+++ b/src/Ryujinx.Graphics.Gpu/Shader/GpuChannelPoolState.cs
diff --git a/Ryujinx.Graphics.Gpu/Shader/HashTable/HashState.cs b/src/Ryujinx.Graphics.Gpu/Shader/HashTable/HashState.cs
index 584eefdc..584eefdc 100644
--- a/Ryujinx.Graphics.Gpu/Shader/HashTable/HashState.cs
+++ b/src/Ryujinx.Graphics.Gpu/Shader/HashTable/HashState.cs
diff --git a/Ryujinx.Graphics.Gpu/Shader/HashTable/IDataAccessor.cs b/src/Ryujinx.Graphics.Gpu/Shader/HashTable/IDataAccessor.cs
index c982cd9f..c982cd9f 100644
--- a/Ryujinx.Graphics.Gpu/Shader/HashTable/IDataAccessor.cs
+++ b/src/Ryujinx.Graphics.Gpu/Shader/HashTable/IDataAccessor.cs
diff --git a/Ryujinx.Graphics.Gpu/Shader/HashTable/PartitionHashTable.cs b/src/Ryujinx.Graphics.Gpu/Shader/HashTable/PartitionHashTable.cs
index d7cb3d99..d7cb3d99 100644
--- a/Ryujinx.Graphics.Gpu/Shader/HashTable/PartitionHashTable.cs
+++ b/src/Ryujinx.Graphics.Gpu/Shader/HashTable/PartitionHashTable.cs
diff --git a/Ryujinx.Graphics.Gpu/Shader/HashTable/PartitionedHashTable.cs b/src/Ryujinx.Graphics.Gpu/Shader/HashTable/PartitionedHashTable.cs
index e9a4f654..e9a4f654 100644
--- a/Ryujinx.Graphics.Gpu/Shader/HashTable/PartitionedHashTable.cs
+++ b/src/Ryujinx.Graphics.Gpu/Shader/HashTable/PartitionedHashTable.cs
diff --git a/Ryujinx.Graphics.Gpu/Shader/HashTable/SmartDataAccessor.cs b/src/Ryujinx.Graphics.Gpu/Shader/HashTable/SmartDataAccessor.cs
index 0632add6..0632add6 100644
--- a/Ryujinx.Graphics.Gpu/Shader/HashTable/SmartDataAccessor.cs
+++ b/src/Ryujinx.Graphics.Gpu/Shader/HashTable/SmartDataAccessor.cs
diff --git a/Ryujinx.Graphics.Gpu/Shader/ResourceCounts.cs b/src/Ryujinx.Graphics.Gpu/Shader/ResourceCounts.cs
index b85423cb..b85423cb 100644
--- a/Ryujinx.Graphics.Gpu/Shader/ResourceCounts.cs
+++ b/src/Ryujinx.Graphics.Gpu/Shader/ResourceCounts.cs
diff --git a/Ryujinx.Graphics.Gpu/Shader/ShaderAddresses.cs b/src/Ryujinx.Graphics.Gpu/Shader/ShaderAddresses.cs
index 651dfd26..651dfd26 100644
--- a/Ryujinx.Graphics.Gpu/Shader/ShaderAddresses.cs
+++ b/src/Ryujinx.Graphics.Gpu/Shader/ShaderAddresses.cs
diff --git a/Ryujinx.Graphics.Gpu/Shader/ShaderCache.cs b/src/Ryujinx.Graphics.Gpu/Shader/ShaderCache.cs
index e1ab9327..e1ab9327 100644
--- a/Ryujinx.Graphics.Gpu/Shader/ShaderCache.cs
+++ b/src/Ryujinx.Graphics.Gpu/Shader/ShaderCache.cs
diff --git a/Ryujinx.Graphics.Gpu/Shader/ShaderCacheHashTable.cs b/src/Ryujinx.Graphics.Gpu/Shader/ShaderCacheHashTable.cs
index e35c06b1..e35c06b1 100644
--- a/Ryujinx.Graphics.Gpu/Shader/ShaderCacheHashTable.cs
+++ b/src/Ryujinx.Graphics.Gpu/Shader/ShaderCacheHashTable.cs
diff --git a/Ryujinx.Graphics.Gpu/Shader/ShaderCacheState.cs b/src/Ryujinx.Graphics.Gpu/Shader/ShaderCacheState.cs
index 623b73d7..623b73d7 100644
--- a/Ryujinx.Graphics.Gpu/Shader/ShaderCacheState.cs
+++ b/src/Ryujinx.Graphics.Gpu/Shader/ShaderCacheState.cs
diff --git a/Ryujinx.Graphics.Gpu/Shader/ShaderCodeAccessor.cs b/src/Ryujinx.Graphics.Gpu/Shader/ShaderCodeAccessor.cs
index e896493c..e896493c 100644
--- a/Ryujinx.Graphics.Gpu/Shader/ShaderCodeAccessor.cs
+++ b/src/Ryujinx.Graphics.Gpu/Shader/ShaderCodeAccessor.cs
diff --git a/Ryujinx.Graphics.Gpu/Shader/ShaderDumpPaths.cs b/src/Ryujinx.Graphics.Gpu/Shader/ShaderDumpPaths.cs
index 6ca7daef..6ca7daef 100644
--- a/Ryujinx.Graphics.Gpu/Shader/ShaderDumpPaths.cs
+++ b/src/Ryujinx.Graphics.Gpu/Shader/ShaderDumpPaths.cs
diff --git a/Ryujinx.Graphics.Gpu/Shader/ShaderDumper.cs b/src/Ryujinx.Graphics.Gpu/Shader/ShaderDumper.cs
index 93eeb8d7..93eeb8d7 100644
--- a/Ryujinx.Graphics.Gpu/Shader/ShaderDumper.cs
+++ b/src/Ryujinx.Graphics.Gpu/Shader/ShaderDumper.cs
diff --git a/Ryujinx.Graphics.Gpu/Shader/ShaderSpecializationList.cs b/src/Ryujinx.Graphics.Gpu/Shader/ShaderSpecializationList.cs
index 7d61332e..7d61332e 100644
--- a/Ryujinx.Graphics.Gpu/Shader/ShaderSpecializationList.cs
+++ b/src/Ryujinx.Graphics.Gpu/Shader/ShaderSpecializationList.cs
diff --git a/Ryujinx.Graphics.Gpu/Shader/ShaderSpecializationState.cs b/src/Ryujinx.Graphics.Gpu/Shader/ShaderSpecializationState.cs
index b2c4fccd..b2c4fccd 100644
--- a/Ryujinx.Graphics.Gpu/Shader/ShaderSpecializationState.cs
+++ b/src/Ryujinx.Graphics.Gpu/Shader/ShaderSpecializationState.cs
diff --git a/Ryujinx.Graphics.Gpu/Shader/TransformFeedbackDescriptor.cs b/src/Ryujinx.Graphics.Gpu/Shader/TransformFeedbackDescriptor.cs
index 5baf2a1a..5baf2a1a 100644
--- a/Ryujinx.Graphics.Gpu/Shader/TransformFeedbackDescriptor.cs
+++ b/src/Ryujinx.Graphics.Gpu/Shader/TransformFeedbackDescriptor.cs
diff --git a/Ryujinx.Graphics.Gpu/Synchronization/SynchronizationManager.cs b/src/Ryujinx.Graphics.Gpu/Synchronization/SynchronizationManager.cs
index 968de930..968de930 100644
--- a/Ryujinx.Graphics.Gpu/Synchronization/SynchronizationManager.cs
+++ b/src/Ryujinx.Graphics.Gpu/Synchronization/SynchronizationManager.cs
diff --git a/Ryujinx.Graphics.Gpu/Synchronization/Syncpoint.cs b/src/Ryujinx.Graphics.Gpu/Synchronization/Syncpoint.cs
index 39fb83c0..39fb83c0 100644
--- a/Ryujinx.Graphics.Gpu/Synchronization/Syncpoint.cs
+++ b/src/Ryujinx.Graphics.Gpu/Synchronization/Syncpoint.cs
diff --git a/Ryujinx.Graphics.Gpu/Synchronization/SyncpointWaiterHandle.cs b/src/Ryujinx.Graphics.Gpu/Synchronization/SyncpointWaiterHandle.cs
index dd2a5812..dd2a5812 100644
--- a/Ryujinx.Graphics.Gpu/Synchronization/SyncpointWaiterHandle.cs
+++ b/src/Ryujinx.Graphics.Gpu/Synchronization/SyncpointWaiterHandle.cs
diff --git a/Ryujinx.Graphics.Gpu/Window.cs b/src/Ryujinx.Graphics.Gpu/Window.cs
index 06d0fddf..06d0fddf 100644
--- a/Ryujinx.Graphics.Gpu/Window.cs
+++ b/src/Ryujinx.Graphics.Gpu/Window.cs
diff --git a/Ryujinx.Graphics.Host1x/ClassId.cs b/src/Ryujinx.Graphics.Host1x/ClassId.cs
index dfeadd4c..dfeadd4c 100644
--- a/Ryujinx.Graphics.Host1x/ClassId.cs
+++ b/src/Ryujinx.Graphics.Host1x/ClassId.cs
diff --git a/Ryujinx.Graphics.Host1x/Devices.cs b/src/Ryujinx.Graphics.Host1x/Devices.cs
index 5b3bed6b..5b3bed6b 100644
--- a/Ryujinx.Graphics.Host1x/Devices.cs
+++ b/src/Ryujinx.Graphics.Host1x/Devices.cs
diff --git a/Ryujinx.Graphics.Host1x/Host1xClass.cs b/src/Ryujinx.Graphics.Host1x/Host1xClass.cs
index 1a1297f9..1a1297f9 100644
--- a/Ryujinx.Graphics.Host1x/Host1xClass.cs
+++ b/src/Ryujinx.Graphics.Host1x/Host1xClass.cs
diff --git a/Ryujinx.Graphics.Host1x/Host1xClassRegisters.cs b/src/Ryujinx.Graphics.Host1x/Host1xClassRegisters.cs
index f9f4889b..f9f4889b 100644
--- a/Ryujinx.Graphics.Host1x/Host1xClassRegisters.cs
+++ b/src/Ryujinx.Graphics.Host1x/Host1xClassRegisters.cs
diff --git a/Ryujinx.Graphics.Host1x/Host1xDevice.cs b/src/Ryujinx.Graphics.Host1x/Host1xDevice.cs
index 90dd4fa0..90dd4fa0 100644
--- a/Ryujinx.Graphics.Host1x/Host1xDevice.cs
+++ b/src/Ryujinx.Graphics.Host1x/Host1xDevice.cs
diff --git a/Ryujinx.Graphics.Host1x/OpCode.cs b/src/Ryujinx.Graphics.Host1x/OpCode.cs
index 2ec6034b..2ec6034b 100644
--- a/Ryujinx.Graphics.Host1x/OpCode.cs
+++ b/src/Ryujinx.Graphics.Host1x/OpCode.cs
diff --git a/Ryujinx.Graphics.Host1x/Ryujinx.Graphics.Host1x.csproj b/src/Ryujinx.Graphics.Host1x/Ryujinx.Graphics.Host1x.csproj
index 3cff4061..3cff4061 100644
--- a/Ryujinx.Graphics.Host1x/Ryujinx.Graphics.Host1x.csproj
+++ b/src/Ryujinx.Graphics.Host1x/Ryujinx.Graphics.Host1x.csproj
diff --git a/Ryujinx.Graphics.Host1x/SyncptIncrManager.cs b/src/Ryujinx.Graphics.Host1x/SyncptIncrManager.cs
index 62c49917..62c49917 100644
--- a/Ryujinx.Graphics.Host1x/SyncptIncrManager.cs
+++ b/src/Ryujinx.Graphics.Host1x/SyncptIncrManager.cs
diff --git a/Ryujinx.Graphics.Host1x/ThiDevice.cs b/src/Ryujinx.Graphics.Host1x/ThiDevice.cs
index 259c8836..259c8836 100644
--- a/Ryujinx.Graphics.Host1x/ThiDevice.cs
+++ b/src/Ryujinx.Graphics.Host1x/ThiDevice.cs
diff --git a/Ryujinx.Graphics.Host1x/ThiRegisters.cs b/src/Ryujinx.Graphics.Host1x/ThiRegisters.cs
index 71c48511..71c48511 100644
--- a/Ryujinx.Graphics.Host1x/ThiRegisters.cs
+++ b/src/Ryujinx.Graphics.Host1x/ThiRegisters.cs
diff --git a/Ryujinx.Graphics.Nvdec.FFmpeg/FFmpegContext.cs b/src/Ryujinx.Graphics.Nvdec.FFmpeg/FFmpegContext.cs
index 572ceaaa..572ceaaa 100644
--- a/Ryujinx.Graphics.Nvdec.FFmpeg/FFmpegContext.cs
+++ b/src/Ryujinx.Graphics.Nvdec.FFmpeg/FFmpegContext.cs
diff --git a/Ryujinx.Graphics.Nvdec.FFmpeg/H264/Decoder.cs b/src/Ryujinx.Graphics.Nvdec.FFmpeg/H264/Decoder.cs
index d8b213e5..d8b213e5 100644
--- a/Ryujinx.Graphics.Nvdec.FFmpeg/H264/Decoder.cs
+++ b/src/Ryujinx.Graphics.Nvdec.FFmpeg/H264/Decoder.cs
diff --git a/Ryujinx.Graphics.Nvdec.FFmpeg/H264/H264BitStreamWriter.cs b/src/Ryujinx.Graphics.Nvdec.FFmpeg/H264/H264BitStreamWriter.cs
index 3d3b3293..3d3b3293 100644
--- a/Ryujinx.Graphics.Nvdec.FFmpeg/H264/H264BitStreamWriter.cs
+++ b/src/Ryujinx.Graphics.Nvdec.FFmpeg/H264/H264BitStreamWriter.cs
diff --git a/Ryujinx.Graphics.Nvdec.FFmpeg/H264/SpsAndPpsReconstruction.cs b/src/Ryujinx.Graphics.Nvdec.FFmpeg/H264/SpsAndPpsReconstruction.cs
index 57fb65d5..57fb65d5 100644
--- a/Ryujinx.Graphics.Nvdec.FFmpeg/H264/SpsAndPpsReconstruction.cs
+++ b/src/Ryujinx.Graphics.Nvdec.FFmpeg/H264/SpsAndPpsReconstruction.cs
diff --git a/Ryujinx.Graphics.Nvdec.FFmpeg/Native/AVCodec.cs b/src/Ryujinx.Graphics.Nvdec.FFmpeg/Native/AVCodec.cs
index 46d3ad61..46d3ad61 100644
--- a/Ryujinx.Graphics.Nvdec.FFmpeg/Native/AVCodec.cs
+++ b/src/Ryujinx.Graphics.Nvdec.FFmpeg/Native/AVCodec.cs
diff --git a/Ryujinx.Graphics.Nvdec.FFmpeg/Native/AVCodec501.cs b/src/Ryujinx.Graphics.Nvdec.FFmpeg/Native/AVCodec501.cs
index 47d4969a..47d4969a 100644
--- a/Ryujinx.Graphics.Nvdec.FFmpeg/Native/AVCodec501.cs
+++ b/src/Ryujinx.Graphics.Nvdec.FFmpeg/Native/AVCodec501.cs
diff --git a/Ryujinx.Graphics.Nvdec.FFmpeg/Native/AVCodecContext.cs b/src/Ryujinx.Graphics.Nvdec.FFmpeg/Native/AVCodecContext.cs
index 6c9fbc89..6c9fbc89 100644
--- a/Ryujinx.Graphics.Nvdec.FFmpeg/Native/AVCodecContext.cs
+++ b/src/Ryujinx.Graphics.Nvdec.FFmpeg/Native/AVCodecContext.cs
diff --git a/Ryujinx.Graphics.Nvdec.FFmpeg/Native/AVCodecID.cs b/src/Ryujinx.Graphics.Nvdec.FFmpeg/Native/AVCodecID.cs
index b371de9e..b371de9e 100644
--- a/Ryujinx.Graphics.Nvdec.FFmpeg/Native/AVCodecID.cs
+++ b/src/Ryujinx.Graphics.Nvdec.FFmpeg/Native/AVCodecID.cs
diff --git a/Ryujinx.Graphics.Nvdec.FFmpeg/Native/AVFrame.cs b/src/Ryujinx.Graphics.Nvdec.FFmpeg/Native/AVFrame.cs
index faaf5c7d..faaf5c7d 100644
--- a/Ryujinx.Graphics.Nvdec.FFmpeg/Native/AVFrame.cs
+++ b/src/Ryujinx.Graphics.Nvdec.FFmpeg/Native/AVFrame.cs
diff --git a/Ryujinx.Graphics.Nvdec.FFmpeg/Native/AVLog.cs b/src/Ryujinx.Graphics.Nvdec.FFmpeg/Native/AVLog.cs
index 4224de9e..4224de9e 100644
--- a/Ryujinx.Graphics.Nvdec.FFmpeg/Native/AVLog.cs
+++ b/src/Ryujinx.Graphics.Nvdec.FFmpeg/Native/AVLog.cs
diff --git a/Ryujinx.Graphics.Nvdec.FFmpeg/Native/AVPacket.cs b/src/Ryujinx.Graphics.Nvdec.FFmpeg/Native/AVPacket.cs
index d5b02104..d5b02104 100644
--- a/Ryujinx.Graphics.Nvdec.FFmpeg/Native/AVPacket.cs
+++ b/src/Ryujinx.Graphics.Nvdec.FFmpeg/Native/AVPacket.cs
diff --git a/Ryujinx.Graphics.Nvdec.FFmpeg/Native/AVRational.cs b/src/Ryujinx.Graphics.Nvdec.FFmpeg/Native/AVRational.cs
index cad5fde0..cad5fde0 100644
--- a/Ryujinx.Graphics.Nvdec.FFmpeg/Native/AVRational.cs
+++ b/src/Ryujinx.Graphics.Nvdec.FFmpeg/Native/AVRational.cs
diff --git a/Ryujinx.Graphics.Nvdec.FFmpeg/Native/FFCodec.cs b/src/Ryujinx.Graphics.Nvdec.FFmpeg/Native/FFCodec.cs
index 4df45af4..4df45af4 100644
--- a/Ryujinx.Graphics.Nvdec.FFmpeg/Native/FFCodec.cs
+++ b/src/Ryujinx.Graphics.Nvdec.FFmpeg/Native/FFCodec.cs
diff --git a/Ryujinx.Graphics.Nvdec.FFmpeg/Native/FFCodecLegacy.cs b/src/Ryujinx.Graphics.Nvdec.FFmpeg/Native/FFCodecLegacy.cs
index 910270a5..910270a5 100644
--- a/Ryujinx.Graphics.Nvdec.FFmpeg/Native/FFCodecLegacy.cs
+++ b/src/Ryujinx.Graphics.Nvdec.FFmpeg/Native/FFCodecLegacy.cs
diff --git a/Ryujinx.Graphics.Nvdec.FFmpeg/Native/FFmpegApi.cs b/src/Ryujinx.Graphics.Nvdec.FFmpeg/Native/FFmpegApi.cs
index d173a412..d173a412 100644
--- a/Ryujinx.Graphics.Nvdec.FFmpeg/Native/FFmpegApi.cs
+++ b/src/Ryujinx.Graphics.Nvdec.FFmpeg/Native/FFmpegApi.cs
diff --git a/Ryujinx.Graphics.Nvdec.FFmpeg/Ryujinx.Graphics.Nvdec.FFmpeg.csproj b/src/Ryujinx.Graphics.Nvdec.FFmpeg/Ryujinx.Graphics.Nvdec.FFmpeg.csproj
index bff1e803..bff1e803 100644
--- a/Ryujinx.Graphics.Nvdec.FFmpeg/Ryujinx.Graphics.Nvdec.FFmpeg.csproj
+++ b/src/Ryujinx.Graphics.Nvdec.FFmpeg/Ryujinx.Graphics.Nvdec.FFmpeg.csproj
diff --git a/Ryujinx.Graphics.Nvdec.FFmpeg/Surface.cs b/src/Ryujinx.Graphics.Nvdec.FFmpeg/Surface.cs
index 1ca9d1d5..1ca9d1d5 100644
--- a/Ryujinx.Graphics.Nvdec.FFmpeg/Surface.cs
+++ b/src/Ryujinx.Graphics.Nvdec.FFmpeg/Surface.cs
diff --git a/Ryujinx.Graphics.Nvdec.FFmpeg/Vp8/Decoder.cs b/src/Ryujinx.Graphics.Nvdec.FFmpeg/Vp8/Decoder.cs
index 3570c3ec..3570c3ec 100644
--- a/Ryujinx.Graphics.Nvdec.FFmpeg/Vp8/Decoder.cs
+++ b/src/Ryujinx.Graphics.Nvdec.FFmpeg/Vp8/Decoder.cs
diff --git a/Ryujinx.Graphics.Nvdec.Vp9/BitDepth.cs b/src/Ryujinx.Graphics.Nvdec.Vp9/BitDepth.cs
index b7b70953..b7b70953 100644
--- a/Ryujinx.Graphics.Nvdec.Vp9/BitDepth.cs
+++ b/src/Ryujinx.Graphics.Nvdec.Vp9/BitDepth.cs
diff --git a/Ryujinx.Graphics.Nvdec.Vp9/CodecErr.cs b/src/Ryujinx.Graphics.Nvdec.Vp9/CodecErr.cs
index b695fed5..b695fed5 100644
--- a/Ryujinx.Graphics.Nvdec.Vp9/CodecErr.cs
+++ b/src/Ryujinx.Graphics.Nvdec.Vp9/CodecErr.cs
diff --git a/Ryujinx.Graphics.Nvdec.Vp9/Common/BitUtils.cs b/src/Ryujinx.Graphics.Nvdec.Vp9/Common/BitUtils.cs
index 641188f8..641188f8 100644
--- a/Ryujinx.Graphics.Nvdec.Vp9/Common/BitUtils.cs
+++ b/src/Ryujinx.Graphics.Nvdec.Vp9/Common/BitUtils.cs
diff --git a/Ryujinx.Graphics.Nvdec.Vp9/Common/MemoryAllocator.cs b/src/Ryujinx.Graphics.Nvdec.Vp9/Common/MemoryAllocator.cs
index 473dd904..473dd904 100644
--- a/Ryujinx.Graphics.Nvdec.Vp9/Common/MemoryAllocator.cs
+++ b/src/Ryujinx.Graphics.Nvdec.Vp9/Common/MemoryAllocator.cs
diff --git a/Ryujinx.Graphics.Nvdec.Vp9/Common/MemoryUtil.cs b/src/Ryujinx.Graphics.Nvdec.Vp9/Common/MemoryUtil.cs
index 909a9483..909a9483 100644
--- a/Ryujinx.Graphics.Nvdec.Vp9/Common/MemoryUtil.cs
+++ b/src/Ryujinx.Graphics.Nvdec.Vp9/Common/MemoryUtil.cs
diff --git a/Ryujinx.Graphics.Nvdec.Vp9/Constants.cs b/src/Ryujinx.Graphics.Nvdec.Vp9/Constants.cs
index aaf1d7b9..aaf1d7b9 100644
--- a/Ryujinx.Graphics.Nvdec.Vp9/Constants.cs
+++ b/src/Ryujinx.Graphics.Nvdec.Vp9/Constants.cs
diff --git a/Ryujinx.Graphics.Nvdec.Vp9/DecodeFrame.cs b/src/Ryujinx.Graphics.Nvdec.Vp9/DecodeFrame.cs
index cdd645a3..cdd645a3 100644
--- a/Ryujinx.Graphics.Nvdec.Vp9/DecodeFrame.cs
+++ b/src/Ryujinx.Graphics.Nvdec.Vp9/DecodeFrame.cs
diff --git a/Ryujinx.Graphics.Nvdec.Vp9/DecodeMv.cs b/src/Ryujinx.Graphics.Nvdec.Vp9/DecodeMv.cs
index 3281905c..3281905c 100644
--- a/Ryujinx.Graphics.Nvdec.Vp9/DecodeMv.cs
+++ b/src/Ryujinx.Graphics.Nvdec.Vp9/DecodeMv.cs
diff --git a/Ryujinx.Graphics.Nvdec.Vp9/Decoder.cs b/src/Ryujinx.Graphics.Nvdec.Vp9/Decoder.cs
index acebd8ab..acebd8ab 100644
--- a/Ryujinx.Graphics.Nvdec.Vp9/Decoder.cs
+++ b/src/Ryujinx.Graphics.Nvdec.Vp9/Decoder.cs
diff --git a/Ryujinx.Graphics.Nvdec.Vp9/Detokenize.cs b/src/Ryujinx.Graphics.Nvdec.Vp9/Detokenize.cs
index 52b1b3dc..52b1b3dc 100644
--- a/Ryujinx.Graphics.Nvdec.Vp9/Detokenize.cs
+++ b/src/Ryujinx.Graphics.Nvdec.Vp9/Detokenize.cs
diff --git a/Ryujinx.Graphics.Nvdec.Vp9/Dsp/Convolve.cs b/src/Ryujinx.Graphics.Nvdec.Vp9/Dsp/Convolve.cs
index d49a6bf6..d49a6bf6 100644
--- a/Ryujinx.Graphics.Nvdec.Vp9/Dsp/Convolve.cs
+++ b/src/Ryujinx.Graphics.Nvdec.Vp9/Dsp/Convolve.cs
diff --git a/Ryujinx.Graphics.Nvdec.Vp9/Dsp/Filter.cs b/src/Ryujinx.Graphics.Nvdec.Vp9/Dsp/Filter.cs
index 16962897..16962897 100644
--- a/Ryujinx.Graphics.Nvdec.Vp9/Dsp/Filter.cs
+++ b/src/Ryujinx.Graphics.Nvdec.Vp9/Dsp/Filter.cs
diff --git a/Ryujinx.Graphics.Nvdec.Vp9/Dsp/IntraPred.cs b/src/Ryujinx.Graphics.Nvdec.Vp9/Dsp/IntraPred.cs
index 62b3a9b1..62b3a9b1 100644
--- a/Ryujinx.Graphics.Nvdec.Vp9/Dsp/IntraPred.cs
+++ b/src/Ryujinx.Graphics.Nvdec.Vp9/Dsp/IntraPred.cs
diff --git a/Ryujinx.Graphics.Nvdec.Vp9/Dsp/InvTxfm.cs b/src/Ryujinx.Graphics.Nvdec.Vp9/Dsp/InvTxfm.cs
index 3fc3c72a..3fc3c72a 100644
--- a/Ryujinx.Graphics.Nvdec.Vp9/Dsp/InvTxfm.cs
+++ b/src/Ryujinx.Graphics.Nvdec.Vp9/Dsp/InvTxfm.cs
diff --git a/Ryujinx.Graphics.Nvdec.Vp9/Dsp/Prob.cs b/src/Ryujinx.Graphics.Nvdec.Vp9/Dsp/Prob.cs
index 0d5e8b6e..0d5e8b6e 100644
--- a/Ryujinx.Graphics.Nvdec.Vp9/Dsp/Prob.cs
+++ b/src/Ryujinx.Graphics.Nvdec.Vp9/Dsp/Prob.cs
diff --git a/Ryujinx.Graphics.Nvdec.Vp9/Dsp/Reader.cs b/src/Ryujinx.Graphics.Nvdec.Vp9/Dsp/Reader.cs
index 05095121..05095121 100644
--- a/Ryujinx.Graphics.Nvdec.Vp9/Dsp/Reader.cs
+++ b/src/Ryujinx.Graphics.Nvdec.Vp9/Dsp/Reader.cs
diff --git a/Ryujinx.Graphics.Nvdec.Vp9/Dsp/TxfmCommon.cs b/src/Ryujinx.Graphics.Nvdec.Vp9/Dsp/TxfmCommon.cs
index e041f2e0..e041f2e0 100644
--- a/Ryujinx.Graphics.Nvdec.Vp9/Dsp/TxfmCommon.cs
+++ b/src/Ryujinx.Graphics.Nvdec.Vp9/Dsp/TxfmCommon.cs
diff --git a/Ryujinx.Graphics.Nvdec.Vp9/Idct.cs b/src/Ryujinx.Graphics.Nvdec.Vp9/Idct.cs
index 9fa5842a..9fa5842a 100644
--- a/Ryujinx.Graphics.Nvdec.Vp9/Idct.cs
+++ b/src/Ryujinx.Graphics.Nvdec.Vp9/Idct.cs
diff --git a/Ryujinx.Graphics.Nvdec.Vp9/InternalErrorException.cs b/src/Ryujinx.Graphics.Nvdec.Vp9/InternalErrorException.cs
index baa0ab99..baa0ab99 100644
--- a/Ryujinx.Graphics.Nvdec.Vp9/InternalErrorException.cs
+++ b/src/Ryujinx.Graphics.Nvdec.Vp9/InternalErrorException.cs
diff --git a/Ryujinx.Graphics.Nvdec.Vp9/InternalErrorInfo.cs b/src/Ryujinx.Graphics.Nvdec.Vp9/InternalErrorInfo.cs
index 68e9cb4b..68e9cb4b 100644
--- a/Ryujinx.Graphics.Nvdec.Vp9/InternalErrorInfo.cs
+++ b/src/Ryujinx.Graphics.Nvdec.Vp9/InternalErrorInfo.cs
diff --git a/Ryujinx.Graphics.Nvdec.Vp9/LoopFilter.cs b/src/Ryujinx.Graphics.Nvdec.Vp9/LoopFilter.cs
index 9ecccc64..9ecccc64 100644
--- a/Ryujinx.Graphics.Nvdec.Vp9/LoopFilter.cs
+++ b/src/Ryujinx.Graphics.Nvdec.Vp9/LoopFilter.cs
diff --git a/Ryujinx.Graphics.Nvdec.Vp9/Luts.cs b/src/Ryujinx.Graphics.Nvdec.Vp9/Luts.cs
index 140181ef..140181ef 100644
--- a/Ryujinx.Graphics.Nvdec.Vp9/Luts.cs
+++ b/src/Ryujinx.Graphics.Nvdec.Vp9/Luts.cs
diff --git a/Ryujinx.Graphics.Nvdec.Vp9/PredCommon.cs b/src/Ryujinx.Graphics.Nvdec.Vp9/PredCommon.cs
index a9da1042..a9da1042 100644
--- a/Ryujinx.Graphics.Nvdec.Vp9/PredCommon.cs
+++ b/src/Ryujinx.Graphics.Nvdec.Vp9/PredCommon.cs
diff --git a/Ryujinx.Graphics.Nvdec.Vp9/QuantCommon.cs b/src/Ryujinx.Graphics.Nvdec.Vp9/QuantCommon.cs
index 5c52c32f..5c52c32f 100644
--- a/Ryujinx.Graphics.Nvdec.Vp9/QuantCommon.cs
+++ b/src/Ryujinx.Graphics.Nvdec.Vp9/QuantCommon.cs
diff --git a/Ryujinx.Graphics.Nvdec.Vp9/ReconInter.cs b/src/Ryujinx.Graphics.Nvdec.Vp9/ReconInter.cs
index a4c295e5..a4c295e5 100644
--- a/Ryujinx.Graphics.Nvdec.Vp9/ReconInter.cs
+++ b/src/Ryujinx.Graphics.Nvdec.Vp9/ReconInter.cs
diff --git a/Ryujinx.Graphics.Nvdec.Vp9/ReconIntra.cs b/src/Ryujinx.Graphics.Nvdec.Vp9/ReconIntra.cs
index e346c01d..e346c01d 100644
--- a/Ryujinx.Graphics.Nvdec.Vp9/ReconIntra.cs
+++ b/src/Ryujinx.Graphics.Nvdec.Vp9/ReconIntra.cs
diff --git a/Ryujinx.Graphics.Nvdec.Vp9/Ryujinx.Graphics.Nvdec.Vp9.csproj b/src/Ryujinx.Graphics.Nvdec.Vp9/Ryujinx.Graphics.Nvdec.Vp9.csproj
index bff1e803..bff1e803 100644
--- a/Ryujinx.Graphics.Nvdec.Vp9/Ryujinx.Graphics.Nvdec.Vp9.csproj
+++ b/src/Ryujinx.Graphics.Nvdec.Vp9/Ryujinx.Graphics.Nvdec.Vp9.csproj
diff --git a/Ryujinx.Graphics.Nvdec.Vp9/TileBuffer.cs b/src/Ryujinx.Graphics.Nvdec.Vp9/TileBuffer.cs
index c5a25e6b..c5a25e6b 100644
--- a/Ryujinx.Graphics.Nvdec.Vp9/TileBuffer.cs
+++ b/src/Ryujinx.Graphics.Nvdec.Vp9/TileBuffer.cs
diff --git a/Ryujinx.Graphics.Nvdec.Vp9/TileWorkerData.cs b/src/Ryujinx.Graphics.Nvdec.Vp9/TileWorkerData.cs
index 333a077a..333a077a 100644
--- a/Ryujinx.Graphics.Nvdec.Vp9/TileWorkerData.cs
+++ b/src/Ryujinx.Graphics.Nvdec.Vp9/TileWorkerData.cs
diff --git a/Ryujinx.Graphics.Nvdec.Vp9/Types/BModeInfo.cs b/src/Ryujinx.Graphics.Nvdec.Vp9/Types/BModeInfo.cs
index 9e1cd8b4..9e1cd8b4 100644
--- a/Ryujinx.Graphics.Nvdec.Vp9/Types/BModeInfo.cs
+++ b/src/Ryujinx.Graphics.Nvdec.Vp9/Types/BModeInfo.cs
diff --git a/Ryujinx.Graphics.Nvdec.Vp9/Types/BlockSize.cs b/src/Ryujinx.Graphics.Nvdec.Vp9/Types/BlockSize.cs
index 22a48e20..22a48e20 100644
--- a/Ryujinx.Graphics.Nvdec.Vp9/Types/BlockSize.cs
+++ b/src/Ryujinx.Graphics.Nvdec.Vp9/Types/BlockSize.cs
diff --git a/Ryujinx.Graphics.Nvdec.Vp9/Types/Buf2D.cs b/src/Ryujinx.Graphics.Nvdec.Vp9/Types/Buf2D.cs
index 180d5e34..180d5e34 100644
--- a/Ryujinx.Graphics.Nvdec.Vp9/Types/Buf2D.cs
+++ b/src/Ryujinx.Graphics.Nvdec.Vp9/Types/Buf2D.cs
diff --git a/Ryujinx.Graphics.Nvdec.Vp9/Types/FrameType.cs b/src/Ryujinx.Graphics.Nvdec.Vp9/Types/FrameType.cs
index a783999e..a783999e 100644
--- a/Ryujinx.Graphics.Nvdec.Vp9/Types/FrameType.cs
+++ b/src/Ryujinx.Graphics.Nvdec.Vp9/Types/FrameType.cs
diff --git a/Ryujinx.Graphics.Nvdec.Vp9/Types/LoopFilter.cs b/src/Ryujinx.Graphics.Nvdec.Vp9/Types/LoopFilter.cs
index 8dc33bda..8dc33bda 100644
--- a/Ryujinx.Graphics.Nvdec.Vp9/Types/LoopFilter.cs
+++ b/src/Ryujinx.Graphics.Nvdec.Vp9/Types/LoopFilter.cs
diff --git a/Ryujinx.Graphics.Nvdec.Vp9/Types/LoopFilterInfoN.cs b/src/Ryujinx.Graphics.Nvdec.Vp9/Types/LoopFilterInfoN.cs
index 0ac38a7b..0ac38a7b 100644
--- a/Ryujinx.Graphics.Nvdec.Vp9/Types/LoopFilterInfoN.cs
+++ b/src/Ryujinx.Graphics.Nvdec.Vp9/Types/LoopFilterInfoN.cs
diff --git a/Ryujinx.Graphics.Nvdec.Vp9/Types/LoopFilterMask.cs b/src/Ryujinx.Graphics.Nvdec.Vp9/Types/LoopFilterMask.cs
index 4aff843a..4aff843a 100644
--- a/Ryujinx.Graphics.Nvdec.Vp9/Types/LoopFilterMask.cs
+++ b/src/Ryujinx.Graphics.Nvdec.Vp9/Types/LoopFilterMask.cs
diff --git a/Ryujinx.Graphics.Nvdec.Vp9/Types/LoopFilterThresh.cs b/src/Ryujinx.Graphics.Nvdec.Vp9/Types/LoopFilterThresh.cs
index edd79af4..edd79af4 100644
--- a/Ryujinx.Graphics.Nvdec.Vp9/Types/LoopFilterThresh.cs
+++ b/src/Ryujinx.Graphics.Nvdec.Vp9/Types/LoopFilterThresh.cs
diff --git a/Ryujinx.Graphics.Nvdec.Vp9/Types/MacroBlockD.cs b/src/Ryujinx.Graphics.Nvdec.Vp9/Types/MacroBlockD.cs
index f1111528..f1111528 100644
--- a/Ryujinx.Graphics.Nvdec.Vp9/Types/MacroBlockD.cs
+++ b/src/Ryujinx.Graphics.Nvdec.Vp9/Types/MacroBlockD.cs
diff --git a/Ryujinx.Graphics.Nvdec.Vp9/Types/MacroBlockDPlane.cs b/src/Ryujinx.Graphics.Nvdec.Vp9/Types/MacroBlockDPlane.cs
index ae4ec6f4..ae4ec6f4 100644
--- a/Ryujinx.Graphics.Nvdec.Vp9/Types/MacroBlockDPlane.cs
+++ b/src/Ryujinx.Graphics.Nvdec.Vp9/Types/MacroBlockDPlane.cs
diff --git a/Ryujinx.Graphics.Nvdec.Vp9/Types/ModeInfo.cs b/src/Ryujinx.Graphics.Nvdec.Vp9/Types/ModeInfo.cs
index 8ef281d8..8ef281d8 100644
--- a/Ryujinx.Graphics.Nvdec.Vp9/Types/ModeInfo.cs
+++ b/src/Ryujinx.Graphics.Nvdec.Vp9/Types/ModeInfo.cs
diff --git a/Ryujinx.Graphics.Nvdec.Vp9/Types/MotionVectorContext.cs b/src/Ryujinx.Graphics.Nvdec.Vp9/Types/MotionVectorContext.cs
index 319c8dba..319c8dba 100644
--- a/Ryujinx.Graphics.Nvdec.Vp9/Types/MotionVectorContext.cs
+++ b/src/Ryujinx.Graphics.Nvdec.Vp9/Types/MotionVectorContext.cs
diff --git a/Ryujinx.Graphics.Nvdec.Vp9/Types/Mv.cs b/src/Ryujinx.Graphics.Nvdec.Vp9/Types/Mv.cs
index 815bbb32..815bbb32 100644
--- a/Ryujinx.Graphics.Nvdec.Vp9/Types/Mv.cs
+++ b/src/Ryujinx.Graphics.Nvdec.Vp9/Types/Mv.cs
diff --git a/Ryujinx.Graphics.Nvdec.Vp9/Types/Mv32.cs b/src/Ryujinx.Graphics.Nvdec.Vp9/Types/Mv32.cs
index fb25d18e..fb25d18e 100644
--- a/Ryujinx.Graphics.Nvdec.Vp9/Types/Mv32.cs
+++ b/src/Ryujinx.Graphics.Nvdec.Vp9/Types/Mv32.cs
diff --git a/Ryujinx.Graphics.Nvdec.Vp9/Types/MvClassType.cs b/src/Ryujinx.Graphics.Nvdec.Vp9/Types/MvClassType.cs
index 68a0b59a..68a0b59a 100644
--- a/Ryujinx.Graphics.Nvdec.Vp9/Types/MvClassType.cs
+++ b/src/Ryujinx.Graphics.Nvdec.Vp9/Types/MvClassType.cs
diff --git a/Ryujinx.Graphics.Nvdec.Vp9/Types/MvJointType.cs b/src/Ryujinx.Graphics.Nvdec.Vp9/Types/MvJointType.cs
index a20cb6d0..a20cb6d0 100644
--- a/Ryujinx.Graphics.Nvdec.Vp9/Types/MvJointType.cs
+++ b/src/Ryujinx.Graphics.Nvdec.Vp9/Types/MvJointType.cs
diff --git a/Ryujinx.Graphics.Nvdec.Vp9/Types/MvRef.cs b/src/Ryujinx.Graphics.Nvdec.Vp9/Types/MvRef.cs
index 71949a09..71949a09 100644
--- a/Ryujinx.Graphics.Nvdec.Vp9/Types/MvRef.cs
+++ b/src/Ryujinx.Graphics.Nvdec.Vp9/Types/MvRef.cs
diff --git a/Ryujinx.Graphics.Nvdec.Vp9/Types/PartitionType.cs b/src/Ryujinx.Graphics.Nvdec.Vp9/Types/PartitionType.cs
index 096f9818..096f9818 100644
--- a/Ryujinx.Graphics.Nvdec.Vp9/Types/PartitionType.cs
+++ b/src/Ryujinx.Graphics.Nvdec.Vp9/Types/PartitionType.cs
diff --git a/Ryujinx.Graphics.Nvdec.Vp9/Types/PlaneType.cs b/src/Ryujinx.Graphics.Nvdec.Vp9/Types/PlaneType.cs
index 790aa2a0..790aa2a0 100644
--- a/Ryujinx.Graphics.Nvdec.Vp9/Types/PlaneType.cs
+++ b/src/Ryujinx.Graphics.Nvdec.Vp9/Types/PlaneType.cs
diff --git a/Ryujinx.Graphics.Nvdec.Vp9/Types/Position.cs b/src/Ryujinx.Graphics.Nvdec.Vp9/Types/Position.cs
index 0d3b56f6..0d3b56f6 100644
--- a/Ryujinx.Graphics.Nvdec.Vp9/Types/Position.cs
+++ b/src/Ryujinx.Graphics.Nvdec.Vp9/Types/Position.cs
diff --git a/Ryujinx.Graphics.Nvdec.Vp9/Types/PredictionMode.cs b/src/Ryujinx.Graphics.Nvdec.Vp9/Types/PredictionMode.cs
index bbb9be9a..bbb9be9a 100644
--- a/Ryujinx.Graphics.Nvdec.Vp9/Types/PredictionMode.cs
+++ b/src/Ryujinx.Graphics.Nvdec.Vp9/Types/PredictionMode.cs
diff --git a/Ryujinx.Graphics.Nvdec.Vp9/Types/RefBuffer.cs b/src/Ryujinx.Graphics.Nvdec.Vp9/Types/RefBuffer.cs
index 9942dd05..9942dd05 100644
--- a/Ryujinx.Graphics.Nvdec.Vp9/Types/RefBuffer.cs
+++ b/src/Ryujinx.Graphics.Nvdec.Vp9/Types/RefBuffer.cs
diff --git a/Ryujinx.Graphics.Nvdec.Vp9/Types/ReferenceMode.cs b/src/Ryujinx.Graphics.Nvdec.Vp9/Types/ReferenceMode.cs
index 7cbf9f4e..7cbf9f4e 100644
--- a/Ryujinx.Graphics.Nvdec.Vp9/Types/ReferenceMode.cs
+++ b/src/Ryujinx.Graphics.Nvdec.Vp9/Types/ReferenceMode.cs
diff --git a/Ryujinx.Graphics.Nvdec.Vp9/Types/ScaleFactors.cs b/src/Ryujinx.Graphics.Nvdec.Vp9/Types/ScaleFactors.cs
index 970f9680..970f9680 100644
--- a/Ryujinx.Graphics.Nvdec.Vp9/Types/ScaleFactors.cs
+++ b/src/Ryujinx.Graphics.Nvdec.Vp9/Types/ScaleFactors.cs
diff --git a/Ryujinx.Graphics.Nvdec.Vp9/Types/SegLvlFeatures.cs b/src/Ryujinx.Graphics.Nvdec.Vp9/Types/SegLvlFeatures.cs
index c3ea3fd8..c3ea3fd8 100644
--- a/Ryujinx.Graphics.Nvdec.Vp9/Types/SegLvlFeatures.cs
+++ b/src/Ryujinx.Graphics.Nvdec.Vp9/Types/SegLvlFeatures.cs
diff --git a/Ryujinx.Graphics.Nvdec.Vp9/Types/Segmentation.cs b/src/Ryujinx.Graphics.Nvdec.Vp9/Types/Segmentation.cs
index 53d1f2cc..53d1f2cc 100644
--- a/Ryujinx.Graphics.Nvdec.Vp9/Types/Segmentation.cs
+++ b/src/Ryujinx.Graphics.Nvdec.Vp9/Types/Segmentation.cs
diff --git a/Ryujinx.Graphics.Nvdec.Vp9/Types/Surface.cs b/src/Ryujinx.Graphics.Nvdec.Vp9/Types/Surface.cs
index d5b51bc2..d5b51bc2 100644
--- a/Ryujinx.Graphics.Nvdec.Vp9/Types/Surface.cs
+++ b/src/Ryujinx.Graphics.Nvdec.Vp9/Types/Surface.cs
diff --git a/Ryujinx.Graphics.Nvdec.Vp9/Types/TileInfo.cs b/src/Ryujinx.Graphics.Nvdec.Vp9/Types/TileInfo.cs
index 67289c47..67289c47 100644
--- a/Ryujinx.Graphics.Nvdec.Vp9/Types/TileInfo.cs
+++ b/src/Ryujinx.Graphics.Nvdec.Vp9/Types/TileInfo.cs
diff --git a/Ryujinx.Graphics.Nvdec.Vp9/Types/TxMode.cs b/src/Ryujinx.Graphics.Nvdec.Vp9/Types/TxMode.cs
index db914525..db914525 100644
--- a/Ryujinx.Graphics.Nvdec.Vp9/Types/TxMode.cs
+++ b/src/Ryujinx.Graphics.Nvdec.Vp9/Types/TxMode.cs
diff --git a/Ryujinx.Graphics.Nvdec.Vp9/Types/TxSize.cs b/src/Ryujinx.Graphics.Nvdec.Vp9/Types/TxSize.cs
index 994deb2c..994deb2c 100644
--- a/Ryujinx.Graphics.Nvdec.Vp9/Types/TxSize.cs
+++ b/src/Ryujinx.Graphics.Nvdec.Vp9/Types/TxSize.cs
diff --git a/Ryujinx.Graphics.Nvdec.Vp9/Types/TxType.cs b/src/Ryujinx.Graphics.Nvdec.Vp9/Types/TxType.cs
index dbf7251c..dbf7251c 100644
--- a/Ryujinx.Graphics.Nvdec.Vp9/Types/TxType.cs
+++ b/src/Ryujinx.Graphics.Nvdec.Vp9/Types/TxType.cs
diff --git a/Ryujinx.Graphics.Nvdec.Vp9/Types/Vp9Common.cs b/src/Ryujinx.Graphics.Nvdec.Vp9/Types/Vp9Common.cs
index faadd349..faadd349 100644
--- a/Ryujinx.Graphics.Nvdec.Vp9/Types/Vp9Common.cs
+++ b/src/Ryujinx.Graphics.Nvdec.Vp9/Types/Vp9Common.cs
diff --git a/Ryujinx.Graphics.Nvdec/ApplicationId.cs b/src/Ryujinx.Graphics.Nvdec/ApplicationId.cs
index ada12f8d..ada12f8d 100644
--- a/Ryujinx.Graphics.Nvdec/ApplicationId.cs
+++ b/src/Ryujinx.Graphics.Nvdec/ApplicationId.cs
diff --git a/Ryujinx.Graphics.Nvdec/H264Decoder.cs b/src/Ryujinx.Graphics.Nvdec/H264Decoder.cs
index ecc7dbc7..ecc7dbc7 100644
--- a/Ryujinx.Graphics.Nvdec/H264Decoder.cs
+++ b/src/Ryujinx.Graphics.Nvdec/H264Decoder.cs
diff --git a/Ryujinx.Graphics.Nvdec/Image/SurfaceCache.cs b/src/Ryujinx.Graphics.Nvdec/Image/SurfaceCache.cs
index dc119673..dc119673 100644
--- a/Ryujinx.Graphics.Nvdec/Image/SurfaceCache.cs
+++ b/src/Ryujinx.Graphics.Nvdec/Image/SurfaceCache.cs
diff --git a/Ryujinx.Graphics.Nvdec/Image/SurfaceCommon.cs b/src/Ryujinx.Graphics.Nvdec/Image/SurfaceCommon.cs
index 6087f5b1..6087f5b1 100644
--- a/Ryujinx.Graphics.Nvdec/Image/SurfaceCommon.cs
+++ b/src/Ryujinx.Graphics.Nvdec/Image/SurfaceCommon.cs
diff --git a/Ryujinx.Graphics.Nvdec/Image/SurfaceReader.cs b/src/Ryujinx.Graphics.Nvdec/Image/SurfaceReader.cs
index 039a2583..039a2583 100644
--- a/Ryujinx.Graphics.Nvdec/Image/SurfaceReader.cs
+++ b/src/Ryujinx.Graphics.Nvdec/Image/SurfaceReader.cs
diff --git a/Ryujinx.Graphics.Nvdec/Image/SurfaceWriter.cs b/src/Ryujinx.Graphics.Nvdec/Image/SurfaceWriter.cs
index cc5c251b..cc5c251b 100644
--- a/Ryujinx.Graphics.Nvdec/Image/SurfaceWriter.cs
+++ b/src/Ryujinx.Graphics.Nvdec/Image/SurfaceWriter.cs
diff --git a/Ryujinx.Graphics.Nvdec/MemoryExtensions.cs b/src/Ryujinx.Graphics.Nvdec/MemoryExtensions.cs
index 2855a8c7..2855a8c7 100644
--- a/Ryujinx.Graphics.Nvdec/MemoryExtensions.cs
+++ b/src/Ryujinx.Graphics.Nvdec/MemoryExtensions.cs
diff --git a/Ryujinx.Graphics.Nvdec/NvdecDecoderContext.cs b/src/Ryujinx.Graphics.Nvdec/NvdecDecoderContext.cs
index 54934bc5..54934bc5 100644
--- a/Ryujinx.Graphics.Nvdec/NvdecDecoderContext.cs
+++ b/src/Ryujinx.Graphics.Nvdec/NvdecDecoderContext.cs
diff --git a/Ryujinx.Graphics.Nvdec/NvdecDevice.cs b/src/Ryujinx.Graphics.Nvdec/NvdecDevice.cs
index ef8185f4..ef8185f4 100644
--- a/Ryujinx.Graphics.Nvdec/NvdecDevice.cs
+++ b/src/Ryujinx.Graphics.Nvdec/NvdecDevice.cs
diff --git a/Ryujinx.Graphics.Nvdec/NvdecRegisters.cs b/src/Ryujinx.Graphics.Nvdec/NvdecRegisters.cs
index cf867783..cf867783 100644
--- a/Ryujinx.Graphics.Nvdec/NvdecRegisters.cs
+++ b/src/Ryujinx.Graphics.Nvdec/NvdecRegisters.cs
diff --git a/Ryujinx.Graphics.Nvdec/NvdecStatus.cs b/src/Ryujinx.Graphics.Nvdec/NvdecStatus.cs
index 0712af88..0712af88 100644
--- a/Ryujinx.Graphics.Nvdec/NvdecStatus.cs
+++ b/src/Ryujinx.Graphics.Nvdec/NvdecStatus.cs
diff --git a/Ryujinx.Graphics.Nvdec/ResourceManager.cs b/src/Ryujinx.Graphics.Nvdec/ResourceManager.cs
index 08d24258..08d24258 100644
--- a/Ryujinx.Graphics.Nvdec/ResourceManager.cs
+++ b/src/Ryujinx.Graphics.Nvdec/ResourceManager.cs
diff --git a/Ryujinx.Graphics.Nvdec/Ryujinx.Graphics.Nvdec.csproj b/src/Ryujinx.Graphics.Nvdec/Ryujinx.Graphics.Nvdec.csproj
index bfba98a7..bfba98a7 100644
--- a/Ryujinx.Graphics.Nvdec/Ryujinx.Graphics.Nvdec.csproj
+++ b/src/Ryujinx.Graphics.Nvdec/Ryujinx.Graphics.Nvdec.csproj
diff --git a/Ryujinx.Graphics.Nvdec/Types/H264/PictureInfo.cs b/src/Ryujinx.Graphics.Nvdec/Types/H264/PictureInfo.cs
index 7c779dff..7c779dff 100644
--- a/Ryujinx.Graphics.Nvdec/Types/H264/PictureInfo.cs
+++ b/src/Ryujinx.Graphics.Nvdec/Types/H264/PictureInfo.cs
diff --git a/Ryujinx.Graphics.Nvdec/Types/H264/ReferenceFrame.cs b/src/Ryujinx.Graphics.Nvdec/Types/H264/ReferenceFrame.cs
index d205a47a..d205a47a 100644
--- a/Ryujinx.Graphics.Nvdec/Types/H264/ReferenceFrame.cs
+++ b/src/Ryujinx.Graphics.Nvdec/Types/H264/ReferenceFrame.cs
diff --git a/Ryujinx.Graphics.Nvdec/Types/Vp8/PictureInfo.cs b/src/Ryujinx.Graphics.Nvdec/Types/Vp8/PictureInfo.cs
index 844f2103..844f2103 100644
--- a/Ryujinx.Graphics.Nvdec/Types/Vp8/PictureInfo.cs
+++ b/src/Ryujinx.Graphics.Nvdec/Types/Vp8/PictureInfo.cs
diff --git a/Ryujinx.Graphics.Nvdec/Types/Vp9/BackwardUpdates.cs b/src/Ryujinx.Graphics.Nvdec/Types/Vp9/BackwardUpdates.cs
index 661e6cdd..661e6cdd 100644
--- a/Ryujinx.Graphics.Nvdec/Types/Vp9/BackwardUpdates.cs
+++ b/src/Ryujinx.Graphics.Nvdec/Types/Vp9/BackwardUpdates.cs
diff --git a/Ryujinx.Graphics.Nvdec/Types/Vp9/EntropyProbs.cs b/src/Ryujinx.Graphics.Nvdec/Types/Vp9/EntropyProbs.cs
index b2858d2d..b2858d2d 100644
--- a/Ryujinx.Graphics.Nvdec/Types/Vp9/EntropyProbs.cs
+++ b/src/Ryujinx.Graphics.Nvdec/Types/Vp9/EntropyProbs.cs
diff --git a/Ryujinx.Graphics.Nvdec/Types/Vp9/FrameFlags.cs b/src/Ryujinx.Graphics.Nvdec/Types/Vp9/FrameFlags.cs
index 88f1ac20..88f1ac20 100644
--- a/Ryujinx.Graphics.Nvdec/Types/Vp9/FrameFlags.cs
+++ b/src/Ryujinx.Graphics.Nvdec/Types/Vp9/FrameFlags.cs
diff --git a/Ryujinx.Graphics.Nvdec/Types/Vp9/FrameSize.cs b/src/Ryujinx.Graphics.Nvdec/Types/Vp9/FrameSize.cs
index d449ec4d..d449ec4d 100644
--- a/Ryujinx.Graphics.Nvdec/Types/Vp9/FrameSize.cs
+++ b/src/Ryujinx.Graphics.Nvdec/Types/Vp9/FrameSize.cs
diff --git a/Ryujinx.Graphics.Nvdec/Types/Vp9/FrameStats.cs b/src/Ryujinx.Graphics.Nvdec/Types/Vp9/FrameStats.cs
index 26aab506..26aab506 100644
--- a/Ryujinx.Graphics.Nvdec/Types/Vp9/FrameStats.cs
+++ b/src/Ryujinx.Graphics.Nvdec/Types/Vp9/FrameStats.cs
diff --git a/Ryujinx.Graphics.Nvdec/Types/Vp9/LoopFilter.cs b/src/Ryujinx.Graphics.Nvdec/Types/Vp9/LoopFilter.cs
index 7cb0fd7a..7cb0fd7a 100644
--- a/Ryujinx.Graphics.Nvdec/Types/Vp9/LoopFilter.cs
+++ b/src/Ryujinx.Graphics.Nvdec/Types/Vp9/LoopFilter.cs
diff --git a/Ryujinx.Graphics.Nvdec/Types/Vp9/PictureInfo.cs b/src/Ryujinx.Graphics.Nvdec/Types/Vp9/PictureInfo.cs
index 7d06f747..7d06f747 100644
--- a/Ryujinx.Graphics.Nvdec/Types/Vp9/PictureInfo.cs
+++ b/src/Ryujinx.Graphics.Nvdec/Types/Vp9/PictureInfo.cs
diff --git a/Ryujinx.Graphics.Nvdec/Types/Vp9/Segmentation.cs b/src/Ryujinx.Graphics.Nvdec/Types/Vp9/Segmentation.cs
index f6c4f0b1..f6c4f0b1 100644
--- a/Ryujinx.Graphics.Nvdec/Types/Vp9/Segmentation.cs
+++ b/src/Ryujinx.Graphics.Nvdec/Types/Vp9/Segmentation.cs
diff --git a/Ryujinx.Graphics.Nvdec/Vp8Decoder.cs b/src/Ryujinx.Graphics.Nvdec/Vp8Decoder.cs
index cce9a574..cce9a574 100644
--- a/Ryujinx.Graphics.Nvdec/Vp8Decoder.cs
+++ b/src/Ryujinx.Graphics.Nvdec/Vp8Decoder.cs
diff --git a/Ryujinx.Graphics.Nvdec/Vp9Decoder.cs b/src/Ryujinx.Graphics.Nvdec/Vp9Decoder.cs
index 9bb3529e..9bb3529e 100644
--- a/Ryujinx.Graphics.Nvdec/Vp9Decoder.cs
+++ b/src/Ryujinx.Graphics.Nvdec/Vp9Decoder.cs
diff --git a/Ryujinx.Graphics.OpenGL/BackgroundContextWorker.cs b/src/Ryujinx.Graphics.OpenGL/BackgroundContextWorker.cs
index 764ea715..764ea715 100644
--- a/Ryujinx.Graphics.OpenGL/BackgroundContextWorker.cs
+++ b/src/Ryujinx.Graphics.OpenGL/BackgroundContextWorker.cs
diff --git a/Ryujinx.Graphics.OpenGL/Buffer.cs b/src/Ryujinx.Graphics.OpenGL/Buffer.cs
index af7d191a..af7d191a 100644
--- a/Ryujinx.Graphics.OpenGL/Buffer.cs
+++ b/src/Ryujinx.Graphics.OpenGL/Buffer.cs
diff --git a/Ryujinx.Graphics.OpenGL/Constants.cs b/src/Ryujinx.Graphics.OpenGL/Constants.cs
index 8817011a..8817011a 100644
--- a/Ryujinx.Graphics.OpenGL/Constants.cs
+++ b/src/Ryujinx.Graphics.OpenGL/Constants.cs
diff --git a/Ryujinx.Graphics.OpenGL/Debugger.cs b/src/Ryujinx.Graphics.OpenGL/Debugger.cs
index 9f67cfc6..9f67cfc6 100644
--- a/Ryujinx.Graphics.OpenGL/Debugger.cs
+++ b/src/Ryujinx.Graphics.OpenGL/Debugger.cs
diff --git a/Ryujinx.Graphics.OpenGL/DrawTextureEmulation.cs b/src/Ryujinx.Graphics.OpenGL/DrawTextureEmulation.cs
index 509e20fe..509e20fe 100644
--- a/Ryujinx.Graphics.OpenGL/DrawTextureEmulation.cs
+++ b/src/Ryujinx.Graphics.OpenGL/DrawTextureEmulation.cs
diff --git a/Ryujinx.Graphics.OpenGL/Effects/FsrScalingFilter.cs b/src/Ryujinx.Graphics.OpenGL/Effects/FsrScalingFilter.cs
index 16678bb7..16678bb7 100644
--- a/Ryujinx.Graphics.OpenGL/Effects/FsrScalingFilter.cs
+++ b/src/Ryujinx.Graphics.OpenGL/Effects/FsrScalingFilter.cs
diff --git a/Ryujinx.Graphics.OpenGL/Effects/FxaaPostProcessingEffect.cs b/src/Ryujinx.Graphics.OpenGL/Effects/FxaaPostProcessingEffect.cs
index 3a2d685b..3a2d685b 100644
--- a/Ryujinx.Graphics.OpenGL/Effects/FxaaPostProcessingEffect.cs
+++ b/src/Ryujinx.Graphics.OpenGL/Effects/FxaaPostProcessingEffect.cs
diff --git a/Ryujinx.Graphics.OpenGL/Effects/IPostProcessingEffect.cs b/src/Ryujinx.Graphics.OpenGL/Effects/IPostProcessingEffect.cs
index 7a045a02..7a045a02 100644
--- a/Ryujinx.Graphics.OpenGL/Effects/IPostProcessingEffect.cs
+++ b/src/Ryujinx.Graphics.OpenGL/Effects/IPostProcessingEffect.cs
diff --git a/Ryujinx.Graphics.OpenGL/Effects/IScalingFilter.cs b/src/Ryujinx.Graphics.OpenGL/Effects/IScalingFilter.cs
index e1e1b2c1..e1e1b2c1 100644
--- a/Ryujinx.Graphics.OpenGL/Effects/IScalingFilter.cs
+++ b/src/Ryujinx.Graphics.OpenGL/Effects/IScalingFilter.cs
diff --git a/Ryujinx.Graphics.OpenGL/Effects/ShaderHelper.cs b/src/Ryujinx.Graphics.OpenGL/Effects/ShaderHelper.cs
index 72c5a98f..72c5a98f 100644
--- a/Ryujinx.Graphics.OpenGL/Effects/ShaderHelper.cs
+++ b/src/Ryujinx.Graphics.OpenGL/Effects/ShaderHelper.cs
diff --git a/Ryujinx.Graphics.OpenGL/Effects/Shaders/ffx_a.h b/src/Ryujinx.Graphics.OpenGL/Effects/Shaders/ffx_a.h
index d04bff55..d04bff55 100644
--- a/Ryujinx.Graphics.OpenGL/Effects/Shaders/ffx_a.h
+++ b/src/Ryujinx.Graphics.OpenGL/Effects/Shaders/ffx_a.h
diff --git a/Ryujinx.Graphics.OpenGL/Effects/Shaders/ffx_fsr1.h b/src/Ryujinx.Graphics.OpenGL/Effects/Shaders/ffx_fsr1.h
index 4e0b3d54..4e0b3d54 100644
--- a/Ryujinx.Graphics.OpenGL/Effects/Shaders/ffx_fsr1.h
+++ b/src/Ryujinx.Graphics.OpenGL/Effects/Shaders/ffx_fsr1.h
diff --git a/Ryujinx.Graphics.OpenGL/Effects/Shaders/fsr_scaling.glsl b/src/Ryujinx.Graphics.OpenGL/Effects/Shaders/fsr_scaling.glsl
index 8e8755db..8e8755db 100644
--- a/Ryujinx.Graphics.OpenGL/Effects/Shaders/fsr_scaling.glsl
+++ b/src/Ryujinx.Graphics.OpenGL/Effects/Shaders/fsr_scaling.glsl
diff --git a/Ryujinx.Graphics.OpenGL/Effects/Shaders/fsr_sharpening.glsl b/src/Ryujinx.Graphics.OpenGL/Effects/Shaders/fsr_sharpening.glsl
index d3b98729..d3b98729 100644
--- a/Ryujinx.Graphics.OpenGL/Effects/Shaders/fsr_sharpening.glsl
+++ b/src/Ryujinx.Graphics.OpenGL/Effects/Shaders/fsr_sharpening.glsl
diff --git a/Ryujinx.Graphics.OpenGL/Effects/Shaders/fxaa.glsl b/src/Ryujinx.Graphics.OpenGL/Effects/Shaders/fxaa.glsl
index 8bdcbca6..8bdcbca6 100644
--- a/Ryujinx.Graphics.OpenGL/Effects/Shaders/fxaa.glsl
+++ b/src/Ryujinx.Graphics.OpenGL/Effects/Shaders/fxaa.glsl
diff --git a/Ryujinx.Graphics.OpenGL/Effects/Shaders/smaa.hlsl b/src/Ryujinx.Graphics.OpenGL/Effects/Shaders/smaa.hlsl
index 2201f78c..2201f78c 100644
--- a/Ryujinx.Graphics.OpenGL/Effects/Shaders/smaa.hlsl
+++ b/src/Ryujinx.Graphics.OpenGL/Effects/Shaders/smaa.hlsl
diff --git a/Ryujinx.Graphics.OpenGL/Effects/Shaders/smaa_blend.glsl b/src/Ryujinx.Graphics.OpenGL/Effects/Shaders/smaa_blend.glsl
index c875ce12..c875ce12 100644
--- a/Ryujinx.Graphics.OpenGL/Effects/Shaders/smaa_blend.glsl
+++ b/src/Ryujinx.Graphics.OpenGL/Effects/Shaders/smaa_blend.glsl
diff --git a/Ryujinx.Graphics.OpenGL/Effects/Shaders/smaa_edge.glsl b/src/Ryujinx.Graphics.OpenGL/Effects/Shaders/smaa_edge.glsl
index fd5d9715..fd5d9715 100644
--- a/Ryujinx.Graphics.OpenGL/Effects/Shaders/smaa_edge.glsl
+++ b/src/Ryujinx.Graphics.OpenGL/Effects/Shaders/smaa_edge.glsl
diff --git a/Ryujinx.Graphics.OpenGL/Effects/Shaders/smaa_neighbour.glsl b/src/Ryujinx.Graphics.OpenGL/Effects/Shaders/smaa_neighbour.glsl
index 2e9432ae..2e9432ae 100644
--- a/Ryujinx.Graphics.OpenGL/Effects/Shaders/smaa_neighbour.glsl
+++ b/src/Ryujinx.Graphics.OpenGL/Effects/Shaders/smaa_neighbour.glsl
diff --git a/Ryujinx.Graphics.OpenGL/Effects/SmaaPostProcessingEffect.cs b/src/Ryujinx.Graphics.OpenGL/Effects/SmaaPostProcessingEffect.cs
index 1ad300c8..1ad300c8 100644
--- a/Ryujinx.Graphics.OpenGL/Effects/SmaaPostProcessingEffect.cs
+++ b/src/Ryujinx.Graphics.OpenGL/Effects/SmaaPostProcessingEffect.cs
diff --git a/Ryujinx.Graphics.OpenGL/Effects/Textures/SmaaAreaTexture.bin b/src/Ryujinx.Graphics.OpenGL/Effects/Textures/SmaaAreaTexture.bin
index f4a7a1b4..f4a7a1b4 100644
--- a/Ryujinx.Graphics.OpenGL/Effects/Textures/SmaaAreaTexture.bin
+++ b/src/Ryujinx.Graphics.OpenGL/Effects/Textures/SmaaAreaTexture.bin
Binary files differ
diff --git a/Ryujinx.Graphics.OpenGL/Effects/Textures/SmaaSearchTexture.bin b/src/Ryujinx.Graphics.OpenGL/Effects/Textures/SmaaSearchTexture.bin
index db5bf73f..db5bf73f 100644
--- a/Ryujinx.Graphics.OpenGL/Effects/Textures/SmaaSearchTexture.bin
+++ b/src/Ryujinx.Graphics.OpenGL/Effects/Textures/SmaaSearchTexture.bin
Binary files differ
diff --git a/Ryujinx.Graphics.OpenGL/EnumConversion.cs b/src/Ryujinx.Graphics.OpenGL/EnumConversion.cs
index c9a1eaa9..c9a1eaa9 100644
--- a/Ryujinx.Graphics.OpenGL/EnumConversion.cs
+++ b/src/Ryujinx.Graphics.OpenGL/EnumConversion.cs
diff --git a/Ryujinx.Graphics.OpenGL/FormatInfo.cs b/src/Ryujinx.Graphics.OpenGL/FormatInfo.cs
index aef4dbad..aef4dbad 100644
--- a/Ryujinx.Graphics.OpenGL/FormatInfo.cs
+++ b/src/Ryujinx.Graphics.OpenGL/FormatInfo.cs
diff --git a/Ryujinx.Graphics.OpenGL/FormatTable.cs b/src/Ryujinx.Graphics.OpenGL/FormatTable.cs
index 281f0004..281f0004 100644
--- a/Ryujinx.Graphics.OpenGL/FormatTable.cs
+++ b/src/Ryujinx.Graphics.OpenGL/FormatTable.cs
diff --git a/Ryujinx.Graphics.OpenGL/Framebuffer.cs b/src/Ryujinx.Graphics.OpenGL/Framebuffer.cs
index b180b857..b180b857 100644
--- a/Ryujinx.Graphics.OpenGL/Framebuffer.cs
+++ b/src/Ryujinx.Graphics.OpenGL/Framebuffer.cs
diff --git a/Ryujinx.Graphics.OpenGL/Handle.cs b/src/Ryujinx.Graphics.OpenGL/Handle.cs
index 4b2f05e6..4b2f05e6 100644
--- a/Ryujinx.Graphics.OpenGL/Handle.cs
+++ b/src/Ryujinx.Graphics.OpenGL/Handle.cs
diff --git a/Ryujinx.Graphics.OpenGL/Helper/GLXHelper.cs b/src/Ryujinx.Graphics.OpenGL/Helper/GLXHelper.cs
index 96354946..96354946 100644
--- a/Ryujinx.Graphics.OpenGL/Helper/GLXHelper.cs
+++ b/src/Ryujinx.Graphics.OpenGL/Helper/GLXHelper.cs
diff --git a/Ryujinx.Graphics.OpenGL/Helper/WGLHelper.cs b/src/Ryujinx.Graphics.OpenGL/Helper/WGLHelper.cs
index df497ae2..df497ae2 100644
--- a/Ryujinx.Graphics.OpenGL/Helper/WGLHelper.cs
+++ b/src/Ryujinx.Graphics.OpenGL/Helper/WGLHelper.cs
diff --git a/Ryujinx.Graphics.OpenGL/HwCapabilities.cs b/src/Ryujinx.Graphics.OpenGL/HwCapabilities.cs
index bf365b4d..bf365b4d 100644
--- a/Ryujinx.Graphics.OpenGL/HwCapabilities.cs
+++ b/src/Ryujinx.Graphics.OpenGL/HwCapabilities.cs
diff --git a/Ryujinx.Graphics.OpenGL/IOpenGLContext.cs b/src/Ryujinx.Graphics.OpenGL/IOpenGLContext.cs
index b1f6d72d..b1f6d72d 100644
--- a/Ryujinx.Graphics.OpenGL/IOpenGLContext.cs
+++ b/src/Ryujinx.Graphics.OpenGL/IOpenGLContext.cs
diff --git a/Ryujinx.Graphics.OpenGL/Image/FormatConverter.cs b/src/Ryujinx.Graphics.OpenGL/Image/FormatConverter.cs
index c4bbf745..c4bbf745 100644
--- a/Ryujinx.Graphics.OpenGL/Image/FormatConverter.cs
+++ b/src/Ryujinx.Graphics.OpenGL/Image/FormatConverter.cs
diff --git a/Ryujinx.Graphics.OpenGL/Image/ITextureInfo.cs b/src/Ryujinx.Graphics.OpenGL/Image/ITextureInfo.cs
index 4c8d7fef..4c8d7fef 100644
--- a/Ryujinx.Graphics.OpenGL/Image/ITextureInfo.cs
+++ b/src/Ryujinx.Graphics.OpenGL/Image/ITextureInfo.cs
diff --git a/Ryujinx.Graphics.OpenGL/Image/IntermmediatePool.cs b/src/Ryujinx.Graphics.OpenGL/Image/IntermmediatePool.cs
index 4f167e89..4f167e89 100644
--- a/Ryujinx.Graphics.OpenGL/Image/IntermmediatePool.cs
+++ b/src/Ryujinx.Graphics.OpenGL/Image/IntermmediatePool.cs
diff --git a/Ryujinx.Graphics.OpenGL/Image/Sampler.cs b/src/Ryujinx.Graphics.OpenGL/Image/Sampler.cs
index f705aa3e..f705aa3e 100644
--- a/Ryujinx.Graphics.OpenGL/Image/Sampler.cs
+++ b/src/Ryujinx.Graphics.OpenGL/Image/Sampler.cs
diff --git a/Ryujinx.Graphics.OpenGL/Image/TextureBase.cs b/src/Ryujinx.Graphics.OpenGL/Image/TextureBase.cs
index 2ab9dffb..2ab9dffb 100644
--- a/Ryujinx.Graphics.OpenGL/Image/TextureBase.cs
+++ b/src/Ryujinx.Graphics.OpenGL/Image/TextureBase.cs
diff --git a/Ryujinx.Graphics.OpenGL/Image/TextureBuffer.cs b/src/Ryujinx.Graphics.OpenGL/Image/TextureBuffer.cs
index 1e9e4d6b..1e9e4d6b 100644
--- a/Ryujinx.Graphics.OpenGL/Image/TextureBuffer.cs
+++ b/src/Ryujinx.Graphics.OpenGL/Image/TextureBuffer.cs
diff --git a/Ryujinx.Graphics.OpenGL/Image/TextureCopy.cs b/src/Ryujinx.Graphics.OpenGL/Image/TextureCopy.cs
index a4b08787..a4b08787 100644
--- a/Ryujinx.Graphics.OpenGL/Image/TextureCopy.cs
+++ b/src/Ryujinx.Graphics.OpenGL/Image/TextureCopy.cs
diff --git a/Ryujinx.Graphics.OpenGL/Image/TextureCopyIncompatible.cs b/src/Ryujinx.Graphics.OpenGL/Image/TextureCopyIncompatible.cs
index c8fbfbc6..c8fbfbc6 100644
--- a/Ryujinx.Graphics.OpenGL/Image/TextureCopyIncompatible.cs
+++ b/src/Ryujinx.Graphics.OpenGL/Image/TextureCopyIncompatible.cs
diff --git a/Ryujinx.Graphics.OpenGL/Image/TextureCopyMS.cs b/src/Ryujinx.Graphics.OpenGL/Image/TextureCopyMS.cs
index 9963dc66..9963dc66 100644
--- a/Ryujinx.Graphics.OpenGL/Image/TextureCopyMS.cs
+++ b/src/Ryujinx.Graphics.OpenGL/Image/TextureCopyMS.cs
diff --git a/Ryujinx.Graphics.OpenGL/Image/TextureStorage.cs b/src/Ryujinx.Graphics.OpenGL/Image/TextureStorage.cs
index c058ac88..c058ac88 100644
--- a/Ryujinx.Graphics.OpenGL/Image/TextureStorage.cs
+++ b/src/Ryujinx.Graphics.OpenGL/Image/TextureStorage.cs
diff --git a/Ryujinx.Graphics.OpenGL/Image/TextureView.cs b/src/Ryujinx.Graphics.OpenGL/Image/TextureView.cs
index 804b3b03..804b3b03 100644
--- a/Ryujinx.Graphics.OpenGL/Image/TextureView.cs
+++ b/src/Ryujinx.Graphics.OpenGL/Image/TextureView.cs
diff --git a/Ryujinx.Graphics.OpenGL/OpenGLRenderer.cs b/src/Ryujinx.Graphics.OpenGL/OpenGLRenderer.cs
index 3903b4d4..3903b4d4 100644
--- a/Ryujinx.Graphics.OpenGL/OpenGLRenderer.cs
+++ b/src/Ryujinx.Graphics.OpenGL/OpenGLRenderer.cs
diff --git a/Ryujinx.Graphics.OpenGL/PersistentBuffers.cs b/src/Ryujinx.Graphics.OpenGL/PersistentBuffers.cs
index 654e25b9..654e25b9 100644
--- a/Ryujinx.Graphics.OpenGL/PersistentBuffers.cs
+++ b/src/Ryujinx.Graphics.OpenGL/PersistentBuffers.cs
diff --git a/Ryujinx.Graphics.OpenGL/Pipeline.cs b/src/Ryujinx.Graphics.OpenGL/Pipeline.cs
index 6b6d0289..6b6d0289 100644
--- a/Ryujinx.Graphics.OpenGL/Pipeline.cs
+++ b/src/Ryujinx.Graphics.OpenGL/Pipeline.cs
diff --git a/Ryujinx.Graphics.OpenGL/Program.cs b/src/Ryujinx.Graphics.OpenGL/Program.cs
index a6009108..a6009108 100644
--- a/Ryujinx.Graphics.OpenGL/Program.cs
+++ b/src/Ryujinx.Graphics.OpenGL/Program.cs
diff --git a/Ryujinx.Graphics.OpenGL/Queries/BufferedQuery.cs b/src/Ryujinx.Graphics.OpenGL/Queries/BufferedQuery.cs
index 9d43f6c3..9d43f6c3 100644
--- a/Ryujinx.Graphics.OpenGL/Queries/BufferedQuery.cs
+++ b/src/Ryujinx.Graphics.OpenGL/Queries/BufferedQuery.cs
diff --git a/Ryujinx.Graphics.OpenGL/Queries/CounterQueue.cs b/src/Ryujinx.Graphics.OpenGL/Queries/CounterQueue.cs
index e0aafa6f..e0aafa6f 100644
--- a/Ryujinx.Graphics.OpenGL/Queries/CounterQueue.cs
+++ b/src/Ryujinx.Graphics.OpenGL/Queries/CounterQueue.cs
diff --git a/Ryujinx.Graphics.OpenGL/Queries/CounterQueueEvent.cs b/src/Ryujinx.Graphics.OpenGL/Queries/CounterQueueEvent.cs
index 7297baab..7297baab 100644
--- a/Ryujinx.Graphics.OpenGL/Queries/CounterQueueEvent.cs
+++ b/src/Ryujinx.Graphics.OpenGL/Queries/CounterQueueEvent.cs
diff --git a/Ryujinx.Graphics.OpenGL/Queries/Counters.cs b/src/Ryujinx.Graphics.OpenGL/Queries/Counters.cs
index e6c7ab2b..e6c7ab2b 100644
--- a/Ryujinx.Graphics.OpenGL/Queries/Counters.cs
+++ b/src/Ryujinx.Graphics.OpenGL/Queries/Counters.cs
diff --git a/Ryujinx.Graphics.OpenGL/ResourcePool.cs b/src/Ryujinx.Graphics.OpenGL/ResourcePool.cs
index 57231cd6..57231cd6 100644
--- a/Ryujinx.Graphics.OpenGL/ResourcePool.cs
+++ b/src/Ryujinx.Graphics.OpenGL/ResourcePool.cs
diff --git a/Ryujinx.Graphics.OpenGL/Ryujinx.Graphics.OpenGL.csproj b/src/Ryujinx.Graphics.OpenGL/Ryujinx.Graphics.OpenGL.csproj
index 2313cc68..2313cc68 100644
--- a/Ryujinx.Graphics.OpenGL/Ryujinx.Graphics.OpenGL.csproj
+++ b/src/Ryujinx.Graphics.OpenGL/Ryujinx.Graphics.OpenGL.csproj
diff --git a/Ryujinx.Graphics.OpenGL/Sync.cs b/src/Ryujinx.Graphics.OpenGL/Sync.cs
index 58818e6a..58818e6a 100644
--- a/Ryujinx.Graphics.OpenGL/Sync.cs
+++ b/src/Ryujinx.Graphics.OpenGL/Sync.cs
diff --git a/Ryujinx.Graphics.OpenGL/VertexArray.cs b/src/Ryujinx.Graphics.OpenGL/VertexArray.cs
index 7d22033e..7d22033e 100644
--- a/Ryujinx.Graphics.OpenGL/VertexArray.cs
+++ b/src/Ryujinx.Graphics.OpenGL/VertexArray.cs
diff --git a/Ryujinx.Graphics.OpenGL/Window.cs b/src/Ryujinx.Graphics.OpenGL/Window.cs
index b37ec375..b37ec375 100644
--- a/Ryujinx.Graphics.OpenGL/Window.cs
+++ b/src/Ryujinx.Graphics.OpenGL/Window.cs
diff --git a/Ryujinx.Graphics.Shader/AlphaTestOp.cs b/src/Ryujinx.Graphics.Shader/AlphaTestOp.cs
index 57c0d131..57c0d131 100644
--- a/Ryujinx.Graphics.Shader/AlphaTestOp.cs
+++ b/src/Ryujinx.Graphics.Shader/AlphaTestOp.cs
diff --git a/Ryujinx.Graphics.Shader/AttributeType.cs b/src/Ryujinx.Graphics.Shader/AttributeType.cs
index 4e6cad59..4e6cad59 100644
--- a/Ryujinx.Graphics.Shader/AttributeType.cs
+++ b/src/Ryujinx.Graphics.Shader/AttributeType.cs
diff --git a/Ryujinx.Graphics.Shader/BufferDescriptor.cs b/src/Ryujinx.Graphics.Shader/BufferDescriptor.cs
index 4ce8a896..4ce8a896 100644
--- a/Ryujinx.Graphics.Shader/BufferDescriptor.cs
+++ b/src/Ryujinx.Graphics.Shader/BufferDescriptor.cs
diff --git a/Ryujinx.Graphics.Shader/BufferUsageFlags.cs b/src/Ryujinx.Graphics.Shader/BufferUsageFlags.cs
index 657546cb..657546cb 100644
--- a/Ryujinx.Graphics.Shader/BufferUsageFlags.cs
+++ b/src/Ryujinx.Graphics.Shader/BufferUsageFlags.cs
diff --git a/Ryujinx.Graphics.Shader/CodeGen/Glsl/CodeGenContext.cs b/src/Ryujinx.Graphics.Shader/CodeGen/Glsl/CodeGenContext.cs
index 9eb20f6f..9eb20f6f 100644
--- a/Ryujinx.Graphics.Shader/CodeGen/Glsl/CodeGenContext.cs
+++ b/src/Ryujinx.Graphics.Shader/CodeGen/Glsl/CodeGenContext.cs
diff --git a/Ryujinx.Graphics.Shader/CodeGen/Glsl/Declarations.cs b/src/Ryujinx.Graphics.Shader/CodeGen/Glsl/Declarations.cs
index 81b79ec4..81b79ec4 100644
--- a/Ryujinx.Graphics.Shader/CodeGen/Glsl/Declarations.cs
+++ b/src/Ryujinx.Graphics.Shader/CodeGen/Glsl/Declarations.cs
diff --git a/Ryujinx.Graphics.Shader/CodeGen/Glsl/DefaultNames.cs b/src/Ryujinx.Graphics.Shader/CodeGen/Glsl/DefaultNames.cs
index 3ab4814c..3ab4814c 100644
--- a/Ryujinx.Graphics.Shader/CodeGen/Glsl/DefaultNames.cs
+++ b/src/Ryujinx.Graphics.Shader/CodeGen/Glsl/DefaultNames.cs
diff --git a/Ryujinx.Graphics.Shader/CodeGen/Glsl/GlslGenerator.cs b/src/Ryujinx.Graphics.Shader/CodeGen/Glsl/GlslGenerator.cs
index 751d0350..751d0350 100644
--- a/Ryujinx.Graphics.Shader/CodeGen/Glsl/GlslGenerator.cs
+++ b/src/Ryujinx.Graphics.Shader/CodeGen/Glsl/GlslGenerator.cs
diff --git a/Ryujinx.Graphics.Shader/CodeGen/Glsl/HelperFunctions/AtomicMinMaxS32Shared.glsl b/src/Ryujinx.Graphics.Shader/CodeGen/Glsl/HelperFunctions/AtomicMinMaxS32Shared.glsl
index 82b76bcc..82b76bcc 100644
--- a/Ryujinx.Graphics.Shader/CodeGen/Glsl/HelperFunctions/AtomicMinMaxS32Shared.glsl
+++ b/src/Ryujinx.Graphics.Shader/CodeGen/Glsl/HelperFunctions/AtomicMinMaxS32Shared.glsl
diff --git a/Ryujinx.Graphics.Shader/CodeGen/Glsl/HelperFunctions/AtomicMinMaxS32Storage.glsl b/src/Ryujinx.Graphics.Shader/CodeGen/Glsl/HelperFunctions/AtomicMinMaxS32Storage.glsl
index 0862a71b..0862a71b 100644
--- a/Ryujinx.Graphics.Shader/CodeGen/Glsl/HelperFunctions/AtomicMinMaxS32Storage.glsl
+++ b/src/Ryujinx.Graphics.Shader/CodeGen/Glsl/HelperFunctions/AtomicMinMaxS32Storage.glsl
diff --git a/Ryujinx.Graphics.Shader/CodeGen/Glsl/HelperFunctions/HelperFunctionNames.cs b/src/Ryujinx.Graphics.Shader/CodeGen/Glsl/HelperFunctions/HelperFunctionNames.cs
index 54f35b15..54f35b15 100644
--- a/Ryujinx.Graphics.Shader/CodeGen/Glsl/HelperFunctions/HelperFunctionNames.cs
+++ b/src/Ryujinx.Graphics.Shader/CodeGen/Glsl/HelperFunctions/HelperFunctionNames.cs
diff --git a/Ryujinx.Graphics.Shader/CodeGen/Glsl/HelperFunctions/MultiplyHighS32.glsl b/src/Ryujinx.Graphics.Shader/CodeGen/Glsl/HelperFunctions/MultiplyHighS32.glsl
index caad6f56..caad6f56 100644
--- a/Ryujinx.Graphics.Shader/CodeGen/Glsl/HelperFunctions/MultiplyHighS32.glsl
+++ b/src/Ryujinx.Graphics.Shader/CodeGen/Glsl/HelperFunctions/MultiplyHighS32.glsl
diff --git a/Ryujinx.Graphics.Shader/CodeGen/Glsl/HelperFunctions/MultiplyHighU32.glsl b/src/Ryujinx.Graphics.Shader/CodeGen/Glsl/HelperFunctions/MultiplyHighU32.glsl
index 617a925f..617a925f 100644
--- a/Ryujinx.Graphics.Shader/CodeGen/Glsl/HelperFunctions/MultiplyHighU32.glsl
+++ b/src/Ryujinx.Graphics.Shader/CodeGen/Glsl/HelperFunctions/MultiplyHighU32.glsl
diff --git a/Ryujinx.Graphics.Shader/CodeGen/Glsl/HelperFunctions/Shuffle.glsl b/src/Ryujinx.Graphics.Shader/CodeGen/Glsl/HelperFunctions/Shuffle.glsl
index 7cb4764d..7cb4764d 100644
--- a/Ryujinx.Graphics.Shader/CodeGen/Glsl/HelperFunctions/Shuffle.glsl
+++ b/src/Ryujinx.Graphics.Shader/CodeGen/Glsl/HelperFunctions/Shuffle.glsl
diff --git a/Ryujinx.Graphics.Shader/CodeGen/Glsl/HelperFunctions/ShuffleDown.glsl b/src/Ryujinx.Graphics.Shader/CodeGen/Glsl/HelperFunctions/ShuffleDown.glsl
index 71d901d5..71d901d5 100644
--- a/Ryujinx.Graphics.Shader/CodeGen/Glsl/HelperFunctions/ShuffleDown.glsl
+++ b/src/Ryujinx.Graphics.Shader/CodeGen/Glsl/HelperFunctions/ShuffleDown.glsl
diff --git a/Ryujinx.Graphics.Shader/CodeGen/Glsl/HelperFunctions/ShuffleUp.glsl b/src/Ryujinx.Graphics.Shader/CodeGen/Glsl/HelperFunctions/ShuffleUp.glsl
index ae264d87..ae264d87 100644
--- a/Ryujinx.Graphics.Shader/CodeGen/Glsl/HelperFunctions/ShuffleUp.glsl
+++ b/src/Ryujinx.Graphics.Shader/CodeGen/Glsl/HelperFunctions/ShuffleUp.glsl
diff --git a/Ryujinx.Graphics.Shader/CodeGen/Glsl/HelperFunctions/ShuffleXor.glsl b/src/Ryujinx.Graphics.Shader/CodeGen/Glsl/HelperFunctions/ShuffleXor.glsl
index 789089d6..789089d6 100644
--- a/Ryujinx.Graphics.Shader/CodeGen/Glsl/HelperFunctions/ShuffleXor.glsl
+++ b/src/Ryujinx.Graphics.Shader/CodeGen/Glsl/HelperFunctions/ShuffleXor.glsl
diff --git a/Ryujinx.Graphics.Shader/CodeGen/Glsl/HelperFunctions/StoreSharedSmallInt.glsl b/src/Ryujinx.Graphics.Shader/CodeGen/Glsl/HelperFunctions/StoreSharedSmallInt.glsl
index 2f57b5ff..2f57b5ff 100644
--- a/Ryujinx.Graphics.Shader/CodeGen/Glsl/HelperFunctions/StoreSharedSmallInt.glsl
+++ b/src/Ryujinx.Graphics.Shader/CodeGen/Glsl/HelperFunctions/StoreSharedSmallInt.glsl
diff --git a/Ryujinx.Graphics.Shader/CodeGen/Glsl/HelperFunctions/StoreStorageSmallInt.glsl b/src/Ryujinx.Graphics.Shader/CodeGen/Glsl/HelperFunctions/StoreStorageSmallInt.glsl
index f2253a79..f2253a79 100644
--- a/Ryujinx.Graphics.Shader/CodeGen/Glsl/HelperFunctions/StoreStorageSmallInt.glsl
+++ b/src/Ryujinx.Graphics.Shader/CodeGen/Glsl/HelperFunctions/StoreStorageSmallInt.glsl
diff --git a/Ryujinx.Graphics.Shader/CodeGen/Glsl/HelperFunctions/SwizzleAdd.glsl b/src/Ryujinx.Graphics.Shader/CodeGen/Glsl/HelperFunctions/SwizzleAdd.glsl
index 057cb6ca..057cb6ca 100644
--- a/Ryujinx.Graphics.Shader/CodeGen/Glsl/HelperFunctions/SwizzleAdd.glsl
+++ b/src/Ryujinx.Graphics.Shader/CodeGen/Glsl/HelperFunctions/SwizzleAdd.glsl
diff --git a/Ryujinx.Graphics.Shader/CodeGen/Glsl/HelperFunctions/TexelFetchScale_cp.glsl b/src/Ryujinx.Graphics.Shader/CodeGen/Glsl/HelperFunctions/TexelFetchScale_cp.glsl
index 4ebade5e..4ebade5e 100644
--- a/Ryujinx.Graphics.Shader/CodeGen/Glsl/HelperFunctions/TexelFetchScale_cp.glsl
+++ b/src/Ryujinx.Graphics.Shader/CodeGen/Glsl/HelperFunctions/TexelFetchScale_cp.glsl
diff --git a/Ryujinx.Graphics.Shader/CodeGen/Glsl/HelperFunctions/TexelFetchScale_fp.glsl b/src/Ryujinx.Graphics.Shader/CodeGen/Glsl/HelperFunctions/TexelFetchScale_fp.glsl
index 6c670f91..6c670f91 100644
--- a/Ryujinx.Graphics.Shader/CodeGen/Glsl/HelperFunctions/TexelFetchScale_fp.glsl
+++ b/src/Ryujinx.Graphics.Shader/CodeGen/Glsl/HelperFunctions/TexelFetchScale_fp.glsl
diff --git a/Ryujinx.Graphics.Shader/CodeGen/Glsl/HelperFunctions/TexelFetchScale_vp.glsl b/src/Ryujinx.Graphics.Shader/CodeGen/Glsl/HelperFunctions/TexelFetchScale_vp.glsl
index 19eb119d..19eb119d 100644
--- a/Ryujinx.Graphics.Shader/CodeGen/Glsl/HelperFunctions/TexelFetchScale_vp.glsl
+++ b/src/Ryujinx.Graphics.Shader/CodeGen/Glsl/HelperFunctions/TexelFetchScale_vp.glsl
diff --git a/Ryujinx.Graphics.Shader/CodeGen/Glsl/Instructions/InstGen.cs b/src/Ryujinx.Graphics.Shader/CodeGen/Glsl/Instructions/InstGen.cs
index 01bd11e5..01bd11e5 100644
--- a/Ryujinx.Graphics.Shader/CodeGen/Glsl/Instructions/InstGen.cs
+++ b/src/Ryujinx.Graphics.Shader/CodeGen/Glsl/Instructions/InstGen.cs
diff --git a/Ryujinx.Graphics.Shader/CodeGen/Glsl/Instructions/InstGenBallot.cs b/src/Ryujinx.Graphics.Shader/CodeGen/Glsl/Instructions/InstGenBallot.cs
index 68793c5d..68793c5d 100644
--- a/Ryujinx.Graphics.Shader/CodeGen/Glsl/Instructions/InstGenBallot.cs
+++ b/src/Ryujinx.Graphics.Shader/CodeGen/Glsl/Instructions/InstGenBallot.cs
diff --git a/Ryujinx.Graphics.Shader/CodeGen/Glsl/Instructions/InstGenCall.cs b/src/Ryujinx.Graphics.Shader/CodeGen/Glsl/Instructions/InstGenCall.cs
index 2df6960d..2df6960d 100644
--- a/Ryujinx.Graphics.Shader/CodeGen/Glsl/Instructions/InstGenCall.cs
+++ b/src/Ryujinx.Graphics.Shader/CodeGen/Glsl/Instructions/InstGenCall.cs
diff --git a/Ryujinx.Graphics.Shader/CodeGen/Glsl/Instructions/InstGenFSI.cs b/src/Ryujinx.Graphics.Shader/CodeGen/Glsl/Instructions/InstGenFSI.cs
index f61a53cb..f61a53cb 100644
--- a/Ryujinx.Graphics.Shader/CodeGen/Glsl/Instructions/InstGenFSI.cs
+++ b/src/Ryujinx.Graphics.Shader/CodeGen/Glsl/Instructions/InstGenFSI.cs
diff --git a/Ryujinx.Graphics.Shader/CodeGen/Glsl/Instructions/InstGenHelper.cs b/src/Ryujinx.Graphics.Shader/CodeGen/Glsl/Instructions/InstGenHelper.cs
index 00478f6a..00478f6a 100644
--- a/Ryujinx.Graphics.Shader/CodeGen/Glsl/Instructions/InstGenHelper.cs
+++ b/src/Ryujinx.Graphics.Shader/CodeGen/Glsl/Instructions/InstGenHelper.cs
diff --git a/Ryujinx.Graphics.Shader/CodeGen/Glsl/Instructions/InstGenMemory.cs b/src/Ryujinx.Graphics.Shader/CodeGen/Glsl/Instructions/InstGenMemory.cs
index 99519837..99519837 100644
--- a/Ryujinx.Graphics.Shader/CodeGen/Glsl/Instructions/InstGenMemory.cs
+++ b/src/Ryujinx.Graphics.Shader/CodeGen/Glsl/Instructions/InstGenMemory.cs
diff --git a/Ryujinx.Graphics.Shader/CodeGen/Glsl/Instructions/InstGenPacking.cs b/src/Ryujinx.Graphics.Shader/CodeGen/Glsl/Instructions/InstGenPacking.cs
index 5a888e9c..5a888e9c 100644
--- a/Ryujinx.Graphics.Shader/CodeGen/Glsl/Instructions/InstGenPacking.cs
+++ b/src/Ryujinx.Graphics.Shader/CodeGen/Glsl/Instructions/InstGenPacking.cs
diff --git a/Ryujinx.Graphics.Shader/CodeGen/Glsl/Instructions/InstGenVector.cs b/src/Ryujinx.Graphics.Shader/CodeGen/Glsl/Instructions/InstGenVector.cs
index f09ea2e8..f09ea2e8 100644
--- a/Ryujinx.Graphics.Shader/CodeGen/Glsl/Instructions/InstGenVector.cs
+++ b/src/Ryujinx.Graphics.Shader/CodeGen/Glsl/Instructions/InstGenVector.cs
diff --git a/Ryujinx.Graphics.Shader/CodeGen/Glsl/Instructions/InstInfo.cs b/src/Ryujinx.Graphics.Shader/CodeGen/Glsl/Instructions/InstInfo.cs
index 7b2a6b46..7b2a6b46 100644
--- a/Ryujinx.Graphics.Shader/CodeGen/Glsl/Instructions/InstInfo.cs
+++ b/src/Ryujinx.Graphics.Shader/CodeGen/Glsl/Instructions/InstInfo.cs
diff --git a/Ryujinx.Graphics.Shader/CodeGen/Glsl/Instructions/InstType.cs b/src/Ryujinx.Graphics.Shader/CodeGen/Glsl/Instructions/InstType.cs
index 84e36cdd..84e36cdd 100644
--- a/Ryujinx.Graphics.Shader/CodeGen/Glsl/Instructions/InstType.cs
+++ b/src/Ryujinx.Graphics.Shader/CodeGen/Glsl/Instructions/InstType.cs
diff --git a/Ryujinx.Graphics.Shader/CodeGen/Glsl/Instructions/IoMap.cs b/src/Ryujinx.Graphics.Shader/CodeGen/Glsl/Instructions/IoMap.cs
index 093ee232..093ee232 100644
--- a/Ryujinx.Graphics.Shader/CodeGen/Glsl/Instructions/IoMap.cs
+++ b/src/Ryujinx.Graphics.Shader/CodeGen/Glsl/Instructions/IoMap.cs
diff --git a/Ryujinx.Graphics.Shader/CodeGen/Glsl/NumberFormatter.cs b/src/Ryujinx.Graphics.Shader/CodeGen/Glsl/NumberFormatter.cs
index eb27e9bf..eb27e9bf 100644
--- a/Ryujinx.Graphics.Shader/CodeGen/Glsl/NumberFormatter.cs
+++ b/src/Ryujinx.Graphics.Shader/CodeGen/Glsl/NumberFormatter.cs
diff --git a/Ryujinx.Graphics.Shader/CodeGen/Glsl/OperandManager.cs b/src/Ryujinx.Graphics.Shader/CodeGen/Glsl/OperandManager.cs
index 92e83358..92e83358 100644
--- a/Ryujinx.Graphics.Shader/CodeGen/Glsl/OperandManager.cs
+++ b/src/Ryujinx.Graphics.Shader/CodeGen/Glsl/OperandManager.cs
diff --git a/Ryujinx.Graphics.Shader/CodeGen/Glsl/TypeConversion.cs b/src/Ryujinx.Graphics.Shader/CodeGen/Glsl/TypeConversion.cs
index 22c8623c..22c8623c 100644
--- a/Ryujinx.Graphics.Shader/CodeGen/Glsl/TypeConversion.cs
+++ b/src/Ryujinx.Graphics.Shader/CodeGen/Glsl/TypeConversion.cs
diff --git a/Ryujinx.Graphics.Shader/CodeGen/Spirv/CodeGenContext.cs b/src/Ryujinx.Graphics.Shader/CodeGen/Spirv/CodeGenContext.cs
index ed292ef1..ed292ef1 100644
--- a/Ryujinx.Graphics.Shader/CodeGen/Spirv/CodeGenContext.cs
+++ b/src/Ryujinx.Graphics.Shader/CodeGen/Spirv/CodeGenContext.cs
diff --git a/Ryujinx.Graphics.Shader/CodeGen/Spirv/Declarations.cs b/src/Ryujinx.Graphics.Shader/CodeGen/Spirv/Declarations.cs
index 821da477..821da477 100644
--- a/Ryujinx.Graphics.Shader/CodeGen/Spirv/Declarations.cs
+++ b/src/Ryujinx.Graphics.Shader/CodeGen/Spirv/Declarations.cs
diff --git a/Ryujinx.Graphics.Shader/CodeGen/Spirv/EnumConversion.cs b/src/Ryujinx.Graphics.Shader/CodeGen/Spirv/EnumConversion.cs
index 72541774..72541774 100644
--- a/Ryujinx.Graphics.Shader/CodeGen/Spirv/EnumConversion.cs
+++ b/src/Ryujinx.Graphics.Shader/CodeGen/Spirv/EnumConversion.cs
diff --git a/Ryujinx.Graphics.Shader/CodeGen/Spirv/Instructions.cs b/src/Ryujinx.Graphics.Shader/CodeGen/Spirv/Instructions.cs
index b6ffdb7a..b6ffdb7a 100644
--- a/Ryujinx.Graphics.Shader/CodeGen/Spirv/Instructions.cs
+++ b/src/Ryujinx.Graphics.Shader/CodeGen/Spirv/Instructions.cs
diff --git a/Ryujinx.Graphics.Shader/CodeGen/Spirv/IoMap.cs b/src/Ryujinx.Graphics.Shader/CodeGen/Spirv/IoMap.cs
index d2ff0085..d2ff0085 100644
--- a/Ryujinx.Graphics.Shader/CodeGen/Spirv/IoMap.cs
+++ b/src/Ryujinx.Graphics.Shader/CodeGen/Spirv/IoMap.cs
diff --git a/Ryujinx.Graphics.Shader/CodeGen/Spirv/OperationResult.cs b/src/Ryujinx.Graphics.Shader/CodeGen/Spirv/OperationResult.cs
index f80c8110..f80c8110 100644
--- a/Ryujinx.Graphics.Shader/CodeGen/Spirv/OperationResult.cs
+++ b/src/Ryujinx.Graphics.Shader/CodeGen/Spirv/OperationResult.cs
diff --git a/Ryujinx.Graphics.Shader/CodeGen/Spirv/ScalingHelpers.cs b/src/Ryujinx.Graphics.Shader/CodeGen/Spirv/ScalingHelpers.cs
index f6c218c6..f6c218c6 100644
--- a/Ryujinx.Graphics.Shader/CodeGen/Spirv/ScalingHelpers.cs
+++ b/src/Ryujinx.Graphics.Shader/CodeGen/Spirv/ScalingHelpers.cs
diff --git a/Ryujinx.Graphics.Shader/CodeGen/Spirv/SpirvDelegates.cs b/src/Ryujinx.Graphics.Shader/CodeGen/Spirv/SpirvDelegates.cs
index 3ccfd7f5..3ccfd7f5 100644
--- a/Ryujinx.Graphics.Shader/CodeGen/Spirv/SpirvDelegates.cs
+++ b/src/Ryujinx.Graphics.Shader/CodeGen/Spirv/SpirvDelegates.cs
diff --git a/Ryujinx.Graphics.Shader/CodeGen/Spirv/SpirvGenerator.cs b/src/Ryujinx.Graphics.Shader/CodeGen/Spirv/SpirvGenerator.cs
index 3e11a974..3e11a974 100644
--- a/Ryujinx.Graphics.Shader/CodeGen/Spirv/SpirvGenerator.cs
+++ b/src/Ryujinx.Graphics.Shader/CodeGen/Spirv/SpirvGenerator.cs
diff --git a/Ryujinx.Graphics.Shader/CodeGen/Spirv/TextureMeta.cs b/src/Ryujinx.Graphics.Shader/CodeGen/Spirv/TextureMeta.cs
index 4de05603..4de05603 100644
--- a/Ryujinx.Graphics.Shader/CodeGen/Spirv/TextureMeta.cs
+++ b/src/Ryujinx.Graphics.Shader/CodeGen/Spirv/TextureMeta.cs
diff --git a/Ryujinx.Graphics.Shader/Constants.cs b/src/Ryujinx.Graphics.Shader/Constants.cs
index c6f9ef49..c6f9ef49 100644
--- a/Ryujinx.Graphics.Shader/Constants.cs
+++ b/src/Ryujinx.Graphics.Shader/Constants.cs
diff --git a/Ryujinx.Graphics.Shader/Decoders/Block.cs b/src/Ryujinx.Graphics.Shader/Decoders/Block.cs
index 7d94e3f9..7d94e3f9 100644
--- a/Ryujinx.Graphics.Shader/Decoders/Block.cs
+++ b/src/Ryujinx.Graphics.Shader/Decoders/Block.cs
diff --git a/Ryujinx.Graphics.Shader/Decoders/DecodedFunction.cs b/src/Ryujinx.Graphics.Shader/Decoders/DecodedFunction.cs
index 7a172fe6..7a172fe6 100644
--- a/Ryujinx.Graphics.Shader/Decoders/DecodedFunction.cs
+++ b/src/Ryujinx.Graphics.Shader/Decoders/DecodedFunction.cs
diff --git a/Ryujinx.Graphics.Shader/Decoders/DecodedProgram.cs b/src/Ryujinx.Graphics.Shader/Decoders/DecodedProgram.cs
index 2dd60155..2dd60155 100644
--- a/Ryujinx.Graphics.Shader/Decoders/DecodedProgram.cs
+++ b/src/Ryujinx.Graphics.Shader/Decoders/DecodedProgram.cs
diff --git a/Ryujinx.Graphics.Shader/Decoders/Decoder.cs b/src/Ryujinx.Graphics.Shader/Decoders/Decoder.cs
index c619b9bb..c619b9bb 100644
--- a/Ryujinx.Graphics.Shader/Decoders/Decoder.cs
+++ b/src/Ryujinx.Graphics.Shader/Decoders/Decoder.cs
diff --git a/Ryujinx.Graphics.Shader/Decoders/FunctionType.cs b/src/Ryujinx.Graphics.Shader/Decoders/FunctionType.cs
index 6ea6a82a..6ea6a82a 100644
--- a/Ryujinx.Graphics.Shader/Decoders/FunctionType.cs
+++ b/src/Ryujinx.Graphics.Shader/Decoders/FunctionType.cs
diff --git a/Ryujinx.Graphics.Shader/Decoders/InstDecoders.cs b/src/Ryujinx.Graphics.Shader/Decoders/InstDecoders.cs
index 0c22ddc0..0c22ddc0 100644
--- a/Ryujinx.Graphics.Shader/Decoders/InstDecoders.cs
+++ b/src/Ryujinx.Graphics.Shader/Decoders/InstDecoders.cs
diff --git a/Ryujinx.Graphics.Shader/Decoders/InstName.cs b/src/Ryujinx.Graphics.Shader/Decoders/InstName.cs
index 9c79b7a5..9c79b7a5 100644
--- a/Ryujinx.Graphics.Shader/Decoders/InstName.cs
+++ b/src/Ryujinx.Graphics.Shader/Decoders/InstName.cs
diff --git a/Ryujinx.Graphics.Shader/Decoders/InstOp.cs b/src/Ryujinx.Graphics.Shader/Decoders/InstOp.cs
index 39244e64..39244e64 100644
--- a/Ryujinx.Graphics.Shader/Decoders/InstOp.cs
+++ b/src/Ryujinx.Graphics.Shader/Decoders/InstOp.cs
diff --git a/Ryujinx.Graphics.Shader/Decoders/InstProps.cs b/src/Ryujinx.Graphics.Shader/Decoders/InstProps.cs
index 1af94ab5..1af94ab5 100644
--- a/Ryujinx.Graphics.Shader/Decoders/InstProps.cs
+++ b/src/Ryujinx.Graphics.Shader/Decoders/InstProps.cs
diff --git a/Ryujinx.Graphics.Shader/Decoders/InstTable.cs b/src/Ryujinx.Graphics.Shader/Decoders/InstTable.cs
index eaa77930..eaa77930 100644
--- a/Ryujinx.Graphics.Shader/Decoders/InstTable.cs
+++ b/src/Ryujinx.Graphics.Shader/Decoders/InstTable.cs
diff --git a/Ryujinx.Graphics.Shader/Decoders/Register.cs b/src/Ryujinx.Graphics.Shader/Decoders/Register.cs
index e375096d..e375096d 100644
--- a/Ryujinx.Graphics.Shader/Decoders/Register.cs
+++ b/src/Ryujinx.Graphics.Shader/Decoders/Register.cs
diff --git a/Ryujinx.Graphics.Shader/Decoders/RegisterConsts.cs b/src/Ryujinx.Graphics.Shader/Decoders/RegisterConsts.cs
index d381f954..d381f954 100644
--- a/Ryujinx.Graphics.Shader/Decoders/RegisterConsts.cs
+++ b/src/Ryujinx.Graphics.Shader/Decoders/RegisterConsts.cs
diff --git a/Ryujinx.Graphics.Shader/Decoders/RegisterType.cs b/src/Ryujinx.Graphics.Shader/Decoders/RegisterType.cs
index 648f816a..648f816a 100644
--- a/Ryujinx.Graphics.Shader/Decoders/RegisterType.cs
+++ b/src/Ryujinx.Graphics.Shader/Decoders/RegisterType.cs
diff --git a/Ryujinx.Graphics.Shader/IGpuAccessor.cs b/src/Ryujinx.Graphics.Shader/IGpuAccessor.cs
index 2207156c..2207156c 100644
--- a/Ryujinx.Graphics.Shader/IGpuAccessor.cs
+++ b/src/Ryujinx.Graphics.Shader/IGpuAccessor.cs
diff --git a/Ryujinx.Graphics.Shader/InputTopology.cs b/src/Ryujinx.Graphics.Shader/InputTopology.cs
index da332909..da332909 100644
--- a/Ryujinx.Graphics.Shader/InputTopology.cs
+++ b/src/Ryujinx.Graphics.Shader/InputTopology.cs
diff --git a/Ryujinx.Graphics.Shader/Instructions/AttributeMap.cs b/src/Ryujinx.Graphics.Shader/Instructions/AttributeMap.cs
index 562fb8d5..562fb8d5 100644
--- a/Ryujinx.Graphics.Shader/Instructions/AttributeMap.cs
+++ b/src/Ryujinx.Graphics.Shader/Instructions/AttributeMap.cs
diff --git a/Ryujinx.Graphics.Shader/Instructions/InstEmit.cs b/src/Ryujinx.Graphics.Shader/Instructions/InstEmit.cs
index 3a9e658a..3a9e658a 100644
--- a/Ryujinx.Graphics.Shader/Instructions/InstEmit.cs
+++ b/src/Ryujinx.Graphics.Shader/Instructions/InstEmit.cs
diff --git a/Ryujinx.Graphics.Shader/Instructions/InstEmitAluHelper.cs b/src/Ryujinx.Graphics.Shader/Instructions/InstEmitAluHelper.cs
index 879075ba..879075ba 100644
--- a/Ryujinx.Graphics.Shader/Instructions/InstEmitAluHelper.cs
+++ b/src/Ryujinx.Graphics.Shader/Instructions/InstEmitAluHelper.cs
diff --git a/Ryujinx.Graphics.Shader/Instructions/InstEmitAttribute.cs b/src/Ryujinx.Graphics.Shader/Instructions/InstEmitAttribute.cs
index 1df38761..1df38761 100644
--- a/Ryujinx.Graphics.Shader/Instructions/InstEmitAttribute.cs
+++ b/src/Ryujinx.Graphics.Shader/Instructions/InstEmitAttribute.cs
diff --git a/Ryujinx.Graphics.Shader/Instructions/InstEmitBarrier.cs b/src/Ryujinx.Graphics.Shader/Instructions/InstEmitBarrier.cs
index f3114c6e..f3114c6e 100644
--- a/Ryujinx.Graphics.Shader/Instructions/InstEmitBarrier.cs
+++ b/src/Ryujinx.Graphics.Shader/Instructions/InstEmitBarrier.cs
diff --git a/Ryujinx.Graphics.Shader/Instructions/InstEmitBitfield.cs b/src/Ryujinx.Graphics.Shader/Instructions/InstEmitBitfield.cs
index 71925269..71925269 100644
--- a/Ryujinx.Graphics.Shader/Instructions/InstEmitBitfield.cs
+++ b/src/Ryujinx.Graphics.Shader/Instructions/InstEmitBitfield.cs
diff --git a/Ryujinx.Graphics.Shader/Instructions/InstEmitConditionCode.cs b/src/Ryujinx.Graphics.Shader/Instructions/InstEmitConditionCode.cs
index 74ac7602..74ac7602 100644
--- a/Ryujinx.Graphics.Shader/Instructions/InstEmitConditionCode.cs
+++ b/src/Ryujinx.Graphics.Shader/Instructions/InstEmitConditionCode.cs
diff --git a/Ryujinx.Graphics.Shader/Instructions/InstEmitConversion.cs b/src/Ryujinx.Graphics.Shader/Instructions/InstEmitConversion.cs
index bebd96dd..bebd96dd 100644
--- a/Ryujinx.Graphics.Shader/Instructions/InstEmitConversion.cs
+++ b/src/Ryujinx.Graphics.Shader/Instructions/InstEmitConversion.cs
diff --git a/Ryujinx.Graphics.Shader/Instructions/InstEmitFloatArithmetic.cs b/src/Ryujinx.Graphics.Shader/Instructions/InstEmitFloatArithmetic.cs
index 29803c31..29803c31 100644
--- a/Ryujinx.Graphics.Shader/Instructions/InstEmitFloatArithmetic.cs
+++ b/src/Ryujinx.Graphics.Shader/Instructions/InstEmitFloatArithmetic.cs
diff --git a/Ryujinx.Graphics.Shader/Instructions/InstEmitFloatComparison.cs b/src/Ryujinx.Graphics.Shader/Instructions/InstEmitFloatComparison.cs
index 8f99ddb3..8f99ddb3 100644
--- a/Ryujinx.Graphics.Shader/Instructions/InstEmitFloatComparison.cs
+++ b/src/Ryujinx.Graphics.Shader/Instructions/InstEmitFloatComparison.cs
diff --git a/Ryujinx.Graphics.Shader/Instructions/InstEmitFloatMinMax.cs b/src/Ryujinx.Graphics.Shader/Instructions/InstEmitFloatMinMax.cs
index 412a5305..412a5305 100644
--- a/Ryujinx.Graphics.Shader/Instructions/InstEmitFloatMinMax.cs
+++ b/src/Ryujinx.Graphics.Shader/Instructions/InstEmitFloatMinMax.cs
diff --git a/Ryujinx.Graphics.Shader/Instructions/InstEmitFlowControl.cs b/src/Ryujinx.Graphics.Shader/Instructions/InstEmitFlowControl.cs
index 91c23230..91c23230 100644
--- a/Ryujinx.Graphics.Shader/Instructions/InstEmitFlowControl.cs
+++ b/src/Ryujinx.Graphics.Shader/Instructions/InstEmitFlowControl.cs
diff --git a/Ryujinx.Graphics.Shader/Instructions/InstEmitHelper.cs b/src/Ryujinx.Graphics.Shader/Instructions/InstEmitHelper.cs
index 0ba4667e..0ba4667e 100644
--- a/Ryujinx.Graphics.Shader/Instructions/InstEmitHelper.cs
+++ b/src/Ryujinx.Graphics.Shader/Instructions/InstEmitHelper.cs
diff --git a/Ryujinx.Graphics.Shader/Instructions/InstEmitIntegerArithmetic.cs b/src/Ryujinx.Graphics.Shader/Instructions/InstEmitIntegerArithmetic.cs
index 374e3d61..374e3d61 100644
--- a/Ryujinx.Graphics.Shader/Instructions/InstEmitIntegerArithmetic.cs
+++ b/src/Ryujinx.Graphics.Shader/Instructions/InstEmitIntegerArithmetic.cs
diff --git a/Ryujinx.Graphics.Shader/Instructions/InstEmitIntegerComparison.cs b/src/Ryujinx.Graphics.Shader/Instructions/InstEmitIntegerComparison.cs
index dcdb189f..dcdb189f 100644
--- a/Ryujinx.Graphics.Shader/Instructions/InstEmitIntegerComparison.cs
+++ b/src/Ryujinx.Graphics.Shader/Instructions/InstEmitIntegerComparison.cs
diff --git a/Ryujinx.Graphics.Shader/Instructions/InstEmitIntegerLogical.cs b/src/Ryujinx.Graphics.Shader/Instructions/InstEmitIntegerLogical.cs
index 1f3f66ae..1f3f66ae 100644
--- a/Ryujinx.Graphics.Shader/Instructions/InstEmitIntegerLogical.cs
+++ b/src/Ryujinx.Graphics.Shader/Instructions/InstEmitIntegerLogical.cs
diff --git a/Ryujinx.Graphics.Shader/Instructions/InstEmitIntegerMinMax.cs b/src/Ryujinx.Graphics.Shader/Instructions/InstEmitIntegerMinMax.cs
index 73930ed1..73930ed1 100644
--- a/Ryujinx.Graphics.Shader/Instructions/InstEmitIntegerMinMax.cs
+++ b/src/Ryujinx.Graphics.Shader/Instructions/InstEmitIntegerMinMax.cs
diff --git a/Ryujinx.Graphics.Shader/Instructions/InstEmitMemory.cs b/src/Ryujinx.Graphics.Shader/Instructions/InstEmitMemory.cs
index c73c6b2a..c73c6b2a 100644
--- a/Ryujinx.Graphics.Shader/Instructions/InstEmitMemory.cs
+++ b/src/Ryujinx.Graphics.Shader/Instructions/InstEmitMemory.cs
diff --git a/Ryujinx.Graphics.Shader/Instructions/InstEmitMove.cs b/src/Ryujinx.Graphics.Shader/Instructions/InstEmitMove.cs
index 9992ac37..9992ac37 100644
--- a/Ryujinx.Graphics.Shader/Instructions/InstEmitMove.cs
+++ b/src/Ryujinx.Graphics.Shader/Instructions/InstEmitMove.cs
diff --git a/Ryujinx.Graphics.Shader/Instructions/InstEmitMultifunction.cs b/src/Ryujinx.Graphics.Shader/Instructions/InstEmitMultifunction.cs
index 1ea7d321..1ea7d321 100644
--- a/Ryujinx.Graphics.Shader/Instructions/InstEmitMultifunction.cs
+++ b/src/Ryujinx.Graphics.Shader/Instructions/InstEmitMultifunction.cs
diff --git a/Ryujinx.Graphics.Shader/Instructions/InstEmitNop.cs b/src/Ryujinx.Graphics.Shader/Instructions/InstEmitNop.cs
index 01144007..01144007 100644
--- a/Ryujinx.Graphics.Shader/Instructions/InstEmitNop.cs
+++ b/src/Ryujinx.Graphics.Shader/Instructions/InstEmitNop.cs
diff --git a/Ryujinx.Graphics.Shader/Instructions/InstEmitPredicate.cs b/src/Ryujinx.Graphics.Shader/Instructions/InstEmitPredicate.cs
index d605661f..d605661f 100644
--- a/Ryujinx.Graphics.Shader/Instructions/InstEmitPredicate.cs
+++ b/src/Ryujinx.Graphics.Shader/Instructions/InstEmitPredicate.cs
diff --git a/Ryujinx.Graphics.Shader/Instructions/InstEmitShift.cs b/src/Ryujinx.Graphics.Shader/Instructions/InstEmitShift.cs
index 2873cad8..2873cad8 100644
--- a/Ryujinx.Graphics.Shader/Instructions/InstEmitShift.cs
+++ b/src/Ryujinx.Graphics.Shader/Instructions/InstEmitShift.cs
diff --git a/Ryujinx.Graphics.Shader/Instructions/InstEmitSurface.cs b/src/Ryujinx.Graphics.Shader/Instructions/InstEmitSurface.cs
index 3d94b893..3d94b893 100644
--- a/Ryujinx.Graphics.Shader/Instructions/InstEmitSurface.cs
+++ b/src/Ryujinx.Graphics.Shader/Instructions/InstEmitSurface.cs
diff --git a/Ryujinx.Graphics.Shader/Instructions/InstEmitTexture.cs b/src/Ryujinx.Graphics.Shader/Instructions/InstEmitTexture.cs
index caa9a775..caa9a775 100644
--- a/Ryujinx.Graphics.Shader/Instructions/InstEmitTexture.cs
+++ b/src/Ryujinx.Graphics.Shader/Instructions/InstEmitTexture.cs
diff --git a/Ryujinx.Graphics.Shader/Instructions/InstEmitVideoArithmetic.cs b/src/Ryujinx.Graphics.Shader/Instructions/InstEmitVideoArithmetic.cs
index 2d84c5bd..2d84c5bd 100644
--- a/Ryujinx.Graphics.Shader/Instructions/InstEmitVideoArithmetic.cs
+++ b/src/Ryujinx.Graphics.Shader/Instructions/InstEmitVideoArithmetic.cs
diff --git a/Ryujinx.Graphics.Shader/Instructions/InstEmitVideoMinMax.cs b/src/Ryujinx.Graphics.Shader/Instructions/InstEmitVideoMinMax.cs
index 67b185ab..67b185ab 100644
--- a/Ryujinx.Graphics.Shader/Instructions/InstEmitVideoMinMax.cs
+++ b/src/Ryujinx.Graphics.Shader/Instructions/InstEmitVideoMinMax.cs
diff --git a/Ryujinx.Graphics.Shader/Instructions/InstEmitWarp.cs b/src/Ryujinx.Graphics.Shader/Instructions/InstEmitWarp.cs
index 3c833613..3c833613 100644
--- a/Ryujinx.Graphics.Shader/Instructions/InstEmitWarp.cs
+++ b/src/Ryujinx.Graphics.Shader/Instructions/InstEmitWarp.cs
diff --git a/Ryujinx.Graphics.Shader/Instructions/InstEmitter.cs b/src/Ryujinx.Graphics.Shader/Instructions/InstEmitter.cs
index 91c740b6..91c740b6 100644
--- a/Ryujinx.Graphics.Shader/Instructions/InstEmitter.cs
+++ b/src/Ryujinx.Graphics.Shader/Instructions/InstEmitter.cs
diff --git a/Ryujinx.Graphics.Shader/Instructions/Lop3Expression.cs b/src/Ryujinx.Graphics.Shader/Instructions/Lop3Expression.cs
index 6217ce53..6217ce53 100644
--- a/Ryujinx.Graphics.Shader/Instructions/Lop3Expression.cs
+++ b/src/Ryujinx.Graphics.Shader/Instructions/Lop3Expression.cs
diff --git a/Ryujinx.Graphics.Shader/IntermediateRepresentation/BasicBlock.cs b/src/Ryujinx.Graphics.Shader/IntermediateRepresentation/BasicBlock.cs
index 2aca118b..2aca118b 100644
--- a/Ryujinx.Graphics.Shader/IntermediateRepresentation/BasicBlock.cs
+++ b/src/Ryujinx.Graphics.Shader/IntermediateRepresentation/BasicBlock.cs
diff --git a/Ryujinx.Graphics.Shader/IntermediateRepresentation/CommentNode.cs b/src/Ryujinx.Graphics.Shader/IntermediateRepresentation/CommentNode.cs
index d4d87b06..d4d87b06 100644
--- a/Ryujinx.Graphics.Shader/IntermediateRepresentation/CommentNode.cs
+++ b/src/Ryujinx.Graphics.Shader/IntermediateRepresentation/CommentNode.cs
diff --git a/Ryujinx.Graphics.Shader/IntermediateRepresentation/Function.cs b/src/Ryujinx.Graphics.Shader/IntermediateRepresentation/Function.cs
index e535c3fc..e535c3fc 100644
--- a/Ryujinx.Graphics.Shader/IntermediateRepresentation/Function.cs
+++ b/src/Ryujinx.Graphics.Shader/IntermediateRepresentation/Function.cs
diff --git a/Ryujinx.Graphics.Shader/IntermediateRepresentation/INode.cs b/src/Ryujinx.Graphics.Shader/IntermediateRepresentation/INode.cs
index 0f545e56..0f545e56 100644
--- a/Ryujinx.Graphics.Shader/IntermediateRepresentation/INode.cs
+++ b/src/Ryujinx.Graphics.Shader/IntermediateRepresentation/INode.cs
diff --git a/Ryujinx.Graphics.Shader/IntermediateRepresentation/Instruction.cs b/src/Ryujinx.Graphics.Shader/IntermediateRepresentation/Instruction.cs
index d7c4a961..d7c4a961 100644
--- a/Ryujinx.Graphics.Shader/IntermediateRepresentation/Instruction.cs
+++ b/src/Ryujinx.Graphics.Shader/IntermediateRepresentation/Instruction.cs
diff --git a/Ryujinx.Graphics.Shader/IntermediateRepresentation/IoVariable.cs b/src/Ryujinx.Graphics.Shader/IntermediateRepresentation/IoVariable.cs
index a2163d14..a2163d14 100644
--- a/Ryujinx.Graphics.Shader/IntermediateRepresentation/IoVariable.cs
+++ b/src/Ryujinx.Graphics.Shader/IntermediateRepresentation/IoVariable.cs
diff --git a/Ryujinx.Graphics.Shader/IntermediateRepresentation/IrConsts.cs b/src/Ryujinx.Graphics.Shader/IntermediateRepresentation/IrConsts.cs
index c264e47d..c264e47d 100644
--- a/Ryujinx.Graphics.Shader/IntermediateRepresentation/IrConsts.cs
+++ b/src/Ryujinx.Graphics.Shader/IntermediateRepresentation/IrConsts.cs
diff --git a/Ryujinx.Graphics.Shader/IntermediateRepresentation/Operand.cs b/src/Ryujinx.Graphics.Shader/IntermediateRepresentation/Operand.cs
index 1df88a3d..1df88a3d 100644
--- a/Ryujinx.Graphics.Shader/IntermediateRepresentation/Operand.cs
+++ b/src/Ryujinx.Graphics.Shader/IntermediateRepresentation/Operand.cs
diff --git a/Ryujinx.Graphics.Shader/IntermediateRepresentation/OperandHelper.cs b/src/Ryujinx.Graphics.Shader/IntermediateRepresentation/OperandHelper.cs
index 37c349e8..37c349e8 100644
--- a/Ryujinx.Graphics.Shader/IntermediateRepresentation/OperandHelper.cs
+++ b/src/Ryujinx.Graphics.Shader/IntermediateRepresentation/OperandHelper.cs
diff --git a/Ryujinx.Graphics.Shader/IntermediateRepresentation/OperandType.cs b/src/Ryujinx.Graphics.Shader/IntermediateRepresentation/OperandType.cs
index 4d2da734..4d2da734 100644
--- a/Ryujinx.Graphics.Shader/IntermediateRepresentation/OperandType.cs
+++ b/src/Ryujinx.Graphics.Shader/IntermediateRepresentation/OperandType.cs
diff --git a/Ryujinx.Graphics.Shader/IntermediateRepresentation/Operation.cs b/src/Ryujinx.Graphics.Shader/IntermediateRepresentation/Operation.cs
index 99179f15..99179f15 100644
--- a/Ryujinx.Graphics.Shader/IntermediateRepresentation/Operation.cs
+++ b/src/Ryujinx.Graphics.Shader/IntermediateRepresentation/Operation.cs
diff --git a/Ryujinx.Graphics.Shader/IntermediateRepresentation/PhiNode.cs b/src/Ryujinx.Graphics.Shader/IntermediateRepresentation/PhiNode.cs
index 8fa25ae9..8fa25ae9 100644
--- a/Ryujinx.Graphics.Shader/IntermediateRepresentation/PhiNode.cs
+++ b/src/Ryujinx.Graphics.Shader/IntermediateRepresentation/PhiNode.cs
diff --git a/Ryujinx.Graphics.Shader/IntermediateRepresentation/StorageKind.cs b/src/Ryujinx.Graphics.Shader/IntermediateRepresentation/StorageKind.cs
index 59357443..59357443 100644
--- a/Ryujinx.Graphics.Shader/IntermediateRepresentation/StorageKind.cs
+++ b/src/Ryujinx.Graphics.Shader/IntermediateRepresentation/StorageKind.cs
diff --git a/Ryujinx.Graphics.Shader/IntermediateRepresentation/TextureFlags.cs b/src/Ryujinx.Graphics.Shader/IntermediateRepresentation/TextureFlags.cs
index 6c20e856..6c20e856 100644
--- a/Ryujinx.Graphics.Shader/IntermediateRepresentation/TextureFlags.cs
+++ b/src/Ryujinx.Graphics.Shader/IntermediateRepresentation/TextureFlags.cs
diff --git a/Ryujinx.Graphics.Shader/IntermediateRepresentation/TextureOperation.cs b/src/Ryujinx.Graphics.Shader/IntermediateRepresentation/TextureOperation.cs
index 6ab868cd..6ab868cd 100644
--- a/Ryujinx.Graphics.Shader/IntermediateRepresentation/TextureOperation.cs
+++ b/src/Ryujinx.Graphics.Shader/IntermediateRepresentation/TextureOperation.cs
diff --git a/Ryujinx.Graphics.Shader/OutputTopology.cs b/src/Ryujinx.Graphics.Shader/OutputTopology.cs
index 6f977bec..6f977bec 100644
--- a/Ryujinx.Graphics.Shader/OutputTopology.cs
+++ b/src/Ryujinx.Graphics.Shader/OutputTopology.cs
diff --git a/Ryujinx.Graphics.Shader/Ryujinx.Graphics.Shader.csproj b/src/Ryujinx.Graphics.Shader/Ryujinx.Graphics.Shader.csproj
index 3434e2a8..3434e2a8 100644
--- a/Ryujinx.Graphics.Shader/Ryujinx.Graphics.Shader.csproj
+++ b/src/Ryujinx.Graphics.Shader/Ryujinx.Graphics.Shader.csproj
diff --git a/Ryujinx.Graphics.Shader/SamplerType.cs b/src/Ryujinx.Graphics.Shader/SamplerType.cs
index 620f4ccf..620f4ccf 100644
--- a/Ryujinx.Graphics.Shader/SamplerType.cs
+++ b/src/Ryujinx.Graphics.Shader/SamplerType.cs
diff --git a/Ryujinx.Graphics.Shader/ShaderIdentification.cs b/src/Ryujinx.Graphics.Shader/ShaderIdentification.cs
index 3f015762..3f015762 100644
--- a/Ryujinx.Graphics.Shader/ShaderIdentification.cs
+++ b/src/Ryujinx.Graphics.Shader/ShaderIdentification.cs
diff --git a/Ryujinx.Graphics.Shader/ShaderProgram.cs b/src/Ryujinx.Graphics.Shader/ShaderProgram.cs
index 29fff21e..29fff21e 100644
--- a/Ryujinx.Graphics.Shader/ShaderProgram.cs
+++ b/src/Ryujinx.Graphics.Shader/ShaderProgram.cs
diff --git a/Ryujinx.Graphics.Shader/ShaderProgramInfo.cs b/src/Ryujinx.Graphics.Shader/ShaderProgramInfo.cs
index 30f0ffaa..30f0ffaa 100644
--- a/Ryujinx.Graphics.Shader/ShaderProgramInfo.cs
+++ b/src/Ryujinx.Graphics.Shader/ShaderProgramInfo.cs
diff --git a/Ryujinx.Graphics.Shader/ShaderStage.cs b/src/Ryujinx.Graphics.Shader/ShaderStage.cs
index f16fe328..f16fe328 100644
--- a/Ryujinx.Graphics.Shader/ShaderStage.cs
+++ b/src/Ryujinx.Graphics.Shader/ShaderStage.cs
diff --git a/Ryujinx.Graphics.Shader/StructuredIr/AstAssignment.cs b/src/Ryujinx.Graphics.Shader/StructuredIr/AstAssignment.cs
index bb3fe7af..bb3fe7af 100644
--- a/Ryujinx.Graphics.Shader/StructuredIr/AstAssignment.cs
+++ b/src/Ryujinx.Graphics.Shader/StructuredIr/AstAssignment.cs
diff --git a/Ryujinx.Graphics.Shader/StructuredIr/AstBlock.cs b/src/Ryujinx.Graphics.Shader/StructuredIr/AstBlock.cs
index 2f34bee8..2f34bee8 100644
--- a/Ryujinx.Graphics.Shader/StructuredIr/AstBlock.cs
+++ b/src/Ryujinx.Graphics.Shader/StructuredIr/AstBlock.cs
diff --git a/Ryujinx.Graphics.Shader/StructuredIr/AstBlockType.cs b/src/Ryujinx.Graphics.Shader/StructuredIr/AstBlockType.cs
index c12efda9..c12efda9 100644
--- a/Ryujinx.Graphics.Shader/StructuredIr/AstBlockType.cs
+++ b/src/Ryujinx.Graphics.Shader/StructuredIr/AstBlockType.cs
diff --git a/Ryujinx.Graphics.Shader/StructuredIr/AstBlockVisitor.cs b/src/Ryujinx.Graphics.Shader/StructuredIr/AstBlockVisitor.cs
index 10d5dce0..10d5dce0 100644
--- a/Ryujinx.Graphics.Shader/StructuredIr/AstBlockVisitor.cs
+++ b/src/Ryujinx.Graphics.Shader/StructuredIr/AstBlockVisitor.cs
diff --git a/Ryujinx.Graphics.Shader/StructuredIr/AstComment.cs b/src/Ryujinx.Graphics.Shader/StructuredIr/AstComment.cs
index dabe623f..dabe623f 100644
--- a/Ryujinx.Graphics.Shader/StructuredIr/AstComment.cs
+++ b/src/Ryujinx.Graphics.Shader/StructuredIr/AstComment.cs
diff --git a/Ryujinx.Graphics.Shader/StructuredIr/AstHelper.cs b/src/Ryujinx.Graphics.Shader/StructuredIr/AstHelper.cs
index 7aa0409b..7aa0409b 100644
--- a/Ryujinx.Graphics.Shader/StructuredIr/AstHelper.cs
+++ b/src/Ryujinx.Graphics.Shader/StructuredIr/AstHelper.cs
diff --git a/Ryujinx.Graphics.Shader/StructuredIr/AstNode.cs b/src/Ryujinx.Graphics.Shader/StructuredIr/AstNode.cs
index c667aac9..c667aac9 100644
--- a/Ryujinx.Graphics.Shader/StructuredIr/AstNode.cs
+++ b/src/Ryujinx.Graphics.Shader/StructuredIr/AstNode.cs
diff --git a/Ryujinx.Graphics.Shader/StructuredIr/AstOperand.cs b/src/Ryujinx.Graphics.Shader/StructuredIr/AstOperand.cs
index 1fc0035f..1fc0035f 100644
--- a/Ryujinx.Graphics.Shader/StructuredIr/AstOperand.cs
+++ b/src/Ryujinx.Graphics.Shader/StructuredIr/AstOperand.cs
diff --git a/Ryujinx.Graphics.Shader/StructuredIr/AstOperation.cs b/src/Ryujinx.Graphics.Shader/StructuredIr/AstOperation.cs
index 2393fd8d..2393fd8d 100644
--- a/Ryujinx.Graphics.Shader/StructuredIr/AstOperation.cs
+++ b/src/Ryujinx.Graphics.Shader/StructuredIr/AstOperation.cs
diff --git a/Ryujinx.Graphics.Shader/StructuredIr/AstOptimizer.cs b/src/Ryujinx.Graphics.Shader/StructuredIr/AstOptimizer.cs
index b71ae2c4..b71ae2c4 100644
--- a/Ryujinx.Graphics.Shader/StructuredIr/AstOptimizer.cs
+++ b/src/Ryujinx.Graphics.Shader/StructuredIr/AstOptimizer.cs
diff --git a/Ryujinx.Graphics.Shader/StructuredIr/AstTextureOperation.cs b/src/Ryujinx.Graphics.Shader/StructuredIr/AstTextureOperation.cs
index a44f13cc..a44f13cc 100644
--- a/Ryujinx.Graphics.Shader/StructuredIr/AstTextureOperation.cs
+++ b/src/Ryujinx.Graphics.Shader/StructuredIr/AstTextureOperation.cs
diff --git a/Ryujinx.Graphics.Shader/StructuredIr/GotoElimination.cs b/src/Ryujinx.Graphics.Shader/StructuredIr/GotoElimination.cs
index 8bcf9d9c..8bcf9d9c 100644
--- a/Ryujinx.Graphics.Shader/StructuredIr/GotoElimination.cs
+++ b/src/Ryujinx.Graphics.Shader/StructuredIr/GotoElimination.cs
diff --git a/Ryujinx.Graphics.Shader/StructuredIr/GotoStatement.cs b/src/Ryujinx.Graphics.Shader/StructuredIr/GotoStatement.cs
index 25216e55..25216e55 100644
--- a/Ryujinx.Graphics.Shader/StructuredIr/GotoStatement.cs
+++ b/src/Ryujinx.Graphics.Shader/StructuredIr/GotoStatement.cs
diff --git a/Ryujinx.Graphics.Shader/StructuredIr/HelperFunctionsMask.cs b/src/Ryujinx.Graphics.Shader/StructuredIr/HelperFunctionsMask.cs
index d45f8d4e..d45f8d4e 100644
--- a/Ryujinx.Graphics.Shader/StructuredIr/HelperFunctionsMask.cs
+++ b/src/Ryujinx.Graphics.Shader/StructuredIr/HelperFunctionsMask.cs
diff --git a/Ryujinx.Graphics.Shader/StructuredIr/IAstNode.cs b/src/Ryujinx.Graphics.Shader/StructuredIr/IAstNode.cs
index 5ececbb5..5ececbb5 100644
--- a/Ryujinx.Graphics.Shader/StructuredIr/IAstNode.cs
+++ b/src/Ryujinx.Graphics.Shader/StructuredIr/IAstNode.cs
diff --git a/Ryujinx.Graphics.Shader/StructuredIr/InstructionInfo.cs b/src/Ryujinx.Graphics.Shader/StructuredIr/InstructionInfo.cs
index 8eccef23..8eccef23 100644
--- a/Ryujinx.Graphics.Shader/StructuredIr/InstructionInfo.cs
+++ b/src/Ryujinx.Graphics.Shader/StructuredIr/InstructionInfo.cs
diff --git a/Ryujinx.Graphics.Shader/StructuredIr/IoDefinition.cs b/src/Ryujinx.Graphics.Shader/StructuredIr/IoDefinition.cs
index 21a1b3f0..21a1b3f0 100644
--- a/Ryujinx.Graphics.Shader/StructuredIr/IoDefinition.cs
+++ b/src/Ryujinx.Graphics.Shader/StructuredIr/IoDefinition.cs
diff --git a/Ryujinx.Graphics.Shader/StructuredIr/OperandInfo.cs b/src/Ryujinx.Graphics.Shader/StructuredIr/OperandInfo.cs
index 38ed1584..38ed1584 100644
--- a/Ryujinx.Graphics.Shader/StructuredIr/OperandInfo.cs
+++ b/src/Ryujinx.Graphics.Shader/StructuredIr/OperandInfo.cs
diff --git a/Ryujinx.Graphics.Shader/StructuredIr/PhiFunctions.cs b/src/Ryujinx.Graphics.Shader/StructuredIr/PhiFunctions.cs
index 541ca298..541ca298 100644
--- a/Ryujinx.Graphics.Shader/StructuredIr/PhiFunctions.cs
+++ b/src/Ryujinx.Graphics.Shader/StructuredIr/PhiFunctions.cs
diff --git a/Ryujinx.Graphics.Shader/StructuredIr/StructuredFunction.cs b/src/Ryujinx.Graphics.Shader/StructuredIr/StructuredFunction.cs
index 61c4fed7..61c4fed7 100644
--- a/Ryujinx.Graphics.Shader/StructuredIr/StructuredFunction.cs
+++ b/src/Ryujinx.Graphics.Shader/StructuredIr/StructuredFunction.cs
diff --git a/Ryujinx.Graphics.Shader/StructuredIr/StructuredProgram.cs b/src/Ryujinx.Graphics.Shader/StructuredIr/StructuredProgram.cs
index b4ca8ee5..b4ca8ee5 100644
--- a/Ryujinx.Graphics.Shader/StructuredIr/StructuredProgram.cs
+++ b/src/Ryujinx.Graphics.Shader/StructuredIr/StructuredProgram.cs
diff --git a/Ryujinx.Graphics.Shader/StructuredIr/StructuredProgramContext.cs b/src/Ryujinx.Graphics.Shader/StructuredIr/StructuredProgramContext.cs
index 68bbdeb1..68bbdeb1 100644
--- a/Ryujinx.Graphics.Shader/StructuredIr/StructuredProgramContext.cs
+++ b/src/Ryujinx.Graphics.Shader/StructuredIr/StructuredProgramContext.cs
diff --git a/Ryujinx.Graphics.Shader/StructuredIr/StructuredProgramInfo.cs b/src/Ryujinx.Graphics.Shader/StructuredIr/StructuredProgramInfo.cs
index c5104146..c5104146 100644
--- a/Ryujinx.Graphics.Shader/StructuredIr/StructuredProgramInfo.cs
+++ b/src/Ryujinx.Graphics.Shader/StructuredIr/StructuredProgramInfo.cs
diff --git a/Ryujinx.Graphics.Shader/SupportBuffer.cs b/src/Ryujinx.Graphics.Shader/SupportBuffer.cs
index 5fe99327..5fe99327 100644
--- a/Ryujinx.Graphics.Shader/SupportBuffer.cs
+++ b/src/Ryujinx.Graphics.Shader/SupportBuffer.cs
diff --git a/Ryujinx.Graphics.Shader/TessPatchType.cs b/src/Ryujinx.Graphics.Shader/TessPatchType.cs
index 2361b69f..2361b69f 100644
--- a/Ryujinx.Graphics.Shader/TessPatchType.cs
+++ b/src/Ryujinx.Graphics.Shader/TessPatchType.cs
diff --git a/Ryujinx.Graphics.Shader/TessSpacing.cs b/src/Ryujinx.Graphics.Shader/TessSpacing.cs
index 35c44190..35c44190 100644
--- a/Ryujinx.Graphics.Shader/TessSpacing.cs
+++ b/src/Ryujinx.Graphics.Shader/TessSpacing.cs
diff --git a/Ryujinx.Graphics.Shader/TextureDescriptor.cs b/src/Ryujinx.Graphics.Shader/TextureDescriptor.cs
index 85ea9adb..85ea9adb 100644
--- a/Ryujinx.Graphics.Shader/TextureDescriptor.cs
+++ b/src/Ryujinx.Graphics.Shader/TextureDescriptor.cs
diff --git a/Ryujinx.Graphics.Shader/TextureFormat.cs b/src/Ryujinx.Graphics.Shader/TextureFormat.cs
index d4c8b96b..d4c8b96b 100644
--- a/Ryujinx.Graphics.Shader/TextureFormat.cs
+++ b/src/Ryujinx.Graphics.Shader/TextureFormat.cs
diff --git a/Ryujinx.Graphics.Shader/TextureHandle.cs b/src/Ryujinx.Graphics.Shader/TextureHandle.cs
index 39d5c1c3..39d5c1c3 100644
--- a/Ryujinx.Graphics.Shader/TextureHandle.cs
+++ b/src/Ryujinx.Graphics.Shader/TextureHandle.cs
diff --git a/Ryujinx.Graphics.Shader/TextureUsageFlags.cs b/src/Ryujinx.Graphics.Shader/TextureUsageFlags.cs
index 2419a1de..2419a1de 100644
--- a/Ryujinx.Graphics.Shader/TextureUsageFlags.cs
+++ b/src/Ryujinx.Graphics.Shader/TextureUsageFlags.cs
diff --git a/Ryujinx.Graphics.Shader/Translation/AggregateType.cs b/src/Ryujinx.Graphics.Shader/Translation/AggregateType.cs
index 24993e00..24993e00 100644
--- a/Ryujinx.Graphics.Shader/Translation/AggregateType.cs
+++ b/src/Ryujinx.Graphics.Shader/Translation/AggregateType.cs
diff --git a/Ryujinx.Graphics.Shader/Translation/AttributeConsts.cs b/src/Ryujinx.Graphics.Shader/Translation/AttributeConsts.cs
index 683b0d8a..683b0d8a 100644
--- a/Ryujinx.Graphics.Shader/Translation/AttributeConsts.cs
+++ b/src/Ryujinx.Graphics.Shader/Translation/AttributeConsts.cs
diff --git a/Ryujinx.Graphics.Shader/Translation/ControlFlowGraph.cs b/src/Ryujinx.Graphics.Shader/Translation/ControlFlowGraph.cs
index 65328fd7..65328fd7 100644
--- a/Ryujinx.Graphics.Shader/Translation/ControlFlowGraph.cs
+++ b/src/Ryujinx.Graphics.Shader/Translation/ControlFlowGraph.cs
diff --git a/Ryujinx.Graphics.Shader/Translation/Dominance.cs b/src/Ryujinx.Graphics.Shader/Translation/Dominance.cs
index 09c2eb0f..09c2eb0f 100644
--- a/Ryujinx.Graphics.Shader/Translation/Dominance.cs
+++ b/src/Ryujinx.Graphics.Shader/Translation/Dominance.cs
diff --git a/Ryujinx.Graphics.Shader/Translation/EmitterContext.cs b/src/Ryujinx.Graphics.Shader/Translation/EmitterContext.cs
index 112baccf..112baccf 100644
--- a/Ryujinx.Graphics.Shader/Translation/EmitterContext.cs
+++ b/src/Ryujinx.Graphics.Shader/Translation/EmitterContext.cs
diff --git a/Ryujinx.Graphics.Shader/Translation/EmitterContextInsts.cs b/src/Ryujinx.Graphics.Shader/Translation/EmitterContextInsts.cs
index 93748249..93748249 100644
--- a/Ryujinx.Graphics.Shader/Translation/EmitterContextInsts.cs
+++ b/src/Ryujinx.Graphics.Shader/Translation/EmitterContextInsts.cs
diff --git a/Ryujinx.Graphics.Shader/Translation/FeatureFlags.cs b/src/Ryujinx.Graphics.Shader/Translation/FeatureFlags.cs
index c035f212..c035f212 100644
--- a/Ryujinx.Graphics.Shader/Translation/FeatureFlags.cs
+++ b/src/Ryujinx.Graphics.Shader/Translation/FeatureFlags.cs
diff --git a/Ryujinx.Graphics.Shader/Translation/FunctionMatch.cs b/src/Ryujinx.Graphics.Shader/Translation/FunctionMatch.cs
index 073e120a..073e120a 100644
--- a/Ryujinx.Graphics.Shader/Translation/FunctionMatch.cs
+++ b/src/Ryujinx.Graphics.Shader/Translation/FunctionMatch.cs
diff --git a/Ryujinx.Graphics.Shader/Translation/GlobalMemory.cs b/src/Ryujinx.Graphics.Shader/Translation/GlobalMemory.cs
index 774a128d..774a128d 100644
--- a/Ryujinx.Graphics.Shader/Translation/GlobalMemory.cs
+++ b/src/Ryujinx.Graphics.Shader/Translation/GlobalMemory.cs
diff --git a/Ryujinx.Graphics.Shader/Translation/Optimizations/BindlessElimination.cs b/src/Ryujinx.Graphics.Shader/Translation/Optimizations/BindlessElimination.cs
index 0c196c4d..0c196c4d 100644
--- a/Ryujinx.Graphics.Shader/Translation/Optimizations/BindlessElimination.cs
+++ b/src/Ryujinx.Graphics.Shader/Translation/Optimizations/BindlessElimination.cs
diff --git a/Ryujinx.Graphics.Shader/Translation/Optimizations/BindlessToIndexed.cs b/src/Ryujinx.Graphics.Shader/Translation/Optimizations/BindlessToIndexed.cs
index ca46a1f5..ca46a1f5 100644
--- a/Ryujinx.Graphics.Shader/Translation/Optimizations/BindlessToIndexed.cs
+++ b/src/Ryujinx.Graphics.Shader/Translation/Optimizations/BindlessToIndexed.cs
diff --git a/Ryujinx.Graphics.Shader/Translation/Optimizations/BranchElimination.cs b/src/Ryujinx.Graphics.Shader/Translation/Optimizations/BranchElimination.cs
index c87d1474..c87d1474 100644
--- a/Ryujinx.Graphics.Shader/Translation/Optimizations/BranchElimination.cs
+++ b/src/Ryujinx.Graphics.Shader/Translation/Optimizations/BranchElimination.cs
diff --git a/Ryujinx.Graphics.Shader/Translation/Optimizations/ConstantFolding.cs b/src/Ryujinx.Graphics.Shader/Translation/Optimizations/ConstantFolding.cs
index 6729f077..6729f077 100644
--- a/Ryujinx.Graphics.Shader/Translation/Optimizations/ConstantFolding.cs
+++ b/src/Ryujinx.Graphics.Shader/Translation/Optimizations/ConstantFolding.cs
diff --git a/Ryujinx.Graphics.Shader/Translation/Optimizations/GlobalToStorage.cs b/src/Ryujinx.Graphics.Shader/Translation/Optimizations/GlobalToStorage.cs
index 2a4070e0..2a4070e0 100644
--- a/Ryujinx.Graphics.Shader/Translation/Optimizations/GlobalToStorage.cs
+++ b/src/Ryujinx.Graphics.Shader/Translation/Optimizations/GlobalToStorage.cs
diff --git a/Ryujinx.Graphics.Shader/Translation/Optimizations/Optimizer.cs b/src/Ryujinx.Graphics.Shader/Translation/Optimizations/Optimizer.cs
index bae774ee..bae774ee 100644
--- a/Ryujinx.Graphics.Shader/Translation/Optimizations/Optimizer.cs
+++ b/src/Ryujinx.Graphics.Shader/Translation/Optimizations/Optimizer.cs
diff --git a/Ryujinx.Graphics.Shader/Translation/Optimizations/Simplification.cs b/src/Ryujinx.Graphics.Shader/Translation/Optimizations/Simplification.cs
index 8d05f99a..8d05f99a 100644
--- a/Ryujinx.Graphics.Shader/Translation/Optimizations/Simplification.cs
+++ b/src/Ryujinx.Graphics.Shader/Translation/Optimizations/Simplification.cs
diff --git a/Ryujinx.Graphics.Shader/Translation/Optimizations/Utils.cs b/src/Ryujinx.Graphics.Shader/Translation/Optimizations/Utils.cs
index 4ca6d687..4ca6d687 100644
--- a/Ryujinx.Graphics.Shader/Translation/Optimizations/Utils.cs
+++ b/src/Ryujinx.Graphics.Shader/Translation/Optimizations/Utils.cs
diff --git a/Ryujinx.Graphics.Shader/Translation/RegisterUsage.cs b/src/Ryujinx.Graphics.Shader/Translation/RegisterUsage.cs
index 9e31831d..9e31831d 100644
--- a/Ryujinx.Graphics.Shader/Translation/RegisterUsage.cs
+++ b/src/Ryujinx.Graphics.Shader/Translation/RegisterUsage.cs
diff --git a/Ryujinx.Graphics.Shader/Translation/Rewriter.cs b/src/Ryujinx.Graphics.Shader/Translation/Rewriter.cs
index 91e7ace1..91e7ace1 100644
--- a/Ryujinx.Graphics.Shader/Translation/Rewriter.cs
+++ b/src/Ryujinx.Graphics.Shader/Translation/Rewriter.cs
diff --git a/Ryujinx.Graphics.Shader/Translation/ShaderConfig.cs b/src/Ryujinx.Graphics.Shader/Translation/ShaderConfig.cs
index 22f5a671..22f5a671 100644
--- a/Ryujinx.Graphics.Shader/Translation/ShaderConfig.cs
+++ b/src/Ryujinx.Graphics.Shader/Translation/ShaderConfig.cs
diff --git a/Ryujinx.Graphics.Shader/Translation/ShaderHeader.cs b/src/Ryujinx.Graphics.Shader/Translation/ShaderHeader.cs
index 01f7f08a..01f7f08a 100644
--- a/Ryujinx.Graphics.Shader/Translation/ShaderHeader.cs
+++ b/src/Ryujinx.Graphics.Shader/Translation/ShaderHeader.cs
diff --git a/Ryujinx.Graphics.Shader/Translation/ShaderIdentifier.cs b/src/Ryujinx.Graphics.Shader/Translation/ShaderIdentifier.cs
index 53f1e847..53f1e847 100644
--- a/Ryujinx.Graphics.Shader/Translation/ShaderIdentifier.cs
+++ b/src/Ryujinx.Graphics.Shader/Translation/ShaderIdentifier.cs
diff --git a/Ryujinx.Graphics.Shader/Translation/Ssa.cs b/src/Ryujinx.Graphics.Shader/Translation/Ssa.cs
index 16b8b924..16b8b924 100644
--- a/Ryujinx.Graphics.Shader/Translation/Ssa.cs
+++ b/src/Ryujinx.Graphics.Shader/Translation/Ssa.cs
diff --git a/Ryujinx.Graphics.Shader/Translation/TargetApi.cs b/src/Ryujinx.Graphics.Shader/Translation/TargetApi.cs
index 6ac235a4..6ac235a4 100644
--- a/Ryujinx.Graphics.Shader/Translation/TargetApi.cs
+++ b/src/Ryujinx.Graphics.Shader/Translation/TargetApi.cs
diff --git a/Ryujinx.Graphics.Shader/Translation/TargetLanguage.cs b/src/Ryujinx.Graphics.Shader/Translation/TargetLanguage.cs
index 8314b223..8314b223 100644
--- a/Ryujinx.Graphics.Shader/Translation/TargetLanguage.cs
+++ b/src/Ryujinx.Graphics.Shader/Translation/TargetLanguage.cs
diff --git a/Ryujinx.Graphics.Shader/Translation/TranslationFlags.cs b/src/Ryujinx.Graphics.Shader/Translation/TranslationFlags.cs
index 1874dec3..1874dec3 100644
--- a/Ryujinx.Graphics.Shader/Translation/TranslationFlags.cs
+++ b/src/Ryujinx.Graphics.Shader/Translation/TranslationFlags.cs
diff --git a/Ryujinx.Graphics.Shader/Translation/TranslationOptions.cs b/src/Ryujinx.Graphics.Shader/Translation/TranslationOptions.cs
index d9829ac4..d9829ac4 100644
--- a/Ryujinx.Graphics.Shader/Translation/TranslationOptions.cs
+++ b/src/Ryujinx.Graphics.Shader/Translation/TranslationOptions.cs
diff --git a/Ryujinx.Graphics.Shader/Translation/Translator.cs b/src/Ryujinx.Graphics.Shader/Translation/Translator.cs
index 77d3b568..77d3b568 100644
--- a/Ryujinx.Graphics.Shader/Translation/Translator.cs
+++ b/src/Ryujinx.Graphics.Shader/Translation/Translator.cs
diff --git a/Ryujinx.Graphics.Shader/Translation/TranslatorContext.cs b/src/Ryujinx.Graphics.Shader/Translation/TranslatorContext.cs
index 4b4cc8d9..4b4cc8d9 100644
--- a/Ryujinx.Graphics.Shader/Translation/TranslatorContext.cs
+++ b/src/Ryujinx.Graphics.Shader/Translation/TranslatorContext.cs
diff --git a/Ryujinx.Graphics.Texture/Astc/AstcDecoder.cs b/src/Ryujinx.Graphics.Texture/Astc/AstcDecoder.cs
index 08738583..08738583 100644
--- a/Ryujinx.Graphics.Texture/Astc/AstcDecoder.cs
+++ b/src/Ryujinx.Graphics.Texture/Astc/AstcDecoder.cs
diff --git a/Ryujinx.Graphics.Texture/Astc/AstcDecoderException.cs b/src/Ryujinx.Graphics.Texture/Astc/AstcDecoderException.cs
index fdc48267..fdc48267 100644
--- a/Ryujinx.Graphics.Texture/Astc/AstcDecoderException.cs
+++ b/src/Ryujinx.Graphics.Texture/Astc/AstcDecoderException.cs
diff --git a/Ryujinx.Graphics.Texture/Astc/AstcPixel.cs b/src/Ryujinx.Graphics.Texture/Astc/AstcPixel.cs
index 13197714..13197714 100644
--- a/Ryujinx.Graphics.Texture/Astc/AstcPixel.cs
+++ b/src/Ryujinx.Graphics.Texture/Astc/AstcPixel.cs
diff --git a/Ryujinx.Graphics.Texture/Astc/BitStream128.cs b/src/Ryujinx.Graphics.Texture/Astc/BitStream128.cs
index 3bf9769f..3bf9769f 100644
--- a/Ryujinx.Graphics.Texture/Astc/BitStream128.cs
+++ b/src/Ryujinx.Graphics.Texture/Astc/BitStream128.cs
diff --git a/Ryujinx.Graphics.Texture/Astc/Bits.cs b/src/Ryujinx.Graphics.Texture/Astc/Bits.cs
index b140a20a..b140a20a 100644
--- a/Ryujinx.Graphics.Texture/Astc/Bits.cs
+++ b/src/Ryujinx.Graphics.Texture/Astc/Bits.cs
diff --git a/Ryujinx.Graphics.Texture/Astc/EndPointSet.cs b/src/Ryujinx.Graphics.Texture/Astc/EndPointSet.cs
index 45e61ca2..45e61ca2 100644
--- a/Ryujinx.Graphics.Texture/Astc/EndPointSet.cs
+++ b/src/Ryujinx.Graphics.Texture/Astc/EndPointSet.cs
diff --git a/Ryujinx.Graphics.Texture/Astc/IntegerEncoded.cs b/src/Ryujinx.Graphics.Texture/Astc/IntegerEncoded.cs
index 065de46b..065de46b 100644
--- a/Ryujinx.Graphics.Texture/Astc/IntegerEncoded.cs
+++ b/src/Ryujinx.Graphics.Texture/Astc/IntegerEncoded.cs
diff --git a/Ryujinx.Graphics.Texture/Astc/IntegerSequence.cs b/src/Ryujinx.Graphics.Texture/Astc/IntegerSequence.cs
index 367b6809..367b6809 100644
--- a/Ryujinx.Graphics.Texture/Astc/IntegerSequence.cs
+++ b/src/Ryujinx.Graphics.Texture/Astc/IntegerSequence.cs
diff --git a/Ryujinx.Graphics.Texture/BC6Decoder.cs b/src/Ryujinx.Graphics.Texture/BC6Decoder.cs
index 819bf022..819bf022 100644
--- a/Ryujinx.Graphics.Texture/BC6Decoder.cs
+++ b/src/Ryujinx.Graphics.Texture/BC6Decoder.cs
diff --git a/Ryujinx.Graphics.Texture/BC7Decoder.cs b/src/Ryujinx.Graphics.Texture/BC7Decoder.cs
index b865a559..b865a559 100644
--- a/Ryujinx.Graphics.Texture/BC7Decoder.cs
+++ b/src/Ryujinx.Graphics.Texture/BC7Decoder.cs
diff --git a/Ryujinx.Graphics.Texture/BCnDecoder.cs b/src/Ryujinx.Graphics.Texture/BCnDecoder.cs
index b21fa4d1..b21fa4d1 100644
--- a/Ryujinx.Graphics.Texture/BCnDecoder.cs
+++ b/src/Ryujinx.Graphics.Texture/BCnDecoder.cs
diff --git a/Ryujinx.Graphics.Texture/BCnEncoder.cs b/src/Ryujinx.Graphics.Texture/BCnEncoder.cs
index 02b79c1b..02b79c1b 100644
--- a/Ryujinx.Graphics.Texture/BCnEncoder.cs
+++ b/src/Ryujinx.Graphics.Texture/BCnEncoder.cs
diff --git a/Ryujinx.Graphics.Texture/BlockLinearConstants.cs b/src/Ryujinx.Graphics.Texture/BlockLinearConstants.cs
index d95691cf..d95691cf 100644
--- a/Ryujinx.Graphics.Texture/BlockLinearConstants.cs
+++ b/src/Ryujinx.Graphics.Texture/BlockLinearConstants.cs
diff --git a/Ryujinx.Graphics.Texture/BlockLinearLayout.cs b/src/Ryujinx.Graphics.Texture/BlockLinearLayout.cs
index e098e959..e098e959 100644
--- a/Ryujinx.Graphics.Texture/BlockLinearLayout.cs
+++ b/src/Ryujinx.Graphics.Texture/BlockLinearLayout.cs
diff --git a/Ryujinx.Graphics.Texture/Bpp12Pixel.cs b/src/Ryujinx.Graphics.Texture/Bpp12Pixel.cs
index 5a38259e..5a38259e 100644
--- a/Ryujinx.Graphics.Texture/Bpp12Pixel.cs
+++ b/src/Ryujinx.Graphics.Texture/Bpp12Pixel.cs
diff --git a/Ryujinx.Graphics.Texture/ETC2Decoder.cs b/src/Ryujinx.Graphics.Texture/ETC2Decoder.cs
index 21ff4be4..21ff4be4 100644
--- a/Ryujinx.Graphics.Texture/ETC2Decoder.cs
+++ b/src/Ryujinx.Graphics.Texture/ETC2Decoder.cs
diff --git a/Ryujinx.Graphics.Texture/Encoders/BC7Encoder.cs b/src/Ryujinx.Graphics.Texture/Encoders/BC7Encoder.cs
index 35d36bce..35d36bce 100644
--- a/Ryujinx.Graphics.Texture/Encoders/BC7Encoder.cs
+++ b/src/Ryujinx.Graphics.Texture/Encoders/BC7Encoder.cs
diff --git a/Ryujinx.Graphics.Texture/Encoders/EncodeMode.cs b/src/Ryujinx.Graphics.Texture/Encoders/EncodeMode.cs
index 5734d301..5734d301 100644
--- a/Ryujinx.Graphics.Texture/Encoders/EncodeMode.cs
+++ b/src/Ryujinx.Graphics.Texture/Encoders/EncodeMode.cs
diff --git a/Ryujinx.Graphics.Texture/LayoutConverter.cs b/src/Ryujinx.Graphics.Texture/LayoutConverter.cs
index 09eaf300..09eaf300 100644
--- a/Ryujinx.Graphics.Texture/LayoutConverter.cs
+++ b/src/Ryujinx.Graphics.Texture/LayoutConverter.cs
diff --git a/Ryujinx.Graphics.Texture/OffsetCalculator.cs b/src/Ryujinx.Graphics.Texture/OffsetCalculator.cs
index d7472e2f..d7472e2f 100644
--- a/Ryujinx.Graphics.Texture/OffsetCalculator.cs
+++ b/src/Ryujinx.Graphics.Texture/OffsetCalculator.cs
diff --git a/Ryujinx.Graphics.Texture/PixelConverter.cs b/src/Ryujinx.Graphics.Texture/PixelConverter.cs
index add25cd3..add25cd3 100644
--- a/Ryujinx.Graphics.Texture/PixelConverter.cs
+++ b/src/Ryujinx.Graphics.Texture/PixelConverter.cs
diff --git a/Ryujinx.Graphics.Texture/Region.cs b/src/Ryujinx.Graphics.Texture/Region.cs
index e59888a0..e59888a0 100644
--- a/Ryujinx.Graphics.Texture/Region.cs
+++ b/src/Ryujinx.Graphics.Texture/Region.cs
diff --git a/Ryujinx.Graphics.Texture/Ryujinx.Graphics.Texture.csproj b/src/Ryujinx.Graphics.Texture/Ryujinx.Graphics.Texture.csproj
index 70e3453c..70e3453c 100644
--- a/Ryujinx.Graphics.Texture/Ryujinx.Graphics.Texture.csproj
+++ b/src/Ryujinx.Graphics.Texture/Ryujinx.Graphics.Texture.csproj
diff --git a/Ryujinx.Graphics.Texture/Size.cs b/src/Ryujinx.Graphics.Texture/Size.cs
index 21c45b38..21c45b38 100644
--- a/Ryujinx.Graphics.Texture/Size.cs
+++ b/src/Ryujinx.Graphics.Texture/Size.cs
diff --git a/Ryujinx.Graphics.Texture/SizeCalculator.cs b/src/Ryujinx.Graphics.Texture/SizeCalculator.cs
index 5568784f..5568784f 100644
--- a/Ryujinx.Graphics.Texture/SizeCalculator.cs
+++ b/src/Ryujinx.Graphics.Texture/SizeCalculator.cs
diff --git a/Ryujinx.Graphics.Texture/SizeInfo.cs b/src/Ryujinx.Graphics.Texture/SizeInfo.cs
index eb573728..eb573728 100644
--- a/Ryujinx.Graphics.Texture/SizeInfo.cs
+++ b/src/Ryujinx.Graphics.Texture/SizeInfo.cs
diff --git a/Ryujinx.Graphics.Texture/Utils/BC67Tables.cs b/src/Ryujinx.Graphics.Texture/Utils/BC67Tables.cs
index d890652c..d890652c 100644
--- a/Ryujinx.Graphics.Texture/Utils/BC67Tables.cs
+++ b/src/Ryujinx.Graphics.Texture/Utils/BC67Tables.cs
diff --git a/Ryujinx.Graphics.Texture/Utils/BC67Utils.cs b/src/Ryujinx.Graphics.Texture/Utils/BC67Utils.cs
index e6c3f6e7..e6c3f6e7 100644
--- a/Ryujinx.Graphics.Texture/Utils/BC67Utils.cs
+++ b/src/Ryujinx.Graphics.Texture/Utils/BC67Utils.cs
diff --git a/Ryujinx.Graphics.Texture/Utils/BC7ModeInfo.cs b/src/Ryujinx.Graphics.Texture/Utils/BC7ModeInfo.cs
index 687df22c..687df22c 100644
--- a/Ryujinx.Graphics.Texture/Utils/BC7ModeInfo.cs
+++ b/src/Ryujinx.Graphics.Texture/Utils/BC7ModeInfo.cs
diff --git a/Ryujinx.Graphics.Texture/Utils/Block.cs b/src/Ryujinx.Graphics.Texture/Utils/Block.cs
index a8bae077..a8bae077 100644
--- a/Ryujinx.Graphics.Texture/Utils/Block.cs
+++ b/src/Ryujinx.Graphics.Texture/Utils/Block.cs
diff --git a/Ryujinx.Graphics.Texture/Utils/RgbaColor32.cs b/src/Ryujinx.Graphics.Texture/Utils/RgbaColor32.cs
index 582044d9..582044d9 100644
--- a/Ryujinx.Graphics.Texture/Utils/RgbaColor32.cs
+++ b/src/Ryujinx.Graphics.Texture/Utils/RgbaColor32.cs
diff --git a/Ryujinx.Graphics.Texture/Utils/RgbaColor8.cs b/src/Ryujinx.Graphics.Texture/Utils/RgbaColor8.cs
index 0edf1cce..0edf1cce 100644
--- a/Ryujinx.Graphics.Texture/Utils/RgbaColor8.cs
+++ b/src/Ryujinx.Graphics.Texture/Utils/RgbaColor8.cs
diff --git a/Ryujinx.Graphics.Vic/Blender.cs b/src/Ryujinx.Graphics.Vic/Blender.cs
index e49b5903..e49b5903 100644
--- a/Ryujinx.Graphics.Vic/Blender.cs
+++ b/src/Ryujinx.Graphics.Vic/Blender.cs
diff --git a/Ryujinx.Graphics.Vic/Image/BufferPool.cs b/src/Ryujinx.Graphics.Vic/Image/BufferPool.cs
index cde7e6eb..cde7e6eb 100644
--- a/Ryujinx.Graphics.Vic/Image/BufferPool.cs
+++ b/src/Ryujinx.Graphics.Vic/Image/BufferPool.cs
diff --git a/Ryujinx.Graphics.Vic/Image/InputSurface.cs b/src/Ryujinx.Graphics.Vic/Image/InputSurface.cs
index 15ac0460..15ac0460 100644
--- a/Ryujinx.Graphics.Vic/Image/InputSurface.cs
+++ b/src/Ryujinx.Graphics.Vic/Image/InputSurface.cs
diff --git a/Ryujinx.Graphics.Vic/Image/Pixel.cs b/src/Ryujinx.Graphics.Vic/Image/Pixel.cs
index 35f25d16..35f25d16 100644
--- a/Ryujinx.Graphics.Vic/Image/Pixel.cs
+++ b/src/Ryujinx.Graphics.Vic/Image/Pixel.cs
diff --git a/Ryujinx.Graphics.Vic/Image/Surface.cs b/src/Ryujinx.Graphics.Vic/Image/Surface.cs
index f393eb15..f393eb15 100644
--- a/Ryujinx.Graphics.Vic/Image/Surface.cs
+++ b/src/Ryujinx.Graphics.Vic/Image/Surface.cs
diff --git a/Ryujinx.Graphics.Vic/Image/SurfaceCommon.cs b/src/Ryujinx.Graphics.Vic/Image/SurfaceCommon.cs
index 10cdefe2..10cdefe2 100644
--- a/Ryujinx.Graphics.Vic/Image/SurfaceCommon.cs
+++ b/src/Ryujinx.Graphics.Vic/Image/SurfaceCommon.cs
diff --git a/Ryujinx.Graphics.Vic/Image/SurfaceReader.cs b/src/Ryujinx.Graphics.Vic/Image/SurfaceReader.cs
index 10fd9d8d..10fd9d8d 100644
--- a/Ryujinx.Graphics.Vic/Image/SurfaceReader.cs
+++ b/src/Ryujinx.Graphics.Vic/Image/SurfaceReader.cs
diff --git a/Ryujinx.Graphics.Vic/Image/SurfaceWriter.cs b/src/Ryujinx.Graphics.Vic/Image/SurfaceWriter.cs
index 37d261f9..37d261f9 100644
--- a/Ryujinx.Graphics.Vic/Image/SurfaceWriter.cs
+++ b/src/Ryujinx.Graphics.Vic/Image/SurfaceWriter.cs
diff --git a/Ryujinx.Graphics.Vic/Rectangle.cs b/src/Ryujinx.Graphics.Vic/Rectangle.cs
index 8a8dd63a..8a8dd63a 100644
--- a/Ryujinx.Graphics.Vic/Rectangle.cs
+++ b/src/Ryujinx.Graphics.Vic/Rectangle.cs
diff --git a/Ryujinx.Graphics.Vic/ResourceManager.cs b/src/Ryujinx.Graphics.Vic/ResourceManager.cs
index 7c3f507e..7c3f507e 100644
--- a/Ryujinx.Graphics.Vic/ResourceManager.cs
+++ b/src/Ryujinx.Graphics.Vic/ResourceManager.cs
diff --git a/Ryujinx.Graphics.Vic/Ryujinx.Graphics.Vic.csproj b/src/Ryujinx.Graphics.Vic/Ryujinx.Graphics.Vic.csproj
index 2a7cdd98..2a7cdd98 100644
--- a/Ryujinx.Graphics.Vic/Ryujinx.Graphics.Vic.csproj
+++ b/src/Ryujinx.Graphics.Vic/Ryujinx.Graphics.Vic.csproj
diff --git a/Ryujinx.Graphics.Vic/Scaler.cs b/src/Ryujinx.Graphics.Vic/Scaler.cs
index 18ae66c4..18ae66c4 100644
--- a/Ryujinx.Graphics.Vic/Scaler.cs
+++ b/src/Ryujinx.Graphics.Vic/Scaler.cs
diff --git a/Ryujinx.Graphics.Vic/Types/BlendingSlotStruct.cs b/src/Ryujinx.Graphics.Vic/Types/BlendingSlotStruct.cs
index 86da41d2..86da41d2 100644
--- a/Ryujinx.Graphics.Vic/Types/BlendingSlotStruct.cs
+++ b/src/Ryujinx.Graphics.Vic/Types/BlendingSlotStruct.cs
diff --git a/Ryujinx.Graphics.Vic/Types/ClearRectStruct.cs b/src/Ryujinx.Graphics.Vic/Types/ClearRectStruct.cs
index ae582a92..ae582a92 100644
--- a/Ryujinx.Graphics.Vic/Types/ClearRectStruct.cs
+++ b/src/Ryujinx.Graphics.Vic/Types/ClearRectStruct.cs
diff --git a/Ryujinx.Graphics.Vic/Types/ConfigStruct.cs b/src/Ryujinx.Graphics.Vic/Types/ConfigStruct.cs
index 5edc8183..5edc8183 100644
--- a/Ryujinx.Graphics.Vic/Types/ConfigStruct.cs
+++ b/src/Ryujinx.Graphics.Vic/Types/ConfigStruct.cs
diff --git a/Ryujinx.Graphics.Vic/Types/DeinterlaceMode.cs b/src/Ryujinx.Graphics.Vic/Types/DeinterlaceMode.cs
index aa0654f0..aa0654f0 100644
--- a/Ryujinx.Graphics.Vic/Types/DeinterlaceMode.cs
+++ b/src/Ryujinx.Graphics.Vic/Types/DeinterlaceMode.cs
diff --git a/Ryujinx.Graphics.Vic/Types/FrameFormat.cs b/src/Ryujinx.Graphics.Vic/Types/FrameFormat.cs
index 91f5751b..91f5751b 100644
--- a/Ryujinx.Graphics.Vic/Types/FrameFormat.cs
+++ b/src/Ryujinx.Graphics.Vic/Types/FrameFormat.cs
diff --git a/Ryujinx.Graphics.Vic/Types/LumaKeyStruct.cs b/src/Ryujinx.Graphics.Vic/Types/LumaKeyStruct.cs
index 5d83bd71..5d83bd71 100644
--- a/Ryujinx.Graphics.Vic/Types/LumaKeyStruct.cs
+++ b/src/Ryujinx.Graphics.Vic/Types/LumaKeyStruct.cs
diff --git a/Ryujinx.Graphics.Vic/Types/MatrixStruct.cs b/src/Ryujinx.Graphics.Vic/Types/MatrixStruct.cs
index c0a4c34e..c0a4c34e 100644
--- a/Ryujinx.Graphics.Vic/Types/MatrixStruct.cs
+++ b/src/Ryujinx.Graphics.Vic/Types/MatrixStruct.cs
diff --git a/Ryujinx.Graphics.Vic/Types/OutputConfig.cs b/src/Ryujinx.Graphics.Vic/Types/OutputConfig.cs
index 7b866994..7b866994 100644
--- a/Ryujinx.Graphics.Vic/Types/OutputConfig.cs
+++ b/src/Ryujinx.Graphics.Vic/Types/OutputConfig.cs
diff --git a/Ryujinx.Graphics.Vic/Types/OutputSurfaceConfig.cs b/src/Ryujinx.Graphics.Vic/Types/OutputSurfaceConfig.cs
index 6a8b21e1..6a8b21e1 100644
--- a/Ryujinx.Graphics.Vic/Types/OutputSurfaceConfig.cs
+++ b/src/Ryujinx.Graphics.Vic/Types/OutputSurfaceConfig.cs
diff --git a/Ryujinx.Graphics.Vic/Types/PipeConfig.cs b/src/Ryujinx.Graphics.Vic/Types/PipeConfig.cs
index 76720eb1..76720eb1 100644
--- a/Ryujinx.Graphics.Vic/Types/PipeConfig.cs
+++ b/src/Ryujinx.Graphics.Vic/Types/PipeConfig.cs
diff --git a/Ryujinx.Graphics.Vic/Types/PixelFormat.cs b/src/Ryujinx.Graphics.Vic/Types/PixelFormat.cs
index 72dc7899..72dc7899 100644
--- a/Ryujinx.Graphics.Vic/Types/PixelFormat.cs
+++ b/src/Ryujinx.Graphics.Vic/Types/PixelFormat.cs
diff --git a/Ryujinx.Graphics.Vic/Types/SlotConfig.cs b/src/Ryujinx.Graphics.Vic/Types/SlotConfig.cs
index aba61add..aba61add 100644
--- a/Ryujinx.Graphics.Vic/Types/SlotConfig.cs
+++ b/src/Ryujinx.Graphics.Vic/Types/SlotConfig.cs
diff --git a/Ryujinx.Graphics.Vic/Types/SlotStruct.cs b/src/Ryujinx.Graphics.Vic/Types/SlotStruct.cs
index 96c6cce5..96c6cce5 100644
--- a/Ryujinx.Graphics.Vic/Types/SlotStruct.cs
+++ b/src/Ryujinx.Graphics.Vic/Types/SlotStruct.cs
diff --git a/Ryujinx.Graphics.Vic/Types/SlotSurfaceConfig.cs b/src/Ryujinx.Graphics.Vic/Types/SlotSurfaceConfig.cs
index 4492c85f..4492c85f 100644
--- a/Ryujinx.Graphics.Vic/Types/SlotSurfaceConfig.cs
+++ b/src/Ryujinx.Graphics.Vic/Types/SlotSurfaceConfig.cs
diff --git a/Ryujinx.Graphics.Vic/VicDevice.cs b/src/Ryujinx.Graphics.Vic/VicDevice.cs
index 8b66727d..8b66727d 100644
--- a/Ryujinx.Graphics.Vic/VicDevice.cs
+++ b/src/Ryujinx.Graphics.Vic/VicDevice.cs
diff --git a/Ryujinx.Graphics.Vic/VicRegisters.cs b/src/Ryujinx.Graphics.Vic/VicRegisters.cs
index 1c11b554..1c11b554 100644
--- a/Ryujinx.Graphics.Vic/VicRegisters.cs
+++ b/src/Ryujinx.Graphics.Vic/VicRegisters.cs
diff --git a/Ryujinx.Graphics.Video/FrameField.cs b/src/Ryujinx.Graphics.Video/FrameField.cs
index 2bff0e75..2bff0e75 100644
--- a/Ryujinx.Graphics.Video/FrameField.cs
+++ b/src/Ryujinx.Graphics.Video/FrameField.cs
diff --git a/Ryujinx.Graphics.Video/H264PictureInfo.cs b/src/Ryujinx.Graphics.Video/H264PictureInfo.cs
index 3b2c2fff..3b2c2fff 100644
--- a/Ryujinx.Graphics.Video/H264PictureInfo.cs
+++ b/src/Ryujinx.Graphics.Video/H264PictureInfo.cs
diff --git a/Ryujinx.Graphics.Video/IDecoder.cs b/src/Ryujinx.Graphics.Video/IDecoder.cs
index 5957af08..5957af08 100644
--- a/Ryujinx.Graphics.Video/IDecoder.cs
+++ b/src/Ryujinx.Graphics.Video/IDecoder.cs
diff --git a/Ryujinx.Graphics.Video/IH264Decoder.cs b/src/Ryujinx.Graphics.Video/IH264Decoder.cs
index 127b9412..127b9412 100644
--- a/Ryujinx.Graphics.Video/IH264Decoder.cs
+++ b/src/Ryujinx.Graphics.Video/IH264Decoder.cs
diff --git a/Ryujinx.Graphics.Video/ISurface.cs b/src/Ryujinx.Graphics.Video/ISurface.cs
index 7c1661f1..7c1661f1 100644
--- a/Ryujinx.Graphics.Video/ISurface.cs
+++ b/src/Ryujinx.Graphics.Video/ISurface.cs
diff --git a/Ryujinx.Graphics.Video/IVp9Decoder.cs b/src/Ryujinx.Graphics.Video/IVp9Decoder.cs
index ac79bc42..ac79bc42 100644
--- a/Ryujinx.Graphics.Video/IVp9Decoder.cs
+++ b/src/Ryujinx.Graphics.Video/IVp9Decoder.cs
diff --git a/Ryujinx.Graphics.Video/Plane.cs b/src/Ryujinx.Graphics.Video/Plane.cs
index 1a2ad251..1a2ad251 100644
--- a/Ryujinx.Graphics.Video/Plane.cs
+++ b/src/Ryujinx.Graphics.Video/Plane.cs
diff --git a/Ryujinx.Graphics.Video/Ryujinx.Graphics.Video.csproj b/src/Ryujinx.Graphics.Video/Ryujinx.Graphics.Video.csproj
index 9cf37670..9cf37670 100644
--- a/Ryujinx.Graphics.Video/Ryujinx.Graphics.Video.csproj
+++ b/src/Ryujinx.Graphics.Video/Ryujinx.Graphics.Video.csproj
diff --git a/Ryujinx.Graphics.Video/Vp8PictureInfo.cs b/src/Ryujinx.Graphics.Video/Vp8PictureInfo.cs
index 878674b8..878674b8 100644
--- a/Ryujinx.Graphics.Video/Vp8PictureInfo.cs
+++ b/src/Ryujinx.Graphics.Video/Vp8PictureInfo.cs
diff --git a/Ryujinx.Graphics.Video/Vp9BackwardUpdates.cs b/src/Ryujinx.Graphics.Video/Vp9BackwardUpdates.cs
index a3aa4de7..a3aa4de7 100644
--- a/Ryujinx.Graphics.Video/Vp9BackwardUpdates.cs
+++ b/src/Ryujinx.Graphics.Video/Vp9BackwardUpdates.cs
diff --git a/Ryujinx.Graphics.Video/Vp9EntropyProbs.cs b/src/Ryujinx.Graphics.Video/Vp9EntropyProbs.cs
index 10b997a5..10b997a5 100644
--- a/Ryujinx.Graphics.Video/Vp9EntropyProbs.cs
+++ b/src/Ryujinx.Graphics.Video/Vp9EntropyProbs.cs
diff --git a/Ryujinx.Graphics.Video/Vp9Mv.cs b/src/Ryujinx.Graphics.Video/Vp9Mv.cs
index 9de41058..9de41058 100644
--- a/Ryujinx.Graphics.Video/Vp9Mv.cs
+++ b/src/Ryujinx.Graphics.Video/Vp9Mv.cs
diff --git a/Ryujinx.Graphics.Video/Vp9MvRef.cs b/src/Ryujinx.Graphics.Video/Vp9MvRef.cs
index 6f2d8e81..6f2d8e81 100644
--- a/Ryujinx.Graphics.Video/Vp9MvRef.cs
+++ b/src/Ryujinx.Graphics.Video/Vp9MvRef.cs
diff --git a/Ryujinx.Graphics.Video/Vp9PictureInfo.cs b/src/Ryujinx.Graphics.Video/Vp9PictureInfo.cs
index a5cc2b45..a5cc2b45 100644
--- a/Ryujinx.Graphics.Video/Vp9PictureInfo.cs
+++ b/src/Ryujinx.Graphics.Video/Vp9PictureInfo.cs
diff --git a/Ryujinx.Graphics.Vulkan/Auto.cs b/src/Ryujinx.Graphics.Vulkan/Auto.cs
index 77261de9..77261de9 100644
--- a/Ryujinx.Graphics.Vulkan/Auto.cs
+++ b/src/Ryujinx.Graphics.Vulkan/Auto.cs
diff --git a/Ryujinx.Graphics.Vulkan/AutoFlushCounter.cs b/src/Ryujinx.Graphics.Vulkan/AutoFlushCounter.cs
index 4e2a9d6b..4e2a9d6b 100644
--- a/Ryujinx.Graphics.Vulkan/AutoFlushCounter.cs
+++ b/src/Ryujinx.Graphics.Vulkan/AutoFlushCounter.cs
diff --git a/Ryujinx.Graphics.Vulkan/BackgroundResources.cs b/src/Ryujinx.Graphics.Vulkan/BackgroundResources.cs
index b93b7a25..b93b7a25 100644
--- a/Ryujinx.Graphics.Vulkan/BackgroundResources.cs
+++ b/src/Ryujinx.Graphics.Vulkan/BackgroundResources.cs
diff --git a/Ryujinx.Graphics.Vulkan/BitMap.cs b/src/Ryujinx.Graphics.Vulkan/BitMap.cs
index efa71fc7..efa71fc7 100644
--- a/Ryujinx.Graphics.Vulkan/BitMap.cs
+++ b/src/Ryujinx.Graphics.Vulkan/BitMap.cs
diff --git a/Ryujinx.Graphics.Vulkan/BufferAllocationType.cs b/src/Ryujinx.Graphics.Vulkan/BufferAllocationType.cs
index 81489041..81489041 100644
--- a/Ryujinx.Graphics.Vulkan/BufferAllocationType.cs
+++ b/src/Ryujinx.Graphics.Vulkan/BufferAllocationType.cs
diff --git a/Ryujinx.Graphics.Vulkan/BufferHolder.cs b/src/Ryujinx.Graphics.Vulkan/BufferHolder.cs
index 21b81bdd..21b81bdd 100644
--- a/Ryujinx.Graphics.Vulkan/BufferHolder.cs
+++ b/src/Ryujinx.Graphics.Vulkan/BufferHolder.cs
diff --git a/Ryujinx.Graphics.Vulkan/BufferManager.cs b/src/Ryujinx.Graphics.Vulkan/BufferManager.cs
index f8f41e5b..f8f41e5b 100644
--- a/Ryujinx.Graphics.Vulkan/BufferManager.cs
+++ b/src/Ryujinx.Graphics.Vulkan/BufferManager.cs
diff --git a/Ryujinx.Graphics.Vulkan/BufferState.cs b/src/Ryujinx.Graphics.Vulkan/BufferState.cs
index 6829f833..6829f833 100644
--- a/Ryujinx.Graphics.Vulkan/BufferState.cs
+++ b/src/Ryujinx.Graphics.Vulkan/BufferState.cs
diff --git a/Ryujinx.Graphics.Vulkan/BufferUsageBitmap.cs b/src/Ryujinx.Graphics.Vulkan/BufferUsageBitmap.cs
index 920501d3..920501d3 100644
--- a/Ryujinx.Graphics.Vulkan/BufferUsageBitmap.cs
+++ b/src/Ryujinx.Graphics.Vulkan/BufferUsageBitmap.cs
diff --git a/Ryujinx.Graphics.Vulkan/CacheByRange.cs b/src/Ryujinx.Graphics.Vulkan/CacheByRange.cs
index a9d1b0ef..a9d1b0ef 100644
--- a/Ryujinx.Graphics.Vulkan/CacheByRange.cs
+++ b/src/Ryujinx.Graphics.Vulkan/CacheByRange.cs
diff --git a/Ryujinx.Graphics.Vulkan/CommandBufferPool.cs b/src/Ryujinx.Graphics.Vulkan/CommandBufferPool.cs
index 4cbb24ef..4cbb24ef 100644
--- a/Ryujinx.Graphics.Vulkan/CommandBufferPool.cs
+++ b/src/Ryujinx.Graphics.Vulkan/CommandBufferPool.cs
diff --git a/Ryujinx.Graphics.Vulkan/CommandBufferScoped.cs b/src/Ryujinx.Graphics.Vulkan/CommandBufferScoped.cs
index 1d9e14bb..1d9e14bb 100644
--- a/Ryujinx.Graphics.Vulkan/CommandBufferScoped.cs
+++ b/src/Ryujinx.Graphics.Vulkan/CommandBufferScoped.cs
diff --git a/Ryujinx.Graphics.Vulkan/Constants.cs b/src/Ryujinx.Graphics.Vulkan/Constants.cs
index f43d815a..f43d815a 100644
--- a/Ryujinx.Graphics.Vulkan/Constants.cs
+++ b/src/Ryujinx.Graphics.Vulkan/Constants.cs
diff --git a/Ryujinx.Graphics.Vulkan/DescriptorSetCollection.cs b/src/Ryujinx.Graphics.Vulkan/DescriptorSetCollection.cs
index c57cb1a9..c57cb1a9 100644
--- a/Ryujinx.Graphics.Vulkan/DescriptorSetCollection.cs
+++ b/src/Ryujinx.Graphics.Vulkan/DescriptorSetCollection.cs
diff --git a/Ryujinx.Graphics.Vulkan/DescriptorSetManager.cs b/src/Ryujinx.Graphics.Vulkan/DescriptorSetManager.cs
index a88bb7b1..a88bb7b1 100644
--- a/Ryujinx.Graphics.Vulkan/DescriptorSetManager.cs
+++ b/src/Ryujinx.Graphics.Vulkan/DescriptorSetManager.cs
diff --git a/Ryujinx.Graphics.Vulkan/DescriptorSetUpdater.cs b/src/Ryujinx.Graphics.Vulkan/DescriptorSetUpdater.cs
index ab3befd8..ab3befd8 100644
--- a/Ryujinx.Graphics.Vulkan/DescriptorSetUpdater.cs
+++ b/src/Ryujinx.Graphics.Vulkan/DescriptorSetUpdater.cs
diff --git a/Ryujinx.Graphics.Vulkan/DisposableBuffer.cs b/src/Ryujinx.Graphics.Vulkan/DisposableBuffer.cs
index 0f474f97..0f474f97 100644
--- a/Ryujinx.Graphics.Vulkan/DisposableBuffer.cs
+++ b/src/Ryujinx.Graphics.Vulkan/DisposableBuffer.cs
diff --git a/Ryujinx.Graphics.Vulkan/DisposableBufferView.cs b/src/Ryujinx.Graphics.Vulkan/DisposableBufferView.cs
index e81ca412..e81ca412 100644
--- a/Ryujinx.Graphics.Vulkan/DisposableBufferView.cs
+++ b/src/Ryujinx.Graphics.Vulkan/DisposableBufferView.cs
diff --git a/Ryujinx.Graphics.Vulkan/DisposableFramebuffer.cs b/src/Ryujinx.Graphics.Vulkan/DisposableFramebuffer.cs
index 5b195354..5b195354 100644
--- a/Ryujinx.Graphics.Vulkan/DisposableFramebuffer.cs
+++ b/src/Ryujinx.Graphics.Vulkan/DisposableFramebuffer.cs
diff --git a/Ryujinx.Graphics.Vulkan/DisposableImage.cs b/src/Ryujinx.Graphics.Vulkan/DisposableImage.cs
index c76091b7..c76091b7 100644
--- a/Ryujinx.Graphics.Vulkan/DisposableImage.cs
+++ b/src/Ryujinx.Graphics.Vulkan/DisposableImage.cs
diff --git a/Ryujinx.Graphics.Vulkan/DisposableImageView.cs b/src/Ryujinx.Graphics.Vulkan/DisposableImageView.cs
index 3b3bf6ad..3b3bf6ad 100644
--- a/Ryujinx.Graphics.Vulkan/DisposableImageView.cs
+++ b/src/Ryujinx.Graphics.Vulkan/DisposableImageView.cs
diff --git a/Ryujinx.Graphics.Vulkan/DisposableMemory.cs b/src/Ryujinx.Graphics.Vulkan/DisposableMemory.cs
index 638989ac..638989ac 100644
--- a/Ryujinx.Graphics.Vulkan/DisposableMemory.cs
+++ b/src/Ryujinx.Graphics.Vulkan/DisposableMemory.cs
diff --git a/Ryujinx.Graphics.Vulkan/DisposablePipeline.cs b/src/Ryujinx.Graphics.Vulkan/DisposablePipeline.cs
index 6e5cf4db..6e5cf4db 100644
--- a/Ryujinx.Graphics.Vulkan/DisposablePipeline.cs
+++ b/src/Ryujinx.Graphics.Vulkan/DisposablePipeline.cs
diff --git a/Ryujinx.Graphics.Vulkan/DisposableRenderPass.cs b/src/Ryujinx.Graphics.Vulkan/DisposableRenderPass.cs
index 65652f41..65652f41 100644
--- a/Ryujinx.Graphics.Vulkan/DisposableRenderPass.cs
+++ b/src/Ryujinx.Graphics.Vulkan/DisposableRenderPass.cs
diff --git a/Ryujinx.Graphics.Vulkan/DisposableSampler.cs b/src/Ryujinx.Graphics.Vulkan/DisposableSampler.cs
index 4788b192..4788b192 100644
--- a/Ryujinx.Graphics.Vulkan/DisposableSampler.cs
+++ b/src/Ryujinx.Graphics.Vulkan/DisposableSampler.cs
diff --git a/Ryujinx.Graphics.Vulkan/Effects/FsrScalingFilter.cs b/src/Ryujinx.Graphics.Vulkan/Effects/FsrScalingFilter.cs
index 5f15f15f..5f15f15f 100644
--- a/Ryujinx.Graphics.Vulkan/Effects/FsrScalingFilter.cs
+++ b/src/Ryujinx.Graphics.Vulkan/Effects/FsrScalingFilter.cs
diff --git a/Ryujinx.Graphics.Vulkan/Effects/FxaaPostProcessingEffect.cs b/src/Ryujinx.Graphics.Vulkan/Effects/FxaaPostProcessingEffect.cs
index b7316d85..b7316d85 100644
--- a/Ryujinx.Graphics.Vulkan/Effects/FxaaPostProcessingEffect.cs
+++ b/src/Ryujinx.Graphics.Vulkan/Effects/FxaaPostProcessingEffect.cs
diff --git a/Ryujinx.Graphics.Vulkan/Effects/IPostProcessingEffect.cs b/src/Ryujinx.Graphics.Vulkan/Effects/IPostProcessingEffect.cs
index d36cf01d..d36cf01d 100644
--- a/Ryujinx.Graphics.Vulkan/Effects/IPostProcessingEffect.cs
+++ b/src/Ryujinx.Graphics.Vulkan/Effects/IPostProcessingEffect.cs
diff --git a/Ryujinx.Graphics.Vulkan/Effects/IScalingFilter.cs b/src/Ryujinx.Graphics.Vulkan/Effects/IScalingFilter.cs
index 54f809d7..54f809d7 100644
--- a/Ryujinx.Graphics.Vulkan/Effects/IScalingFilter.cs
+++ b/src/Ryujinx.Graphics.Vulkan/Effects/IScalingFilter.cs
diff --git a/Ryujinx.Graphics.Vulkan/Effects/Shaders/FsrScaling.glsl b/src/Ryujinx.Graphics.Vulkan/Effects/Shaders/FsrScaling.glsl
index 5eb74b3d..5eb74b3d 100644
--- a/Ryujinx.Graphics.Vulkan/Effects/Shaders/FsrScaling.glsl
+++ b/src/Ryujinx.Graphics.Vulkan/Effects/Shaders/FsrScaling.glsl
diff --git a/Ryujinx.Graphics.Vulkan/Effects/Shaders/FsrScaling.spv b/src/Ryujinx.Graphics.Vulkan/Effects/Shaders/FsrScaling.spv
index c15b72ec..c15b72ec 100644
--- a/Ryujinx.Graphics.Vulkan/Effects/Shaders/FsrScaling.spv
+++ b/src/Ryujinx.Graphics.Vulkan/Effects/Shaders/FsrScaling.spv
Binary files differ
diff --git a/Ryujinx.Graphics.Vulkan/Effects/Shaders/FsrSharpening.glsl b/src/Ryujinx.Graphics.Vulkan/Effects/Shaders/FsrSharpening.glsl
index 785bc0c8..785bc0c8 100644
--- a/Ryujinx.Graphics.Vulkan/Effects/Shaders/FsrSharpening.glsl
+++ b/src/Ryujinx.Graphics.Vulkan/Effects/Shaders/FsrSharpening.glsl
diff --git a/Ryujinx.Graphics.Vulkan/Effects/Shaders/FsrSharpening.spv b/src/Ryujinx.Graphics.Vulkan/Effects/Shaders/FsrSharpening.spv
index b2e30e1f..b2e30e1f 100644
--- a/Ryujinx.Graphics.Vulkan/Effects/Shaders/FsrSharpening.spv
+++ b/src/Ryujinx.Graphics.Vulkan/Effects/Shaders/FsrSharpening.spv
Binary files differ
diff --git a/Ryujinx.Graphics.Vulkan/Effects/Shaders/Fxaa.glsl b/src/Ryujinx.Graphics.Vulkan/Effects/Shaders/Fxaa.glsl
index f197c64c..f197c64c 100644
--- a/Ryujinx.Graphics.Vulkan/Effects/Shaders/Fxaa.glsl
+++ b/src/Ryujinx.Graphics.Vulkan/Effects/Shaders/Fxaa.glsl
diff --git a/Ryujinx.Graphics.Vulkan/Effects/Shaders/Fxaa.spv b/src/Ryujinx.Graphics.Vulkan/Effects/Shaders/Fxaa.spv
index b466bcb6..b466bcb6 100644
--- a/Ryujinx.Graphics.Vulkan/Effects/Shaders/Fxaa.spv
+++ b/src/Ryujinx.Graphics.Vulkan/Effects/Shaders/Fxaa.spv
Binary files differ
diff --git a/Ryujinx.Graphics.Vulkan/Effects/Shaders/SmaaBlend.glsl b/src/Ryujinx.Graphics.Vulkan/Effects/Shaders/SmaaBlend.glsl
index a518cf25..a518cf25 100644
--- a/Ryujinx.Graphics.Vulkan/Effects/Shaders/SmaaBlend.glsl
+++ b/src/Ryujinx.Graphics.Vulkan/Effects/Shaders/SmaaBlend.glsl
diff --git a/Ryujinx.Graphics.Vulkan/Effects/Shaders/SmaaBlend.spv b/src/Ryujinx.Graphics.Vulkan/Effects/Shaders/SmaaBlend.spv
index 8efa011f..8efa011f 100644
--- a/Ryujinx.Graphics.Vulkan/Effects/Shaders/SmaaBlend.spv
+++ b/src/Ryujinx.Graphics.Vulkan/Effects/Shaders/SmaaBlend.spv
Binary files differ
diff --git a/Ryujinx.Graphics.Vulkan/Effects/Shaders/SmaaEdge.glsl b/src/Ryujinx.Graphics.Vulkan/Effects/Shaders/SmaaEdge.glsl
index 668b97d5..668b97d5 100644
--- a/Ryujinx.Graphics.Vulkan/Effects/Shaders/SmaaEdge.glsl
+++ b/src/Ryujinx.Graphics.Vulkan/Effects/Shaders/SmaaEdge.glsl
diff --git a/Ryujinx.Graphics.Vulkan/Effects/Shaders/SmaaEdge.spv b/src/Ryujinx.Graphics.Vulkan/Effects/Shaders/SmaaEdge.spv
index 1062a9e3..1062a9e3 100644
--- a/Ryujinx.Graphics.Vulkan/Effects/Shaders/SmaaEdge.spv
+++ b/src/Ryujinx.Graphics.Vulkan/Effects/Shaders/SmaaEdge.spv
Binary files differ
diff --git a/Ryujinx.Graphics.Vulkan/Effects/Shaders/SmaaNeighbour.glsl b/src/Ryujinx.Graphics.Vulkan/Effects/Shaders/SmaaNeighbour.glsl
index df30d727..df30d727 100644
--- a/Ryujinx.Graphics.Vulkan/Effects/Shaders/SmaaNeighbour.glsl
+++ b/src/Ryujinx.Graphics.Vulkan/Effects/Shaders/SmaaNeighbour.glsl
diff --git a/Ryujinx.Graphics.Vulkan/Effects/Shaders/SmaaNeighbour.spv b/src/Ryujinx.Graphics.Vulkan/Effects/Shaders/SmaaNeighbour.spv
index fa0208f2..fa0208f2 100644
--- a/Ryujinx.Graphics.Vulkan/Effects/Shaders/SmaaNeighbour.spv
+++ b/src/Ryujinx.Graphics.Vulkan/Effects/Shaders/SmaaNeighbour.spv
Binary files differ
diff --git a/Ryujinx.Graphics.Vulkan/Effects/SmaaConstants.cs b/src/Ryujinx.Graphics.Vulkan/Effects/SmaaConstants.cs
index a5f060f1..a5f060f1 100644
--- a/Ryujinx.Graphics.Vulkan/Effects/SmaaConstants.cs
+++ b/src/Ryujinx.Graphics.Vulkan/Effects/SmaaConstants.cs
diff --git a/Ryujinx.Graphics.Vulkan/Effects/SmaaPostProcessingEffect.cs b/src/Ryujinx.Graphics.Vulkan/Effects/SmaaPostProcessingEffect.cs
index 38f86bae..38f86bae 100644
--- a/Ryujinx.Graphics.Vulkan/Effects/SmaaPostProcessingEffect.cs
+++ b/src/Ryujinx.Graphics.Vulkan/Effects/SmaaPostProcessingEffect.cs
diff --git a/Ryujinx.Graphics.Vulkan/Effects/Textures/SmaaAreaTexture.bin b/src/Ryujinx.Graphics.Vulkan/Effects/Textures/SmaaAreaTexture.bin
index f4a7a1b4..f4a7a1b4 100644
--- a/Ryujinx.Graphics.Vulkan/Effects/Textures/SmaaAreaTexture.bin
+++ b/src/Ryujinx.Graphics.Vulkan/Effects/Textures/SmaaAreaTexture.bin
Binary files differ
diff --git a/Ryujinx.Graphics.Vulkan/Effects/Textures/SmaaSearchTexture.bin b/src/Ryujinx.Graphics.Vulkan/Effects/Textures/SmaaSearchTexture.bin
index db5bf73f..db5bf73f 100644
--- a/Ryujinx.Graphics.Vulkan/Effects/Textures/SmaaSearchTexture.bin
+++ b/src/Ryujinx.Graphics.Vulkan/Effects/Textures/SmaaSearchTexture.bin
Binary files differ
diff --git a/Ryujinx.Graphics.Vulkan/EnumConversion.cs b/src/Ryujinx.Graphics.Vulkan/EnumConversion.cs
index b69c64aa..b69c64aa 100644
--- a/Ryujinx.Graphics.Vulkan/EnumConversion.cs
+++ b/src/Ryujinx.Graphics.Vulkan/EnumConversion.cs
diff --git a/Ryujinx.Graphics.Vulkan/FenceHelper.cs b/src/Ryujinx.Graphics.Vulkan/FenceHelper.cs
index d6731c0e..d6731c0e 100644
--- a/Ryujinx.Graphics.Vulkan/FenceHelper.cs
+++ b/src/Ryujinx.Graphics.Vulkan/FenceHelper.cs
diff --git a/Ryujinx.Graphics.Vulkan/FenceHolder.cs b/src/Ryujinx.Graphics.Vulkan/FenceHolder.cs
index 1c1e6240..1c1e6240 100644
--- a/Ryujinx.Graphics.Vulkan/FenceHolder.cs
+++ b/src/Ryujinx.Graphics.Vulkan/FenceHolder.cs
diff --git a/Ryujinx.Graphics.Vulkan/FormatCapabilities.cs b/src/Ryujinx.Graphics.Vulkan/FormatCapabilities.cs
index 7019dfd9..7019dfd9 100644
--- a/Ryujinx.Graphics.Vulkan/FormatCapabilities.cs
+++ b/src/Ryujinx.Graphics.Vulkan/FormatCapabilities.cs
diff --git a/Ryujinx.Graphics.Vulkan/FormatConverter.cs b/src/Ryujinx.Graphics.Vulkan/FormatConverter.cs
index 33472ae4..33472ae4 100644
--- a/Ryujinx.Graphics.Vulkan/FormatConverter.cs
+++ b/src/Ryujinx.Graphics.Vulkan/FormatConverter.cs
diff --git a/Ryujinx.Graphics.Vulkan/FormatTable.cs b/src/Ryujinx.Graphics.Vulkan/FormatTable.cs
index 45fc46ad..45fc46ad 100644
--- a/Ryujinx.Graphics.Vulkan/FormatTable.cs
+++ b/src/Ryujinx.Graphics.Vulkan/FormatTable.cs
diff --git a/Ryujinx.Graphics.Vulkan/FramebufferParams.cs b/src/Ryujinx.Graphics.Vulkan/FramebufferParams.cs
index cde99202..cde99202 100644
--- a/Ryujinx.Graphics.Vulkan/FramebufferParams.cs
+++ b/src/Ryujinx.Graphics.Vulkan/FramebufferParams.cs
diff --git a/Ryujinx.Graphics.Vulkan/HardwareCapabilities.cs b/src/Ryujinx.Graphics.Vulkan/HardwareCapabilities.cs
index ab82d7b4..ab82d7b4 100644
--- a/Ryujinx.Graphics.Vulkan/HardwareCapabilities.cs
+++ b/src/Ryujinx.Graphics.Vulkan/HardwareCapabilities.cs
diff --git a/Ryujinx.Graphics.Vulkan/HashTableSlim.cs b/src/Ryujinx.Graphics.Vulkan/HashTableSlim.cs
index e4ad3958..e4ad3958 100644
--- a/Ryujinx.Graphics.Vulkan/HashTableSlim.cs
+++ b/src/Ryujinx.Graphics.Vulkan/HashTableSlim.cs
diff --git a/Ryujinx.Graphics.Vulkan/HelperShader.cs b/src/Ryujinx.Graphics.Vulkan/HelperShader.cs
index c57edaf7..c57edaf7 100644
--- a/Ryujinx.Graphics.Vulkan/HelperShader.cs
+++ b/src/Ryujinx.Graphics.Vulkan/HelperShader.cs
diff --git a/Ryujinx.Graphics.Vulkan/IdList.cs b/src/Ryujinx.Graphics.Vulkan/IdList.cs
index 9fba9fe9..9fba9fe9 100644
--- a/Ryujinx.Graphics.Vulkan/IdList.cs
+++ b/src/Ryujinx.Graphics.Vulkan/IdList.cs
diff --git a/Ryujinx.Graphics.Vulkan/IndexBufferPattern.cs b/src/Ryujinx.Graphics.Vulkan/IndexBufferPattern.cs
index 11f4ec33..11f4ec33 100644
--- a/Ryujinx.Graphics.Vulkan/IndexBufferPattern.cs
+++ b/src/Ryujinx.Graphics.Vulkan/IndexBufferPattern.cs
diff --git a/Ryujinx.Graphics.Vulkan/IndexBufferState.cs b/src/Ryujinx.Graphics.Vulkan/IndexBufferState.cs
index 75b18456..75b18456 100644
--- a/Ryujinx.Graphics.Vulkan/IndexBufferState.cs
+++ b/src/Ryujinx.Graphics.Vulkan/IndexBufferState.cs
diff --git a/Ryujinx.Graphics.Vulkan/MemoryAllocation.cs b/src/Ryujinx.Graphics.Vulkan/MemoryAllocation.cs
index 76de1296..76de1296 100644
--- a/Ryujinx.Graphics.Vulkan/MemoryAllocation.cs
+++ b/src/Ryujinx.Graphics.Vulkan/MemoryAllocation.cs
diff --git a/Ryujinx.Graphics.Vulkan/MemoryAllocator.cs b/src/Ryujinx.Graphics.Vulkan/MemoryAllocator.cs
index 3139e209..3139e209 100644
--- a/Ryujinx.Graphics.Vulkan/MemoryAllocator.cs
+++ b/src/Ryujinx.Graphics.Vulkan/MemoryAllocator.cs
diff --git a/Ryujinx.Graphics.Vulkan/MemoryAllocatorBlockList.cs b/src/Ryujinx.Graphics.Vulkan/MemoryAllocatorBlockList.cs
index e564cb26..e564cb26 100644
--- a/Ryujinx.Graphics.Vulkan/MemoryAllocatorBlockList.cs
+++ b/src/Ryujinx.Graphics.Vulkan/MemoryAllocatorBlockList.cs
diff --git a/Ryujinx.Graphics.Vulkan/MoltenVK/MVKConfiguration.cs b/src/Ryujinx.Graphics.Vulkan/MoltenVK/MVKConfiguration.cs
index 4fbae86e..4fbae86e 100644
--- a/Ryujinx.Graphics.Vulkan/MoltenVK/MVKConfiguration.cs
+++ b/src/Ryujinx.Graphics.Vulkan/MoltenVK/MVKConfiguration.cs
diff --git a/Ryujinx.Graphics.Vulkan/MoltenVK/MVKInitialization.cs b/src/Ryujinx.Graphics.Vulkan/MoltenVK/MVKInitialization.cs
index 5910d1aa..5910d1aa 100644
--- a/Ryujinx.Graphics.Vulkan/MoltenVK/MVKInitialization.cs
+++ b/src/Ryujinx.Graphics.Vulkan/MoltenVK/MVKInitialization.cs
diff --git a/Ryujinx.Graphics.Vulkan/MultiFenceHolder.cs b/src/Ryujinx.Graphics.Vulkan/MultiFenceHolder.cs
index 9a9a3626..9a9a3626 100644
--- a/Ryujinx.Graphics.Vulkan/MultiFenceHolder.cs
+++ b/src/Ryujinx.Graphics.Vulkan/MultiFenceHolder.cs
diff --git a/Ryujinx.Graphics.Vulkan/NativeArray.cs b/src/Ryujinx.Graphics.Vulkan/NativeArray.cs
index 3a851287..3a851287 100644
--- a/Ryujinx.Graphics.Vulkan/NativeArray.cs
+++ b/src/Ryujinx.Graphics.Vulkan/NativeArray.cs
diff --git a/Ryujinx.Graphics.Vulkan/PersistentFlushBuffer.cs b/src/Ryujinx.Graphics.Vulkan/PersistentFlushBuffer.cs
index fca13c31..fca13c31 100644
--- a/Ryujinx.Graphics.Vulkan/PersistentFlushBuffer.cs
+++ b/src/Ryujinx.Graphics.Vulkan/PersistentFlushBuffer.cs
diff --git a/Ryujinx.Graphics.Vulkan/PipelineBase.cs b/src/Ryujinx.Graphics.Vulkan/PipelineBase.cs
index c54d7980..c54d7980 100644
--- a/Ryujinx.Graphics.Vulkan/PipelineBase.cs
+++ b/src/Ryujinx.Graphics.Vulkan/PipelineBase.cs
diff --git a/Ryujinx.Graphics.Vulkan/PipelineConverter.cs b/src/Ryujinx.Graphics.Vulkan/PipelineConverter.cs
index da480d9f..da480d9f 100644
--- a/Ryujinx.Graphics.Vulkan/PipelineConverter.cs
+++ b/src/Ryujinx.Graphics.Vulkan/PipelineConverter.cs
diff --git a/Ryujinx.Graphics.Vulkan/PipelineDynamicState.cs b/src/Ryujinx.Graphics.Vulkan/PipelineDynamicState.cs
index 42ea022a..42ea022a 100644
--- a/Ryujinx.Graphics.Vulkan/PipelineDynamicState.cs
+++ b/src/Ryujinx.Graphics.Vulkan/PipelineDynamicState.cs
diff --git a/Ryujinx.Graphics.Vulkan/PipelineFull.cs b/src/Ryujinx.Graphics.Vulkan/PipelineFull.cs
index 8026103e..8026103e 100644
--- a/Ryujinx.Graphics.Vulkan/PipelineFull.cs
+++ b/src/Ryujinx.Graphics.Vulkan/PipelineFull.cs
diff --git a/Ryujinx.Graphics.Vulkan/PipelineHelperShader.cs b/src/Ryujinx.Graphics.Vulkan/PipelineHelperShader.cs
index b31b72a1..b31b72a1 100644
--- a/Ryujinx.Graphics.Vulkan/PipelineHelperShader.cs
+++ b/src/Ryujinx.Graphics.Vulkan/PipelineHelperShader.cs
diff --git a/Ryujinx.Graphics.Vulkan/PipelineLayoutCache.cs b/src/Ryujinx.Graphics.Vulkan/PipelineLayoutCache.cs
index c834fa62..c834fa62 100644
--- a/Ryujinx.Graphics.Vulkan/PipelineLayoutCache.cs
+++ b/src/Ryujinx.Graphics.Vulkan/PipelineLayoutCache.cs
diff --git a/Ryujinx.Graphics.Vulkan/PipelineLayoutCacheEntry.cs b/src/Ryujinx.Graphics.Vulkan/PipelineLayoutCacheEntry.cs
index 2c966115..2c966115 100644
--- a/Ryujinx.Graphics.Vulkan/PipelineLayoutCacheEntry.cs
+++ b/src/Ryujinx.Graphics.Vulkan/PipelineLayoutCacheEntry.cs
diff --git a/Ryujinx.Graphics.Vulkan/PipelineLayoutFactory.cs b/src/Ryujinx.Graphics.Vulkan/PipelineLayoutFactory.cs
index 96b3b3b1..96b3b3b1 100644
--- a/Ryujinx.Graphics.Vulkan/PipelineLayoutFactory.cs
+++ b/src/Ryujinx.Graphics.Vulkan/PipelineLayoutFactory.cs
diff --git a/Ryujinx.Graphics.Vulkan/PipelineState.cs b/src/Ryujinx.Graphics.Vulkan/PipelineState.cs
index dccc8ce6..dccc8ce6 100644
--- a/Ryujinx.Graphics.Vulkan/PipelineState.cs
+++ b/src/Ryujinx.Graphics.Vulkan/PipelineState.cs
diff --git a/Ryujinx.Graphics.Vulkan/PipelineUid.cs b/src/Ryujinx.Graphics.Vulkan/PipelineUid.cs
index 78d6e9f7..78d6e9f7 100644
--- a/Ryujinx.Graphics.Vulkan/PipelineUid.cs
+++ b/src/Ryujinx.Graphics.Vulkan/PipelineUid.cs
diff --git a/Ryujinx.Graphics.Vulkan/Queries/BufferedQuery.cs b/src/Ryujinx.Graphics.Vulkan/Queries/BufferedQuery.cs
index 861155a3..861155a3 100644
--- a/Ryujinx.Graphics.Vulkan/Queries/BufferedQuery.cs
+++ b/src/Ryujinx.Graphics.Vulkan/Queries/BufferedQuery.cs
diff --git a/Ryujinx.Graphics.Vulkan/Queries/CounterQueue.cs b/src/Ryujinx.Graphics.Vulkan/Queries/CounterQueue.cs
index c30d91c4..c30d91c4 100644
--- a/Ryujinx.Graphics.Vulkan/Queries/CounterQueue.cs
+++ b/src/Ryujinx.Graphics.Vulkan/Queries/CounterQueue.cs
diff --git a/Ryujinx.Graphics.Vulkan/Queries/CounterQueueEvent.cs b/src/Ryujinx.Graphics.Vulkan/Queries/CounterQueueEvent.cs
index d3aedb2f..d3aedb2f 100644
--- a/Ryujinx.Graphics.Vulkan/Queries/CounterQueueEvent.cs
+++ b/src/Ryujinx.Graphics.Vulkan/Queries/CounterQueueEvent.cs
diff --git a/Ryujinx.Graphics.Vulkan/Queries/Counters.cs b/src/Ryujinx.Graphics.Vulkan/Queries/Counters.cs
index d9d65062..d9d65062 100644
--- a/Ryujinx.Graphics.Vulkan/Queries/Counters.cs
+++ b/src/Ryujinx.Graphics.Vulkan/Queries/Counters.cs
diff --git a/Ryujinx.Graphics.Vulkan/Ryujinx.Graphics.Vulkan.csproj b/src/Ryujinx.Graphics.Vulkan/Ryujinx.Graphics.Vulkan.csproj
index 20216e51..20216e51 100644
--- a/Ryujinx.Graphics.Vulkan/Ryujinx.Graphics.Vulkan.csproj
+++ b/src/Ryujinx.Graphics.Vulkan/Ryujinx.Graphics.Vulkan.csproj
diff --git a/Ryujinx.Graphics.Vulkan/SamplerHolder.cs b/src/Ryujinx.Graphics.Vulkan/SamplerHolder.cs
index a95e4dba..a95e4dba 100644
--- a/Ryujinx.Graphics.Vulkan/SamplerHolder.cs
+++ b/src/Ryujinx.Graphics.Vulkan/SamplerHolder.cs
diff --git a/Ryujinx.Graphics.Vulkan/SemaphoreHolder.cs b/src/Ryujinx.Graphics.Vulkan/SemaphoreHolder.cs
index aa1b0eaf..aa1b0eaf 100644
--- a/Ryujinx.Graphics.Vulkan/SemaphoreHolder.cs
+++ b/src/Ryujinx.Graphics.Vulkan/SemaphoreHolder.cs
diff --git a/Ryujinx.Graphics.Vulkan/Shader.cs b/src/Ryujinx.Graphics.Vulkan/Shader.cs
index ca99ebf0..ca99ebf0 100644
--- a/Ryujinx.Graphics.Vulkan/Shader.cs
+++ b/src/Ryujinx.Graphics.Vulkan/Shader.cs
diff --git a/Ryujinx.Graphics.Vulkan/ShaderCollection.cs b/src/Ryujinx.Graphics.Vulkan/ShaderCollection.cs
index 1694049c..1694049c 100644
--- a/Ryujinx.Graphics.Vulkan/ShaderCollection.cs
+++ b/src/Ryujinx.Graphics.Vulkan/ShaderCollection.cs
diff --git a/Ryujinx.Graphics.Vulkan/Shaders/ChangeBufferStrideShaderSource.comp b/src/Ryujinx.Graphics.Vulkan/Shaders/ChangeBufferStrideShaderSource.comp
index 081fc119..081fc119 100644
--- a/Ryujinx.Graphics.Vulkan/Shaders/ChangeBufferStrideShaderSource.comp
+++ b/src/Ryujinx.Graphics.Vulkan/Shaders/ChangeBufferStrideShaderSource.comp
diff --git a/Ryujinx.Graphics.Vulkan/Shaders/ColorBlitClearAlphaFragmentShaderSource.frag b/src/Ryujinx.Graphics.Vulkan/Shaders/ColorBlitClearAlphaFragmentShaderSource.frag
index f31316d0..f31316d0 100644
--- a/Ryujinx.Graphics.Vulkan/Shaders/ColorBlitClearAlphaFragmentShaderSource.frag
+++ b/src/Ryujinx.Graphics.Vulkan/Shaders/ColorBlitClearAlphaFragmentShaderSource.frag
diff --git a/Ryujinx.Graphics.Vulkan/Shaders/ColorBlitFragmentShaderSource.frag b/src/Ryujinx.Graphics.Vulkan/Shaders/ColorBlitFragmentShaderSource.frag
index 89dc1ff8..89dc1ff8 100644
--- a/Ryujinx.Graphics.Vulkan/Shaders/ColorBlitFragmentShaderSource.frag
+++ b/src/Ryujinx.Graphics.Vulkan/Shaders/ColorBlitFragmentShaderSource.frag
diff --git a/Ryujinx.Graphics.Vulkan/Shaders/ColorBlitMsFragmentShaderSource.frag b/src/Ryujinx.Graphics.Vulkan/Shaders/ColorBlitMsFragmentShaderSource.frag
index 71145e02..71145e02 100644
--- a/Ryujinx.Graphics.Vulkan/Shaders/ColorBlitMsFragmentShaderSource.frag
+++ b/src/Ryujinx.Graphics.Vulkan/Shaders/ColorBlitMsFragmentShaderSource.frag
diff --git a/Ryujinx.Graphics.Vulkan/Shaders/ColorBlitVertexShaderSource.vert b/src/Ryujinx.Graphics.Vulkan/Shaders/ColorBlitVertexShaderSource.vert
index be93a64d..be93a64d 100644
--- a/Ryujinx.Graphics.Vulkan/Shaders/ColorBlitVertexShaderSource.vert
+++ b/src/Ryujinx.Graphics.Vulkan/Shaders/ColorBlitVertexShaderSource.vert
diff --git a/Ryujinx.Graphics.Vulkan/Shaders/ColorClearFFragmentShaderSource.frag b/src/Ryujinx.Graphics.Vulkan/Shaders/ColorClearFFragmentShaderSource.frag
index ddd4369c..ddd4369c 100644
--- a/Ryujinx.Graphics.Vulkan/Shaders/ColorClearFFragmentShaderSource.frag
+++ b/src/Ryujinx.Graphics.Vulkan/Shaders/ColorClearFFragmentShaderSource.frag
diff --git a/Ryujinx.Graphics.Vulkan/Shaders/ColorClearSIFragmentShaderSource.frag b/src/Ryujinx.Graphics.Vulkan/Shaders/ColorClearSIFragmentShaderSource.frag
index 4254f4f8..4254f4f8 100644
--- a/Ryujinx.Graphics.Vulkan/Shaders/ColorClearSIFragmentShaderSource.frag
+++ b/src/Ryujinx.Graphics.Vulkan/Shaders/ColorClearSIFragmentShaderSource.frag
diff --git a/Ryujinx.Graphics.Vulkan/Shaders/ColorClearUIFragmentShaderSource.frag b/src/Ryujinx.Graphics.Vulkan/Shaders/ColorClearUIFragmentShaderSource.frag
index 08a6b864..08a6b864 100644
--- a/Ryujinx.Graphics.Vulkan/Shaders/ColorClearUIFragmentShaderSource.frag
+++ b/src/Ryujinx.Graphics.Vulkan/Shaders/ColorClearUIFragmentShaderSource.frag
diff --git a/Ryujinx.Graphics.Vulkan/Shaders/ColorClearVertexShaderSource.vert b/src/Ryujinx.Graphics.Vulkan/Shaders/ColorClearVertexShaderSource.vert
index 2f1b9b2c..2f1b9b2c 100644
--- a/Ryujinx.Graphics.Vulkan/Shaders/ColorClearVertexShaderSource.vert
+++ b/src/Ryujinx.Graphics.Vulkan/Shaders/ColorClearVertexShaderSource.vert
diff --git a/Ryujinx.Graphics.Vulkan/Shaders/ColorCopyShorteningComputeShaderSource.comp b/src/Ryujinx.Graphics.Vulkan/Shaders/ColorCopyShorteningComputeShaderSource.comp
index 78cc1cc6..78cc1cc6 100644
--- a/Ryujinx.Graphics.Vulkan/Shaders/ColorCopyShorteningComputeShaderSource.comp
+++ b/src/Ryujinx.Graphics.Vulkan/Shaders/ColorCopyShorteningComputeShaderSource.comp
diff --git a/Ryujinx.Graphics.Vulkan/Shaders/ColorCopyToNonMsComputeShaderSource.comp b/src/Ryujinx.Graphics.Vulkan/Shaders/ColorCopyToNonMsComputeShaderSource.comp
index a3fe02ca..a3fe02ca 100644
--- a/Ryujinx.Graphics.Vulkan/Shaders/ColorCopyToNonMsComputeShaderSource.comp
+++ b/src/Ryujinx.Graphics.Vulkan/Shaders/ColorCopyToNonMsComputeShaderSource.comp
diff --git a/Ryujinx.Graphics.Vulkan/Shaders/ColorCopyWideningComputeShaderSource.comp b/src/Ryujinx.Graphics.Vulkan/Shaders/ColorCopyWideningComputeShaderSource.comp
index a9be454f..a9be454f 100644
--- a/Ryujinx.Graphics.Vulkan/Shaders/ColorCopyWideningComputeShaderSource.comp
+++ b/src/Ryujinx.Graphics.Vulkan/Shaders/ColorCopyWideningComputeShaderSource.comp
diff --git a/Ryujinx.Graphics.Vulkan/Shaders/ColorDrawToMsFragmentShaderSource.frag b/src/Ryujinx.Graphics.Vulkan/Shaders/ColorDrawToMsFragmentShaderSource.frag
index e9151c44..e9151c44 100644
--- a/Ryujinx.Graphics.Vulkan/Shaders/ColorDrawToMsFragmentShaderSource.frag
+++ b/src/Ryujinx.Graphics.Vulkan/Shaders/ColorDrawToMsFragmentShaderSource.frag
diff --git a/Ryujinx.Graphics.Vulkan/Shaders/ColorDrawToMsVertexShaderSource.vert b/src/Ryujinx.Graphics.Vulkan/Shaders/ColorDrawToMsVertexShaderSource.vert
index 558792cc..558792cc 100644
--- a/Ryujinx.Graphics.Vulkan/Shaders/ColorDrawToMsVertexShaderSource.vert
+++ b/src/Ryujinx.Graphics.Vulkan/Shaders/ColorDrawToMsVertexShaderSource.vert
diff --git a/Ryujinx.Graphics.Vulkan/Shaders/ConvertIndexBufferShaderSource.comp b/src/Ryujinx.Graphics.Vulkan/Shaders/ConvertIndexBufferShaderSource.comp
index d56d6cfd..d56d6cfd 100644
--- a/Ryujinx.Graphics.Vulkan/Shaders/ConvertIndexBufferShaderSource.comp
+++ b/src/Ryujinx.Graphics.Vulkan/Shaders/ConvertIndexBufferShaderSource.comp
diff --git a/Ryujinx.Graphics.Vulkan/Shaders/ConvertIndirectDataShaderSource.comp b/src/Ryujinx.Graphics.Vulkan/Shaders/ConvertIndirectDataShaderSource.comp
index 6ee96b7b..6ee96b7b 100644
--- a/Ryujinx.Graphics.Vulkan/Shaders/ConvertIndirectDataShaderSource.comp
+++ b/src/Ryujinx.Graphics.Vulkan/Shaders/ConvertIndirectDataShaderSource.comp
diff --git a/Ryujinx.Graphics.Vulkan/Shaders/DepthBlitFragmentShaderSource.frag b/src/Ryujinx.Graphics.Vulkan/Shaders/DepthBlitFragmentShaderSource.frag
index 55b7be13..55b7be13 100644
--- a/Ryujinx.Graphics.Vulkan/Shaders/DepthBlitFragmentShaderSource.frag
+++ b/src/Ryujinx.Graphics.Vulkan/Shaders/DepthBlitFragmentShaderSource.frag
diff --git a/Ryujinx.Graphics.Vulkan/Shaders/DepthBlitMsFragmentShaderSource.frag b/src/Ryujinx.Graphics.Vulkan/Shaders/DepthBlitMsFragmentShaderSource.frag
index c93c7e7f..c93c7e7f 100644
--- a/Ryujinx.Graphics.Vulkan/Shaders/DepthBlitMsFragmentShaderSource.frag
+++ b/src/Ryujinx.Graphics.Vulkan/Shaders/DepthBlitMsFragmentShaderSource.frag
diff --git a/Ryujinx.Graphics.Vulkan/Shaders/DepthDrawToMsFragmentShaderSource.frag b/src/Ryujinx.Graphics.Vulkan/Shaders/DepthDrawToMsFragmentShaderSource.frag
index bf5f612f..bf5f612f 100644
--- a/Ryujinx.Graphics.Vulkan/Shaders/DepthDrawToMsFragmentShaderSource.frag
+++ b/src/Ryujinx.Graphics.Vulkan/Shaders/DepthDrawToMsFragmentShaderSource.frag
diff --git a/Ryujinx.Graphics.Vulkan/Shaders/DepthDrawToNonMsFragmentShaderSource.frag b/src/Ryujinx.Graphics.Vulkan/Shaders/DepthDrawToNonMsFragmentShaderSource.frag
index e376b2e7..e376b2e7 100644
--- a/Ryujinx.Graphics.Vulkan/Shaders/DepthDrawToNonMsFragmentShaderSource.frag
+++ b/src/Ryujinx.Graphics.Vulkan/Shaders/DepthDrawToNonMsFragmentShaderSource.frag
diff --git a/Ryujinx.Graphics.Vulkan/Shaders/ShaderBinaries.cs b/src/Ryujinx.Graphics.Vulkan/Shaders/ShaderBinaries.cs
index c9dde7b6..c9dde7b6 100644
--- a/Ryujinx.Graphics.Vulkan/Shaders/ShaderBinaries.cs
+++ b/src/Ryujinx.Graphics.Vulkan/Shaders/ShaderBinaries.cs
diff --git a/Ryujinx.Graphics.Vulkan/Shaders/StencilBlitFragmentShaderSource.frag b/src/Ryujinx.Graphics.Vulkan/Shaders/StencilBlitFragmentShaderSource.frag
index 1919269b..1919269b 100644
--- a/Ryujinx.Graphics.Vulkan/Shaders/StencilBlitFragmentShaderSource.frag
+++ b/src/Ryujinx.Graphics.Vulkan/Shaders/StencilBlitFragmentShaderSource.frag
diff --git a/Ryujinx.Graphics.Vulkan/Shaders/StencilBlitMsFragmentShaderSource.frag b/src/Ryujinx.Graphics.Vulkan/Shaders/StencilBlitMsFragmentShaderSource.frag
index 7e26672a..7e26672a 100644
--- a/Ryujinx.Graphics.Vulkan/Shaders/StencilBlitMsFragmentShaderSource.frag
+++ b/src/Ryujinx.Graphics.Vulkan/Shaders/StencilBlitMsFragmentShaderSource.frag
diff --git a/Ryujinx.Graphics.Vulkan/Shaders/StencilDrawToMsFragmentShaderSource.frag b/src/Ryujinx.Graphics.Vulkan/Shaders/StencilDrawToMsFragmentShaderSource.frag
index a07ae9d1..a07ae9d1 100644
--- a/Ryujinx.Graphics.Vulkan/Shaders/StencilDrawToMsFragmentShaderSource.frag
+++ b/src/Ryujinx.Graphics.Vulkan/Shaders/StencilDrawToMsFragmentShaderSource.frag
diff --git a/Ryujinx.Graphics.Vulkan/Shaders/StencilDrawToNonMsFragmentShaderSource.frag b/src/Ryujinx.Graphics.Vulkan/Shaders/StencilDrawToNonMsFragmentShaderSource.frag
index 3addd9d1..3addd9d1 100644
--- a/Ryujinx.Graphics.Vulkan/Shaders/StencilDrawToNonMsFragmentShaderSource.frag
+++ b/src/Ryujinx.Graphics.Vulkan/Shaders/StencilDrawToNonMsFragmentShaderSource.frag
diff --git a/Ryujinx.Graphics.Vulkan/SpecInfo.cs b/src/Ryujinx.Graphics.Vulkan/SpecInfo.cs
index 4d226f61..4d226f61 100644
--- a/Ryujinx.Graphics.Vulkan/SpecInfo.cs
+++ b/src/Ryujinx.Graphics.Vulkan/SpecInfo.cs
diff --git a/Ryujinx.Graphics.Vulkan/StagingBuffer.cs b/src/Ryujinx.Graphics.Vulkan/StagingBuffer.cs
index 4e3c1dee..4e3c1dee 100644
--- a/Ryujinx.Graphics.Vulkan/StagingBuffer.cs
+++ b/src/Ryujinx.Graphics.Vulkan/StagingBuffer.cs
diff --git a/Ryujinx.Graphics.Vulkan/SyncManager.cs b/src/Ryujinx.Graphics.Vulkan/SyncManager.cs
index 432d224f..432d224f 100644
--- a/Ryujinx.Graphics.Vulkan/SyncManager.cs
+++ b/src/Ryujinx.Graphics.Vulkan/SyncManager.cs
diff --git a/Ryujinx.Graphics.Vulkan/TextureBuffer.cs b/src/Ryujinx.Graphics.Vulkan/TextureBuffer.cs
index 738bf57d..738bf57d 100644
--- a/Ryujinx.Graphics.Vulkan/TextureBuffer.cs
+++ b/src/Ryujinx.Graphics.Vulkan/TextureBuffer.cs
diff --git a/Ryujinx.Graphics.Vulkan/TextureCopy.cs b/src/Ryujinx.Graphics.Vulkan/TextureCopy.cs
index c7ce2d99..c7ce2d99 100644
--- a/Ryujinx.Graphics.Vulkan/TextureCopy.cs
+++ b/src/Ryujinx.Graphics.Vulkan/TextureCopy.cs
diff --git a/Ryujinx.Graphics.Vulkan/TextureStorage.cs b/src/Ryujinx.Graphics.Vulkan/TextureStorage.cs
index 0582e6ca..0582e6ca 100644
--- a/Ryujinx.Graphics.Vulkan/TextureStorage.cs
+++ b/src/Ryujinx.Graphics.Vulkan/TextureStorage.cs
diff --git a/Ryujinx.Graphics.Vulkan/TextureView.cs b/src/Ryujinx.Graphics.Vulkan/TextureView.cs
index cd280d5f..cd280d5f 100644
--- a/Ryujinx.Graphics.Vulkan/TextureView.cs
+++ b/src/Ryujinx.Graphics.Vulkan/TextureView.cs
diff --git a/Ryujinx.Graphics.Vulkan/Vendor.cs b/src/Ryujinx.Graphics.Vulkan/Vendor.cs
index 5e0290c0..5e0290c0 100644
--- a/Ryujinx.Graphics.Vulkan/Vendor.cs
+++ b/src/Ryujinx.Graphics.Vulkan/Vendor.cs
diff --git a/Ryujinx.Graphics.Vulkan/VertexBufferState.cs b/src/Ryujinx.Graphics.Vulkan/VertexBufferState.cs
index c4856019..c4856019 100644
--- a/Ryujinx.Graphics.Vulkan/VertexBufferState.cs
+++ b/src/Ryujinx.Graphics.Vulkan/VertexBufferState.cs
diff --git a/Ryujinx.Graphics.Vulkan/VulkanConfiguration.cs b/src/Ryujinx.Graphics.Vulkan/VulkanConfiguration.cs
index 752d4f7c..752d4f7c 100644
--- a/Ryujinx.Graphics.Vulkan/VulkanConfiguration.cs
+++ b/src/Ryujinx.Graphics.Vulkan/VulkanConfiguration.cs
diff --git a/Ryujinx.Graphics.Vulkan/VulkanDebugMessenger.cs b/src/Ryujinx.Graphics.Vulkan/VulkanDebugMessenger.cs
index 7e39a251..7e39a251 100644
--- a/Ryujinx.Graphics.Vulkan/VulkanDebugMessenger.cs
+++ b/src/Ryujinx.Graphics.Vulkan/VulkanDebugMessenger.cs
diff --git a/Ryujinx.Graphics.Vulkan/VulkanException.cs b/src/Ryujinx.Graphics.Vulkan/VulkanException.cs
index 983f03d4..983f03d4 100644
--- a/Ryujinx.Graphics.Vulkan/VulkanException.cs
+++ b/src/Ryujinx.Graphics.Vulkan/VulkanException.cs
diff --git a/Ryujinx.Graphics.Vulkan/VulkanInitialization.cs b/src/Ryujinx.Graphics.Vulkan/VulkanInitialization.cs
index 50a6fcb9..50a6fcb9 100644
--- a/Ryujinx.Graphics.Vulkan/VulkanInitialization.cs
+++ b/src/Ryujinx.Graphics.Vulkan/VulkanInitialization.cs
diff --git a/Ryujinx.Graphics.Vulkan/VulkanInstance.cs b/src/Ryujinx.Graphics.Vulkan/VulkanInstance.cs
index 843d3412..843d3412 100644
--- a/Ryujinx.Graphics.Vulkan/VulkanInstance.cs
+++ b/src/Ryujinx.Graphics.Vulkan/VulkanInstance.cs
diff --git a/Ryujinx.Graphics.Vulkan/VulkanPhysicalDevice.cs b/src/Ryujinx.Graphics.Vulkan/VulkanPhysicalDevice.cs
index 547f3654..547f3654 100644
--- a/Ryujinx.Graphics.Vulkan/VulkanPhysicalDevice.cs
+++ b/src/Ryujinx.Graphics.Vulkan/VulkanPhysicalDevice.cs
diff --git a/Ryujinx.Graphics.Vulkan/VulkanRenderer.cs b/src/Ryujinx.Graphics.Vulkan/VulkanRenderer.cs
index e7475b6b..e7475b6b 100644
--- a/Ryujinx.Graphics.Vulkan/VulkanRenderer.cs
+++ b/src/Ryujinx.Graphics.Vulkan/VulkanRenderer.cs
diff --git a/Ryujinx.Graphics.Vulkan/Window.cs b/src/Ryujinx.Graphics.Vulkan/Window.cs
index 075d1b30..075d1b30 100644
--- a/Ryujinx.Graphics.Vulkan/Window.cs
+++ b/src/Ryujinx.Graphics.Vulkan/Window.cs
diff --git a/Ryujinx.Graphics.Vulkan/WindowBase.cs b/src/Ryujinx.Graphics.Vulkan/WindowBase.cs
index 0a365e8f..0a365e8f 100644
--- a/Ryujinx.Graphics.Vulkan/WindowBase.cs
+++ b/src/Ryujinx.Graphics.Vulkan/WindowBase.cs
diff --git a/Ryujinx.HLE/AssemblyInfo.cs b/src/Ryujinx.HLE/AssemblyInfo.cs
index 9d7bad6b..9d7bad6b 100644
--- a/Ryujinx.HLE/AssemblyInfo.cs
+++ b/src/Ryujinx.HLE/AssemblyInfo.cs
diff --git a/Ryujinx.HLE/Exceptions/GuestBrokeExecutionException.cs b/src/Ryujinx.HLE/Exceptions/GuestBrokeExecutionException.cs
index fe41b02a..fe41b02a 100644
--- a/Ryujinx.HLE/Exceptions/GuestBrokeExecutionException.cs
+++ b/src/Ryujinx.HLE/Exceptions/GuestBrokeExecutionException.cs
diff --git a/Ryujinx.HLE/Exceptions/InternalServiceException.cs b/src/Ryujinx.HLE/Exceptions/InternalServiceException.cs
index 85de63a6..85de63a6 100644
--- a/Ryujinx.HLE/Exceptions/InternalServiceException.cs
+++ b/src/Ryujinx.HLE/Exceptions/InternalServiceException.cs
diff --git a/Ryujinx.HLE/Exceptions/InvalidFirmwarePackageException.cs b/src/Ryujinx.HLE/Exceptions/InvalidFirmwarePackageException.cs
index d08de581..d08de581 100644
--- a/Ryujinx.HLE/Exceptions/InvalidFirmwarePackageException.cs
+++ b/src/Ryujinx.HLE/Exceptions/InvalidFirmwarePackageException.cs
diff --git a/Ryujinx.HLE/Exceptions/InvalidNpdmException.cs b/src/Ryujinx.HLE/Exceptions/InvalidNpdmException.cs
index 98675e42..98675e42 100644
--- a/Ryujinx.HLE/Exceptions/InvalidNpdmException.cs
+++ b/src/Ryujinx.HLE/Exceptions/InvalidNpdmException.cs
diff --git a/Ryujinx.HLE/Exceptions/InvalidStructLayoutException.cs b/src/Ryujinx.HLE/Exceptions/InvalidStructLayoutException.cs
index 2f03d13a..2f03d13a 100644
--- a/Ryujinx.HLE/Exceptions/InvalidStructLayoutException.cs
+++ b/src/Ryujinx.HLE/Exceptions/InvalidStructLayoutException.cs
diff --git a/Ryujinx.HLE/Exceptions/InvalidSystemResourceException.cs b/src/Ryujinx.HLE/Exceptions/InvalidSystemResourceException.cs
index 3c63e064..3c63e064 100644
--- a/Ryujinx.HLE/Exceptions/InvalidSystemResourceException.cs
+++ b/src/Ryujinx.HLE/Exceptions/InvalidSystemResourceException.cs
diff --git a/Ryujinx.HLE/Exceptions/ServiceNotImplementedException.cs b/src/Ryujinx.HLE/Exceptions/ServiceNotImplementedException.cs
index 40b19cc8..40b19cc8 100644
--- a/Ryujinx.HLE/Exceptions/ServiceNotImplementedException.cs
+++ b/src/Ryujinx.HLE/Exceptions/ServiceNotImplementedException.cs
diff --git a/Ryujinx.HLE/Exceptions/TamperCompilationException.cs b/src/Ryujinx.HLE/Exceptions/TamperCompilationException.cs
index 02d87163..02d87163 100644
--- a/Ryujinx.HLE/Exceptions/TamperCompilationException.cs
+++ b/src/Ryujinx.HLE/Exceptions/TamperCompilationException.cs
diff --git a/Ryujinx.HLE/Exceptions/TamperExecutionException.cs b/src/Ryujinx.HLE/Exceptions/TamperExecutionException.cs
index d62effe3..d62effe3 100644
--- a/Ryujinx.HLE/Exceptions/TamperExecutionException.cs
+++ b/src/Ryujinx.HLE/Exceptions/TamperExecutionException.cs
diff --git a/Ryujinx.HLE/Exceptions/UndefinedInstructionException.cs b/src/Ryujinx.HLE/Exceptions/UndefinedInstructionException.cs
index dfbd6c27..dfbd6c27 100644
--- a/Ryujinx.HLE/Exceptions/UndefinedInstructionException.cs
+++ b/src/Ryujinx.HLE/Exceptions/UndefinedInstructionException.cs
diff --git a/Ryujinx.HLE/FileSystem/ContentManager.cs b/src/Ryujinx.HLE/FileSystem/ContentManager.cs
index 9facdd0b..9facdd0b 100644
--- a/Ryujinx.HLE/FileSystem/ContentManager.cs
+++ b/src/Ryujinx.HLE/FileSystem/ContentManager.cs
diff --git a/Ryujinx.HLE/FileSystem/ContentPath.cs b/src/Ryujinx.HLE/FileSystem/ContentPath.cs
index c8663081..c8663081 100644
--- a/Ryujinx.HLE/FileSystem/ContentPath.cs
+++ b/src/Ryujinx.HLE/FileSystem/ContentPath.cs
diff --git a/Ryujinx.HLE/FileSystem/EncryptedFileSystemCreator.cs b/src/Ryujinx.HLE/FileSystem/EncryptedFileSystemCreator.cs
index f32dc2d7..f32dc2d7 100644
--- a/Ryujinx.HLE/FileSystem/EncryptedFileSystemCreator.cs
+++ b/src/Ryujinx.HLE/FileSystem/EncryptedFileSystemCreator.cs
diff --git a/Ryujinx.HLE/FileSystem/LocationEntry.cs b/src/Ryujinx.HLE/FileSystem/LocationEntry.cs
index a60c2896..a60c2896 100644
--- a/Ryujinx.HLE/FileSystem/LocationEntry.cs
+++ b/src/Ryujinx.HLE/FileSystem/LocationEntry.cs
diff --git a/Ryujinx.HLE/FileSystem/SystemVersion.cs b/src/Ryujinx.HLE/FileSystem/SystemVersion.cs
index a7926d5d..a7926d5d 100644
--- a/Ryujinx.HLE/FileSystem/SystemVersion.cs
+++ b/src/Ryujinx.HLE/FileSystem/SystemVersion.cs
diff --git a/Ryujinx.HLE/FileSystem/VirtualFileSystem.cs b/src/Ryujinx.HLE/FileSystem/VirtualFileSystem.cs
index 1b3968ea..1b3968ea 100644
--- a/Ryujinx.HLE/FileSystem/VirtualFileSystem.cs
+++ b/src/Ryujinx.HLE/FileSystem/VirtualFileSystem.cs
diff --git a/Ryujinx.HLE/HLEConfiguration.cs b/src/Ryujinx.HLE/HLEConfiguration.cs
index df8dea6d..df8dea6d 100644
--- a/Ryujinx.HLE/HLEConfiguration.cs
+++ b/src/Ryujinx.HLE/HLEConfiguration.cs
diff --git a/Ryujinx.HLE/HOS/Applets/AppletManager.cs b/src/Ryujinx.HLE/HOS/Applets/AppletManager.cs
index a686a832..a686a832 100644
--- a/Ryujinx.HLE/HOS/Applets/AppletManager.cs
+++ b/src/Ryujinx.HLE/HOS/Applets/AppletManager.cs
diff --git a/Ryujinx.HLE/HOS/Applets/Browser/BootDisplayKind.cs b/src/Ryujinx.HLE/HOS/Applets/Browser/BootDisplayKind.cs
index fe6e6040..fe6e6040 100644
--- a/Ryujinx.HLE/HOS/Applets/Browser/BootDisplayKind.cs
+++ b/src/Ryujinx.HLE/HOS/Applets/Browser/BootDisplayKind.cs
diff --git a/Ryujinx.HLE/HOS/Applets/Browser/BrowserApplet.cs b/src/Ryujinx.HLE/HOS/Applets/Browser/BrowserApplet.cs
index 952afcd5..952afcd5 100644
--- a/Ryujinx.HLE/HOS/Applets/Browser/BrowserApplet.cs
+++ b/src/Ryujinx.HLE/HOS/Applets/Browser/BrowserApplet.cs
diff --git a/Ryujinx.HLE/HOS/Applets/Browser/BrowserArgument.cs b/src/Ryujinx.HLE/HOS/Applets/Browser/BrowserArgument.cs
index 17fd4089..17fd4089 100644
--- a/Ryujinx.HLE/HOS/Applets/Browser/BrowserArgument.cs
+++ b/src/Ryujinx.HLE/HOS/Applets/Browser/BrowserArgument.cs
diff --git a/Ryujinx.HLE/HOS/Applets/Browser/BrowserOutput.cs b/src/Ryujinx.HLE/HOS/Applets/Browser/BrowserOutput.cs
index 0b368262..0b368262 100644
--- a/Ryujinx.HLE/HOS/Applets/Browser/BrowserOutput.cs
+++ b/src/Ryujinx.HLE/HOS/Applets/Browser/BrowserOutput.cs
diff --git a/Ryujinx.HLE/HOS/Applets/Browser/BrowserOutputType.cs b/src/Ryujinx.HLE/HOS/Applets/Browser/BrowserOutputType.cs
index 209ae8ae..209ae8ae 100644
--- a/Ryujinx.HLE/HOS/Applets/Browser/BrowserOutputType.cs
+++ b/src/Ryujinx.HLE/HOS/Applets/Browser/BrowserOutputType.cs
diff --git a/Ryujinx.HLE/HOS/Applets/Browser/DocumentKind.cs b/src/Ryujinx.HLE/HOS/Applets/Browser/DocumentKind.cs
index 385bcdd0..385bcdd0 100644
--- a/Ryujinx.HLE/HOS/Applets/Browser/DocumentKind.cs
+++ b/src/Ryujinx.HLE/HOS/Applets/Browser/DocumentKind.cs
diff --git a/Ryujinx.HLE/HOS/Applets/Browser/LeftStickMode.cs b/src/Ryujinx.HLE/HOS/Applets/Browser/LeftStickMode.cs
index 917549d2..917549d2 100644
--- a/Ryujinx.HLE/HOS/Applets/Browser/LeftStickMode.cs
+++ b/src/Ryujinx.HLE/HOS/Applets/Browser/LeftStickMode.cs
diff --git a/Ryujinx.HLE/HOS/Applets/Browser/ShimKind.cs b/src/Ryujinx.HLE/HOS/Applets/Browser/ShimKind.cs
index ca2ef32f..ca2ef32f 100644
--- a/Ryujinx.HLE/HOS/Applets/Browser/ShimKind.cs
+++ b/src/Ryujinx.HLE/HOS/Applets/Browser/ShimKind.cs
diff --git a/Ryujinx.HLE/HOS/Applets/Browser/WebArgHeader.cs b/src/Ryujinx.HLE/HOS/Applets/Browser/WebArgHeader.cs
index c5e19f6c..c5e19f6c 100644
--- a/Ryujinx.HLE/HOS/Applets/Browser/WebArgHeader.cs
+++ b/src/Ryujinx.HLE/HOS/Applets/Browser/WebArgHeader.cs
diff --git a/Ryujinx.HLE/HOS/Applets/Browser/WebArgTLV.cs b/src/Ryujinx.HLE/HOS/Applets/Browser/WebArgTLV.cs
index f6c1e5ae..f6c1e5ae 100644
--- a/Ryujinx.HLE/HOS/Applets/Browser/WebArgTLV.cs
+++ b/src/Ryujinx.HLE/HOS/Applets/Browser/WebArgTLV.cs
diff --git a/Ryujinx.HLE/HOS/Applets/Browser/WebArgTLVType.cs b/src/Ryujinx.HLE/HOS/Applets/Browser/WebArgTLVType.cs
index bd303207..bd303207 100644
--- a/Ryujinx.HLE/HOS/Applets/Browser/WebArgTLVType.cs
+++ b/src/Ryujinx.HLE/HOS/Applets/Browser/WebArgTLVType.cs
diff --git a/Ryujinx.HLE/HOS/Applets/Browser/WebCommonReturnValue.cs b/src/Ryujinx.HLE/HOS/Applets/Browser/WebCommonReturnValue.cs
index 9f7eae70..9f7eae70 100644
--- a/Ryujinx.HLE/HOS/Applets/Browser/WebCommonReturnValue.cs
+++ b/src/Ryujinx.HLE/HOS/Applets/Browser/WebCommonReturnValue.cs
diff --git a/Ryujinx.HLE/HOS/Applets/Browser/WebExitReason.cs b/src/Ryujinx.HLE/HOS/Applets/Browser/WebExitReason.cs
index 4e44d34a..4e44d34a 100644
--- a/Ryujinx.HLE/HOS/Applets/Browser/WebExitReason.cs
+++ b/src/Ryujinx.HLE/HOS/Applets/Browser/WebExitReason.cs
diff --git a/Ryujinx.HLE/HOS/Applets/CommonArguments.cs b/src/Ryujinx.HLE/HOS/Applets/CommonArguments.cs
index 5da34db1..5da34db1 100644
--- a/Ryujinx.HLE/HOS/Applets/CommonArguments.cs
+++ b/src/Ryujinx.HLE/HOS/Applets/CommonArguments.cs
diff --git a/Ryujinx.HLE/HOS/Applets/Controller/ControllerApplet.cs b/src/Ryujinx.HLE/HOS/Applets/Controller/ControllerApplet.cs
index 5d5a26c2..5d5a26c2 100644
--- a/Ryujinx.HLE/HOS/Applets/Controller/ControllerApplet.cs
+++ b/src/Ryujinx.HLE/HOS/Applets/Controller/ControllerApplet.cs
diff --git a/Ryujinx.HLE/HOS/Applets/Controller/ControllerAppletUiArgs.cs b/src/Ryujinx.HLE/HOS/Applets/Controller/ControllerAppletUiArgs.cs
index cc15a406..cc15a406 100644
--- a/Ryujinx.HLE/HOS/Applets/Controller/ControllerAppletUiArgs.cs
+++ b/src/Ryujinx.HLE/HOS/Applets/Controller/ControllerAppletUiArgs.cs
diff --git a/Ryujinx.HLE/HOS/Applets/Controller/ControllerSupportArgHeader.cs b/src/Ryujinx.HLE/HOS/Applets/Controller/ControllerSupportArgHeader.cs
index 141994a8..141994a8 100644
--- a/Ryujinx.HLE/HOS/Applets/Controller/ControllerSupportArgHeader.cs
+++ b/src/Ryujinx.HLE/HOS/Applets/Controller/ControllerSupportArgHeader.cs
diff --git a/Ryujinx.HLE/HOS/Applets/Controller/ControllerSupportArgPrivate.cs b/src/Ryujinx.HLE/HOS/Applets/Controller/ControllerSupportArgPrivate.cs
index d4c8177e..d4c8177e 100644
--- a/Ryujinx.HLE/HOS/Applets/Controller/ControllerSupportArgPrivate.cs
+++ b/src/Ryujinx.HLE/HOS/Applets/Controller/ControllerSupportArgPrivate.cs
diff --git a/Ryujinx.HLE/HOS/Applets/Controller/ControllerSupportArgV7.cs b/src/Ryujinx.HLE/HOS/Applets/Controller/ControllerSupportArgV7.cs
index 98c413be..98c413be 100644
--- a/Ryujinx.HLE/HOS/Applets/Controller/ControllerSupportArgV7.cs
+++ b/src/Ryujinx.HLE/HOS/Applets/Controller/ControllerSupportArgV7.cs
diff --git a/Ryujinx.HLE/HOS/Applets/Controller/ControllerSupportArgVPre7.cs b/src/Ryujinx.HLE/HOS/Applets/Controller/ControllerSupportArgVPre7.cs
index 87417e16..87417e16 100644
--- a/Ryujinx.HLE/HOS/Applets/Controller/ControllerSupportArgVPre7.cs
+++ b/src/Ryujinx.HLE/HOS/Applets/Controller/ControllerSupportArgVPre7.cs
diff --git a/Ryujinx.HLE/HOS/Applets/Controller/ControllerSupportMode.cs b/src/Ryujinx.HLE/HOS/Applets/Controller/ControllerSupportMode.cs
index 9496c1dd..9496c1dd 100644
--- a/Ryujinx.HLE/HOS/Applets/Controller/ControllerSupportMode.cs
+++ b/src/Ryujinx.HLE/HOS/Applets/Controller/ControllerSupportMode.cs
diff --git a/Ryujinx.HLE/HOS/Applets/Controller/ControllerSupportResultInfo.cs b/src/Ryujinx.HLE/HOS/Applets/Controller/ControllerSupportResultInfo.cs
index 689a54de..689a54de 100644
--- a/Ryujinx.HLE/HOS/Applets/Controller/ControllerSupportResultInfo.cs
+++ b/src/Ryujinx.HLE/HOS/Applets/Controller/ControllerSupportResultInfo.cs
diff --git a/Ryujinx.HLE/HOS/Applets/Error/ApplicationErrorArg.cs b/src/Ryujinx.HLE/HOS/Applets/Error/ApplicationErrorArg.cs
index f40d5411..f40d5411 100644
--- a/Ryujinx.HLE/HOS/Applets/Error/ApplicationErrorArg.cs
+++ b/src/Ryujinx.HLE/HOS/Applets/Error/ApplicationErrorArg.cs
diff --git a/Ryujinx.HLE/HOS/Applets/Error/ErrorApplet.cs b/src/Ryujinx.HLE/HOS/Applets/Error/ErrorApplet.cs
index c5c6e8e9..c5c6e8e9 100644
--- a/Ryujinx.HLE/HOS/Applets/Error/ErrorApplet.cs
+++ b/src/Ryujinx.HLE/HOS/Applets/Error/ErrorApplet.cs
diff --git a/Ryujinx.HLE/HOS/Applets/Error/ErrorCommonArg.cs b/src/Ryujinx.HLE/HOS/Applets/Error/ErrorCommonArg.cs
index 530a2ad8..530a2ad8 100644
--- a/Ryujinx.HLE/HOS/Applets/Error/ErrorCommonArg.cs
+++ b/src/Ryujinx.HLE/HOS/Applets/Error/ErrorCommonArg.cs
diff --git a/Ryujinx.HLE/HOS/Applets/Error/ErrorCommonHeader.cs b/src/Ryujinx.HLE/HOS/Applets/Error/ErrorCommonHeader.cs
index b93cdd4f..b93cdd4f 100644
--- a/Ryujinx.HLE/HOS/Applets/Error/ErrorCommonHeader.cs
+++ b/src/Ryujinx.HLE/HOS/Applets/Error/ErrorCommonHeader.cs
diff --git a/Ryujinx.HLE/HOS/Applets/Error/ErrorType.cs b/src/Ryujinx.HLE/HOS/Applets/Error/ErrorType.cs
index f06af1d3..f06af1d3 100644
--- a/Ryujinx.HLE/HOS/Applets/Error/ErrorType.cs
+++ b/src/Ryujinx.HLE/HOS/Applets/Error/ErrorType.cs
diff --git a/Ryujinx.HLE/HOS/Applets/IApplet.cs b/src/Ryujinx.HLE/HOS/Applets/IApplet.cs
index 224d6787..224d6787 100644
--- a/Ryujinx.HLE/HOS/Applets/IApplet.cs
+++ b/src/Ryujinx.HLE/HOS/Applets/IApplet.cs
diff --git a/Ryujinx.HLE/HOS/Applets/PlayerSelect/PlayerSelectApplet.cs b/src/Ryujinx.HLE/HOS/Applets/PlayerSelect/PlayerSelectApplet.cs
index a8119a47..a8119a47 100644
--- a/Ryujinx.HLE/HOS/Applets/PlayerSelect/PlayerSelectApplet.cs
+++ b/src/Ryujinx.HLE/HOS/Applets/PlayerSelect/PlayerSelectApplet.cs
diff --git a/Ryujinx.HLE/HOS/Applets/PlayerSelect/PlayerSelectResult.cs b/src/Ryujinx.HLE/HOS/Applets/PlayerSelect/PlayerSelectResult.cs
index 682e094e..682e094e 100644
--- a/Ryujinx.HLE/HOS/Applets/PlayerSelect/PlayerSelectResult.cs
+++ b/src/Ryujinx.HLE/HOS/Applets/PlayerSelect/PlayerSelectResult.cs
diff --git a/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/InitialCursorPosition.cs b/src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/InitialCursorPosition.cs
index 727b6d27..727b6d27 100644
--- a/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/InitialCursorPosition.cs
+++ b/src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/InitialCursorPosition.cs
diff --git a/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/InlineKeyboardRequest.cs b/src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/InlineKeyboardRequest.cs
index b17debfc..b17debfc 100644
--- a/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/InlineKeyboardRequest.cs
+++ b/src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/InlineKeyboardRequest.cs
diff --git a/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/InlineKeyboardResponse.cs b/src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/InlineKeyboardResponse.cs
index b21db507..b21db507 100644
--- a/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/InlineKeyboardResponse.cs
+++ b/src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/InlineKeyboardResponse.cs
diff --git a/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/InlineKeyboardState.cs b/src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/InlineKeyboardState.cs
index 47e1a774..47e1a774 100644
--- a/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/InlineKeyboardState.cs
+++ b/src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/InlineKeyboardState.cs
diff --git a/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/InlineResponses.cs b/src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/InlineResponses.cs
index c3e45d46..c3e45d46 100644
--- a/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/InlineResponses.cs
+++ b/src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/InlineResponses.cs
diff --git a/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/InputFormMode.cs b/src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/InputFormMode.cs
index c3ce2c12..c3ce2c12 100644
--- a/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/InputFormMode.cs
+++ b/src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/InputFormMode.cs
diff --git a/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/InvalidButtonFlags.cs b/src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/InvalidButtonFlags.cs
index 1166e81d..1166e81d 100644
--- a/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/InvalidButtonFlags.cs
+++ b/src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/InvalidButtonFlags.cs
diff --git a/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/InvalidCharFlags.cs b/src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/InvalidCharFlags.cs
index f3fd8ac8..f3fd8ac8 100644
--- a/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/InvalidCharFlags.cs
+++ b/src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/InvalidCharFlags.cs
diff --git a/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/KeyboardCalcFlags.cs b/src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/KeyboardCalcFlags.cs
index 0b0f138b..0b0f138b 100644
--- a/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/KeyboardCalcFlags.cs
+++ b/src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/KeyboardCalcFlags.cs
diff --git a/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/KeyboardInputMode.cs b/src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/KeyboardInputMode.cs
index 925d52f6..925d52f6 100644
--- a/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/KeyboardInputMode.cs
+++ b/src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/KeyboardInputMode.cs
diff --git a/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/KeyboardMiniaturizationMode.cs b/src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/KeyboardMiniaturizationMode.cs
index 5184118c..5184118c 100644
--- a/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/KeyboardMiniaturizationMode.cs
+++ b/src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/KeyboardMiniaturizationMode.cs
diff --git a/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/KeyboardMode.cs b/src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/KeyboardMode.cs
index f512050e..f512050e 100644
--- a/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/KeyboardMode.cs
+++ b/src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/KeyboardMode.cs
diff --git a/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/KeyboardResult.cs b/src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/KeyboardResult.cs
index 4f570d3f..4f570d3f 100644
--- a/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/KeyboardResult.cs
+++ b/src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/KeyboardResult.cs
diff --git a/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/PasswordMode.cs b/src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/PasswordMode.cs
index fc9e1ff8..fc9e1ff8 100644
--- a/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/PasswordMode.cs
+++ b/src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/PasswordMode.cs
diff --git a/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/Resources/Icon_BtnA.png b/src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/Resources/Icon_BtnA.png
index a8ee784d..a8ee784d 100644
--- a/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/Resources/Icon_BtnA.png
+++ b/src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/Resources/Icon_BtnA.png
Binary files differ
diff --git a/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/Resources/Icon_BtnA.svg b/src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/Resources/Icon_BtnA.svg
index 6257fd12..6257fd12 100644
--- a/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/Resources/Icon_BtnA.svg
+++ b/src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/Resources/Icon_BtnA.svg
diff --git a/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/Resources/Icon_BtnB.png b/src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/Resources/Icon_BtnB.png
index e1fa3454..e1fa3454 100644
--- a/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/Resources/Icon_BtnB.png
+++ b/src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/Resources/Icon_BtnB.png
Binary files differ
diff --git a/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/Resources/Icon_BtnB.svg b/src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/Resources/Icon_BtnB.svg
index ea6bb9bd..ea6bb9bd 100644
--- a/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/Resources/Icon_BtnB.svg
+++ b/src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/Resources/Icon_BtnB.svg
diff --git a/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/Resources/Icon_KeyF6.png b/src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/Resources/Icon_KeyF6.png
index d6dbdc1a..d6dbdc1a 100644
--- a/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/Resources/Icon_KeyF6.png
+++ b/src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/Resources/Icon_KeyF6.png
Binary files differ
diff --git a/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/Resources/Icon_KeyF6.svg b/src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/Resources/Icon_KeyF6.svg
index 2256ebeb..2256ebeb 100644
--- a/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/Resources/Icon_KeyF6.svg
+++ b/src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/Resources/Icon_KeyF6.svg
diff --git a/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/Resources/Logo_Ryujinx.png b/src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/Resources/Logo_Ryujinx.png
index 0e8da15e..0e8da15e 100644
--- a/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/Resources/Logo_Ryujinx.png
+++ b/src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/Resources/Logo_Ryujinx.png
Binary files differ
diff --git a/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/SoftwareKeyboardAppear.cs b/src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/SoftwareKeyboardAppear.cs
index e1ee0507..e1ee0507 100644
--- a/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/SoftwareKeyboardAppear.cs
+++ b/src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/SoftwareKeyboardAppear.cs
diff --git a/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/SoftwareKeyboardAppearEx.cs b/src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/SoftwareKeyboardAppearEx.cs
index d1756b07..d1756b07 100644
--- a/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/SoftwareKeyboardAppearEx.cs
+++ b/src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/SoftwareKeyboardAppearEx.cs
diff --git a/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/SoftwareKeyboardApplet.cs b/src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/SoftwareKeyboardApplet.cs
index 278ea56c..278ea56c 100644
--- a/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/SoftwareKeyboardApplet.cs
+++ b/src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/SoftwareKeyboardApplet.cs
diff --git a/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/SoftwareKeyboardCalc.cs b/src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/SoftwareKeyboardCalc.cs
index 90df6fa3..90df6fa3 100644
--- a/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/SoftwareKeyboardCalc.cs
+++ b/src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/SoftwareKeyboardCalc.cs
diff --git a/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/SoftwareKeyboardCalcEx.cs b/src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/SoftwareKeyboardCalcEx.cs
index 2d3d5dbe..2d3d5dbe 100644
--- a/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/SoftwareKeyboardCalcEx.cs
+++ b/src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/SoftwareKeyboardCalcEx.cs
diff --git a/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/SoftwareKeyboardConfig.cs b/src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/SoftwareKeyboardConfig.cs
index fd462382..fd462382 100644
--- a/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/SoftwareKeyboardConfig.cs
+++ b/src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/SoftwareKeyboardConfig.cs
diff --git a/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/SoftwareKeyboardCustomizeDic.cs b/src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/SoftwareKeyboardCustomizeDic.cs
index 53c8c895..53c8c895 100644
--- a/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/SoftwareKeyboardCustomizeDic.cs
+++ b/src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/SoftwareKeyboardCustomizeDic.cs
diff --git a/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/SoftwareKeyboardDictSet.cs b/src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/SoftwareKeyboardDictSet.cs
index 38554881..38554881 100644
--- a/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/SoftwareKeyboardDictSet.cs
+++ b/src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/SoftwareKeyboardDictSet.cs
diff --git a/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/SoftwareKeyboardInitialize.cs b/src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/SoftwareKeyboardInitialize.cs
index 764d0e38..764d0e38 100644
--- a/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/SoftwareKeyboardInitialize.cs
+++ b/src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/SoftwareKeyboardInitialize.cs
diff --git a/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/SoftwareKeyboardRenderer.cs b/src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/SoftwareKeyboardRenderer.cs
index c30ad11b..c30ad11b 100644
--- a/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/SoftwareKeyboardRenderer.cs
+++ b/src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/SoftwareKeyboardRenderer.cs
diff --git a/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/SoftwareKeyboardRendererBase.cs b/src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/SoftwareKeyboardRendererBase.cs
index 9a91fa32..9a91fa32 100644
--- a/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/SoftwareKeyboardRendererBase.cs
+++ b/src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/SoftwareKeyboardRendererBase.cs
diff --git a/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/SoftwareKeyboardState.cs b/src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/SoftwareKeyboardState.cs
index 0f66fc9b..0f66fc9b 100644
--- a/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/SoftwareKeyboardState.cs
+++ b/src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/SoftwareKeyboardState.cs
diff --git a/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/SoftwareKeyboardUiArgs.cs b/src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/SoftwareKeyboardUiArgs.cs
index d24adec3..d24adec3 100644
--- a/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/SoftwareKeyboardUiArgs.cs
+++ b/src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/SoftwareKeyboardUiArgs.cs
diff --git a/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/SoftwareKeyboardUiState.cs b/src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/SoftwareKeyboardUiState.cs
index e6131e62..e6131e62 100644
--- a/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/SoftwareKeyboardUiState.cs
+++ b/src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/SoftwareKeyboardUiState.cs
diff --git a/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/SoftwareKeyboardUserWord.cs b/src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/SoftwareKeyboardUserWord.cs
index f1bfec2b..f1bfec2b 100644
--- a/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/SoftwareKeyboardUserWord.cs
+++ b/src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/SoftwareKeyboardUserWord.cs
diff --git a/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/TRef.cs b/src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/TRef.cs
index 53746e74..53746e74 100644
--- a/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/TRef.cs
+++ b/src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/TRef.cs
diff --git a/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/TimedAction.cs b/src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/TimedAction.cs
index 0de78a0e..0de78a0e 100644
--- a/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/TimedAction.cs
+++ b/src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/TimedAction.cs
diff --git a/Ryujinx.HLE/HOS/ArmProcessContext.cs b/src/Ryujinx.HLE/HOS/ArmProcessContext.cs
index 6338edc1..6338edc1 100644
--- a/Ryujinx.HLE/HOS/ArmProcessContext.cs
+++ b/src/Ryujinx.HLE/HOS/ArmProcessContext.cs
diff --git a/Ryujinx.HLE/HOS/ArmProcessContextFactory.cs b/src/Ryujinx.HLE/HOS/ArmProcessContextFactory.cs
index 1b0d66ac..1b0d66ac 100644
--- a/Ryujinx.HLE/HOS/ArmProcessContextFactory.cs
+++ b/src/Ryujinx.HLE/HOS/ArmProcessContextFactory.cs
diff --git a/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/ArraySubscriptingExpression.cs b/src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/ArraySubscriptingExpression.cs
index 5145ff7b..5145ff7b 100644
--- a/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/ArraySubscriptingExpression.cs
+++ b/src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/ArraySubscriptingExpression.cs
diff --git a/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/ArrayType.cs b/src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/ArrayType.cs
index 4b1041ab..4b1041ab 100644
--- a/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/ArrayType.cs
+++ b/src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/ArrayType.cs
diff --git a/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/BaseNode.cs b/src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/BaseNode.cs
index ca4b98f8..ca4b98f8 100644
--- a/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/BaseNode.cs
+++ b/src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/BaseNode.cs
diff --git a/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/BinaryExpression.cs b/src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/BinaryExpression.cs
index 0c492df3..0c492df3 100644
--- a/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/BinaryExpression.cs
+++ b/src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/BinaryExpression.cs
diff --git a/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/BracedExpression.cs b/src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/BracedExpression.cs
index 6b9782f5..6b9782f5 100644
--- a/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/BracedExpression.cs
+++ b/src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/BracedExpression.cs
diff --git a/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/BracedRangeExpression.cs b/src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/BracedRangeExpression.cs
index 802422d9..802422d9 100644
--- a/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/BracedRangeExpression.cs
+++ b/src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/BracedRangeExpression.cs
diff --git a/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/CallExpression.cs b/src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/CallExpression.cs
index 8e3fc3e6..8e3fc3e6 100644
--- a/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/CallExpression.cs
+++ b/src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/CallExpression.cs
diff --git a/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/CastExpression.cs b/src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/CastExpression.cs
index 1149a788..1149a788 100644
--- a/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/CastExpression.cs
+++ b/src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/CastExpression.cs
diff --git a/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/ConditionalExpression.cs b/src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/ConditionalExpression.cs
index c0dd6717..c0dd6717 100644
--- a/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/ConditionalExpression.cs
+++ b/src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/ConditionalExpression.cs
diff --git a/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/ConversionExpression.cs b/src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/ConversionExpression.cs
index dd1f7a00..dd1f7a00 100644
--- a/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/ConversionExpression.cs
+++ b/src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/ConversionExpression.cs
diff --git a/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/ConversionOperatorType.cs b/src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/ConversionOperatorType.cs
index 8a5cde86..8a5cde86 100644
--- a/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/ConversionOperatorType.cs
+++ b/src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/ConversionOperatorType.cs
diff --git a/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/CtorDtorNameType.cs b/src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/CtorDtorNameType.cs
index 5f458123..5f458123 100644
--- a/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/CtorDtorNameType.cs
+++ b/src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/CtorDtorNameType.cs
diff --git a/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/CtorVtableSpecialName.cs b/src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/CtorVtableSpecialName.cs
index 3bb5b163..3bb5b163 100644
--- a/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/CtorVtableSpecialName.cs
+++ b/src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/CtorVtableSpecialName.cs
diff --git a/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/DeleteExpression.cs b/src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/DeleteExpression.cs
index 14715d25..14715d25 100644
--- a/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/DeleteExpression.cs
+++ b/src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/DeleteExpression.cs
diff --git a/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/DtorName.cs b/src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/DtorName.cs
index 5cc4e6cf..5cc4e6cf 100644
--- a/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/DtorName.cs
+++ b/src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/DtorName.cs
diff --git a/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/DynamicExceptionSpec.cs b/src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/DynamicExceptionSpec.cs
index faa91443..faa91443 100644
--- a/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/DynamicExceptionSpec.cs
+++ b/src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/DynamicExceptionSpec.cs
diff --git a/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/ElaboratedType.cs b/src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/ElaboratedType.cs
index 086cd3dc..086cd3dc 100644
--- a/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/ElaboratedType.cs
+++ b/src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/ElaboratedType.cs
diff --git a/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/EnclosedExpression.cs b/src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/EnclosedExpression.cs
index b45481dd..b45481dd 100644
--- a/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/EnclosedExpression.cs
+++ b/src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/EnclosedExpression.cs
diff --git a/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/EncodedFunction.cs b/src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/EncodedFunction.cs
index c7b6dab1..c7b6dab1 100644
--- a/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/EncodedFunction.cs
+++ b/src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/EncodedFunction.cs
diff --git a/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/FoldExpression.cs b/src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/FoldExpression.cs
index 04f7053e..04f7053e 100644
--- a/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/FoldExpression.cs
+++ b/src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/FoldExpression.cs
diff --git a/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/ForwardTemplateReference.cs b/src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/ForwardTemplateReference.cs
index 1bbf6ef9..1bbf6ef9 100644
--- a/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/ForwardTemplateReference.cs
+++ b/src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/ForwardTemplateReference.cs
diff --git a/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/FunctionParameter.cs b/src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/FunctionParameter.cs
index 5654a048..5654a048 100644
--- a/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/FunctionParameter.cs
+++ b/src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/FunctionParameter.cs
diff --git a/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/FunctionType.cs b/src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/FunctionType.cs
index 4ad0c9f5..4ad0c9f5 100644
--- a/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/FunctionType.cs
+++ b/src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/FunctionType.cs
diff --git a/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/GlobalQualifiedName.cs b/src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/GlobalQualifiedName.cs
index d3b6a558..d3b6a558 100644
--- a/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/GlobalQualifiedName.cs
+++ b/src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/GlobalQualifiedName.cs
diff --git a/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/InitListExpression.cs b/src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/InitListExpression.cs
index 7155dd60..7155dd60 100644
--- a/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/InitListExpression.cs
+++ b/src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/InitListExpression.cs
diff --git a/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/IntegerCastExpression.cs b/src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/IntegerCastExpression.cs
index ef07414d..ef07414d 100644
--- a/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/IntegerCastExpression.cs
+++ b/src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/IntegerCastExpression.cs
diff --git a/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/IntegerLiteral.cs b/src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/IntegerLiteral.cs
index 33752d00..33752d00 100644
--- a/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/IntegerLiteral.cs
+++ b/src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/IntegerLiteral.cs
diff --git a/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/LiteralOperator.cs b/src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/LiteralOperator.cs
index f7e86c9e..f7e86c9e 100644
--- a/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/LiteralOperator.cs
+++ b/src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/LiteralOperator.cs
diff --git a/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/LocalName.cs b/src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/LocalName.cs
index 15d46b38..15d46b38 100644
--- a/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/LocalName.cs
+++ b/src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/LocalName.cs
diff --git a/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/MemberExpression.cs b/src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/MemberExpression.cs
index 9b91f6f5..9b91f6f5 100644
--- a/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/MemberExpression.cs
+++ b/src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/MemberExpression.cs
diff --git a/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/NameType.cs b/src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/NameType.cs
index f9f4cb20..f9f4cb20 100644
--- a/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/NameType.cs
+++ b/src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/NameType.cs
diff --git a/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/NameTypeWithTemplateArguments.cs b/src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/NameTypeWithTemplateArguments.cs
index ee725f36..ee725f36 100644
--- a/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/NameTypeWithTemplateArguments.cs
+++ b/src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/NameTypeWithTemplateArguments.cs
diff --git a/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/NestedName.cs b/src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/NestedName.cs
index 640c200c..640c200c 100644
--- a/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/NestedName.cs
+++ b/src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/NestedName.cs
diff --git a/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/NewExpression.cs b/src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/NewExpression.cs
index ba4690af..ba4690af 100644
--- a/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/NewExpression.cs
+++ b/src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/NewExpression.cs
diff --git a/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/NodeArray.cs b/src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/NodeArray.cs
index 1482dfc3..1482dfc3 100644
--- a/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/NodeArray.cs
+++ b/src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/NodeArray.cs
diff --git a/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/NoexceptSpec.cs b/src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/NoexceptSpec.cs
index 49044493..49044493 100644
--- a/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/NoexceptSpec.cs
+++ b/src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/NoexceptSpec.cs
diff --git a/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/PackedTemplateParameter.cs b/src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/PackedTemplateParameter.cs
index 4c820095..4c820095 100644
--- a/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/PackedTemplateParameter.cs
+++ b/src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/PackedTemplateParameter.cs
diff --git a/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/PackedTemplateParameterExpansion.cs b/src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/PackedTemplateParameterExpansion.cs
index c3645044..c3645044 100644
--- a/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/PackedTemplateParameterExpansion.cs
+++ b/src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/PackedTemplateParameterExpansion.cs
diff --git a/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/ParentNode.cs b/src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/ParentNode.cs
index 786abced..786abced 100644
--- a/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/ParentNode.cs
+++ b/src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/ParentNode.cs
diff --git a/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/PointerType.cs b/src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/PointerType.cs
index b1a3ec42..b1a3ec42 100644
--- a/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/PointerType.cs
+++ b/src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/PointerType.cs
diff --git a/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/PostfixExpression.cs b/src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/PostfixExpression.cs
index ccaea3ba..ccaea3ba 100644
--- a/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/PostfixExpression.cs
+++ b/src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/PostfixExpression.cs
diff --git a/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/PostfixQualifiedType.cs b/src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/PostfixQualifiedType.cs
index 5024a8f9..5024a8f9 100644
--- a/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/PostfixQualifiedType.cs
+++ b/src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/PostfixQualifiedType.cs
diff --git a/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/PrefixExpression.cs b/src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/PrefixExpression.cs
index 9c3d4552..9c3d4552 100644
--- a/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/PrefixExpression.cs
+++ b/src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/PrefixExpression.cs
diff --git a/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/QualifiedName.cs b/src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/QualifiedName.cs
index 2e18f564..2e18f564 100644
--- a/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/QualifiedName.cs
+++ b/src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/QualifiedName.cs
diff --git a/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/Qualifier.cs b/src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/Qualifier.cs
index cb6dd6bf..cb6dd6bf 100644
--- a/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/Qualifier.cs
+++ b/src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/Qualifier.cs
diff --git a/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/ReferenceType.cs b/src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/ReferenceType.cs
index a3214171..a3214171 100644
--- a/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/ReferenceType.cs
+++ b/src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/ReferenceType.cs
diff --git a/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/SpecialName.cs b/src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/SpecialName.cs
index 1447458b..1447458b 100644
--- a/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/SpecialName.cs
+++ b/src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/SpecialName.cs
diff --git a/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/SpecialSubstitution.cs b/src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/SpecialSubstitution.cs
index 8d45e180..8d45e180 100644
--- a/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/SpecialSubstitution.cs
+++ b/src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/SpecialSubstitution.cs
diff --git a/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/StdQualifiedName.cs b/src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/StdQualifiedName.cs
index c3a97d60..c3a97d60 100644
--- a/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/StdQualifiedName.cs
+++ b/src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/StdQualifiedName.cs
diff --git a/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/TemplateArguments.cs b/src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/TemplateArguments.cs
index aefd668d..aefd668d 100644
--- a/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/TemplateArguments.cs
+++ b/src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/TemplateArguments.cs
diff --git a/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/ThrowExpression.cs b/src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/ThrowExpression.cs
index 2972a31c..2972a31c 100644
--- a/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/ThrowExpression.cs
+++ b/src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/ThrowExpression.cs
diff --git a/Ryujinx.HLE/HOS/Diagnostics/Demangler/Demangler.cs b/src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Demangler.cs
index 1bfd7ac0..1bfd7ac0 100644
--- a/Ryujinx.HLE/HOS/Diagnostics/Demangler/Demangler.cs
+++ b/src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Demangler.cs
diff --git a/Ryujinx.HLE/HOS/HomebrewRomFsStream.cs b/src/Ryujinx.HLE/HOS/HomebrewRomFsStream.cs
index 59bc881f..59bc881f 100644
--- a/Ryujinx.HLE/HOS/HomebrewRomFsStream.cs
+++ b/src/Ryujinx.HLE/HOS/HomebrewRomFsStream.cs
diff --git a/Ryujinx.HLE/HOS/Horizon.cs b/src/Ryujinx.HLE/HOS/Horizon.cs
index 1639532e..1639532e 100644
--- a/Ryujinx.HLE/HOS/Horizon.cs
+++ b/src/Ryujinx.HLE/HOS/Horizon.cs
diff --git a/Ryujinx.HLE/HOS/IdDictionary.cs b/src/Ryujinx.HLE/HOS/IdDictionary.cs
index 5ae720ea..5ae720ea 100644
--- a/Ryujinx.HLE/HOS/IdDictionary.cs
+++ b/src/Ryujinx.HLE/HOS/IdDictionary.cs
diff --git a/Ryujinx.HLE/HOS/Ipc/IpcBuffDesc.cs b/src/Ryujinx.HLE/HOS/Ipc/IpcBuffDesc.cs
index b61d5697..b61d5697 100644
--- a/Ryujinx.HLE/HOS/Ipc/IpcBuffDesc.cs
+++ b/src/Ryujinx.HLE/HOS/Ipc/IpcBuffDesc.cs
diff --git a/Ryujinx.HLE/HOS/Ipc/IpcHandleDesc.cs b/src/Ryujinx.HLE/HOS/Ipc/IpcHandleDesc.cs
index c7ef7e9c..c7ef7e9c 100644
--- a/Ryujinx.HLE/HOS/Ipc/IpcHandleDesc.cs
+++ b/src/Ryujinx.HLE/HOS/Ipc/IpcHandleDesc.cs
diff --git a/Ryujinx.HLE/HOS/Ipc/IpcMagic.cs b/src/Ryujinx.HLE/HOS/Ipc/IpcMagic.cs
index 72770b90..72770b90 100644
--- a/Ryujinx.HLE/HOS/Ipc/IpcMagic.cs
+++ b/src/Ryujinx.HLE/HOS/Ipc/IpcMagic.cs
diff --git a/Ryujinx.HLE/HOS/Ipc/IpcMessage.cs b/src/Ryujinx.HLE/HOS/Ipc/IpcMessage.cs
index 21630c42..21630c42 100644
--- a/Ryujinx.HLE/HOS/Ipc/IpcMessage.cs
+++ b/src/Ryujinx.HLE/HOS/Ipc/IpcMessage.cs
diff --git a/Ryujinx.HLE/HOS/Ipc/IpcMessageType.cs b/src/Ryujinx.HLE/HOS/Ipc/IpcMessageType.cs
index 1c862248..1c862248 100644
--- a/Ryujinx.HLE/HOS/Ipc/IpcMessageType.cs
+++ b/src/Ryujinx.HLE/HOS/Ipc/IpcMessageType.cs
diff --git a/Ryujinx.HLE/HOS/Ipc/IpcPtrBuffDesc.cs b/src/Ryujinx.HLE/HOS/Ipc/IpcPtrBuffDesc.cs
index 05798fe1..05798fe1 100644
--- a/Ryujinx.HLE/HOS/Ipc/IpcPtrBuffDesc.cs
+++ b/src/Ryujinx.HLE/HOS/Ipc/IpcPtrBuffDesc.cs
diff --git a/Ryujinx.HLE/HOS/Ipc/IpcRecvListBuffDesc.cs b/src/Ryujinx.HLE/HOS/Ipc/IpcRecvListBuffDesc.cs
index bcc9d8f8..bcc9d8f8 100644
--- a/Ryujinx.HLE/HOS/Ipc/IpcRecvListBuffDesc.cs
+++ b/src/Ryujinx.HLE/HOS/Ipc/IpcRecvListBuffDesc.cs
diff --git a/Ryujinx.HLE/HOS/Ipc/ServiceProcessRequest.cs b/src/Ryujinx.HLE/HOS/Ipc/ServiceProcessRequest.cs
index b3aaa219..b3aaa219 100644
--- a/Ryujinx.HLE/HOS/Ipc/ServiceProcessRequest.cs
+++ b/src/Ryujinx.HLE/HOS/Ipc/ServiceProcessRequest.cs
diff --git a/Ryujinx.HLE/HOS/Kernel/Common/IKFutureSchedulerObject.cs b/src/Ryujinx.HLE/HOS/Kernel/Common/IKFutureSchedulerObject.cs
index 473683ff..473683ff 100644
--- a/Ryujinx.HLE/HOS/Kernel/Common/IKFutureSchedulerObject.cs
+++ b/src/Ryujinx.HLE/HOS/Kernel/Common/IKFutureSchedulerObject.cs
diff --git a/Ryujinx.HLE/HOS/Kernel/Common/KAutoObject.cs b/src/Ryujinx.HLE/HOS/Kernel/Common/KAutoObject.cs
index 424bf788..424bf788 100644
--- a/Ryujinx.HLE/HOS/Kernel/Common/KAutoObject.cs
+++ b/src/Ryujinx.HLE/HOS/Kernel/Common/KAutoObject.cs
diff --git a/Ryujinx.HLE/HOS/Kernel/Common/KResourceLimit.cs b/src/Ryujinx.HLE/HOS/Kernel/Common/KResourceLimit.cs
index b1a602f1..b1a602f1 100644
--- a/Ryujinx.HLE/HOS/Kernel/Common/KResourceLimit.cs
+++ b/src/Ryujinx.HLE/HOS/Kernel/Common/KResourceLimit.cs
diff --git a/Ryujinx.HLE/HOS/Kernel/Common/KSynchronizationObject.cs b/src/Ryujinx.HLE/HOS/Kernel/Common/KSynchronizationObject.cs
index ddc0069d..ddc0069d 100644
--- a/Ryujinx.HLE/HOS/Kernel/Common/KSynchronizationObject.cs
+++ b/src/Ryujinx.HLE/HOS/Kernel/Common/KSynchronizationObject.cs
diff --git a/Ryujinx.HLE/HOS/Kernel/Common/KSystemControl.cs b/src/Ryujinx.HLE/HOS/Kernel/Common/KSystemControl.cs
index 8a727c30..8a727c30 100644
--- a/Ryujinx.HLE/HOS/Kernel/Common/KSystemControl.cs
+++ b/src/Ryujinx.HLE/HOS/Kernel/Common/KSystemControl.cs
diff --git a/Ryujinx.HLE/HOS/Kernel/Common/KTimeManager.cs b/src/Ryujinx.HLE/HOS/Kernel/Common/KTimeManager.cs
index c0cd9ce9..c0cd9ce9 100644
--- a/Ryujinx.HLE/HOS/Kernel/Common/KTimeManager.cs
+++ b/src/Ryujinx.HLE/HOS/Kernel/Common/KTimeManager.cs
diff --git a/Ryujinx.HLE/HOS/Kernel/Common/KernelInit.cs b/src/Ryujinx.HLE/HOS/Kernel/Common/KernelInit.cs
index efa2a480..efa2a480 100644
--- a/Ryujinx.HLE/HOS/Kernel/Common/KernelInit.cs
+++ b/src/Ryujinx.HLE/HOS/Kernel/Common/KernelInit.cs
diff --git a/Ryujinx.HLE/HOS/Kernel/Common/KernelTransfer.cs b/src/Ryujinx.HLE/HOS/Kernel/Common/KernelTransfer.cs
index cbc276c5..cbc276c5 100644
--- a/Ryujinx.HLE/HOS/Kernel/Common/KernelTransfer.cs
+++ b/src/Ryujinx.HLE/HOS/Kernel/Common/KernelTransfer.cs
diff --git a/Ryujinx.HLE/HOS/Kernel/Common/LimitableResource.cs b/src/Ryujinx.HLE/HOS/Kernel/Common/LimitableResource.cs
index 2e6a3e45..2e6a3e45 100644
--- a/Ryujinx.HLE/HOS/Kernel/Common/LimitableResource.cs
+++ b/src/Ryujinx.HLE/HOS/Kernel/Common/LimitableResource.cs
diff --git a/Ryujinx.HLE/HOS/Kernel/Common/MemoryArrange.cs b/src/Ryujinx.HLE/HOS/Kernel/Common/MemoryArrange.cs
index d2bcfd62..d2bcfd62 100644
--- a/Ryujinx.HLE/HOS/Kernel/Common/MemoryArrange.cs
+++ b/src/Ryujinx.HLE/HOS/Kernel/Common/MemoryArrange.cs
diff --git a/Ryujinx.HLE/HOS/Kernel/Common/MemroySize.cs b/src/Ryujinx.HLE/HOS/Kernel/Common/MemroySize.cs
index 159385b6..159385b6 100644
--- a/Ryujinx.HLE/HOS/Kernel/Common/MemroySize.cs
+++ b/src/Ryujinx.HLE/HOS/Kernel/Common/MemroySize.cs
diff --git a/Ryujinx.HLE/HOS/Kernel/Common/MersenneTwister.cs b/src/Ryujinx.HLE/HOS/Kernel/Common/MersenneTwister.cs
index 4c99f425..4c99f425 100644
--- a/Ryujinx.HLE/HOS/Kernel/Common/MersenneTwister.cs
+++ b/src/Ryujinx.HLE/HOS/Kernel/Common/MersenneTwister.cs
diff --git a/Ryujinx.HLE/HOS/Kernel/Ipc/ChannelState.cs b/src/Ryujinx.HLE/HOS/Kernel/Ipc/ChannelState.cs
index 4827384e..4827384e 100644
--- a/Ryujinx.HLE/HOS/Kernel/Ipc/ChannelState.cs
+++ b/src/Ryujinx.HLE/HOS/Kernel/Ipc/ChannelState.cs
diff --git a/Ryujinx.HLE/HOS/Kernel/Ipc/KBufferDescriptor.cs b/src/Ryujinx.HLE/HOS/Kernel/Ipc/KBufferDescriptor.cs
index e28244d4..e28244d4 100644
--- a/Ryujinx.HLE/HOS/Kernel/Ipc/KBufferDescriptor.cs
+++ b/src/Ryujinx.HLE/HOS/Kernel/Ipc/KBufferDescriptor.cs
diff --git a/Ryujinx.HLE/HOS/Kernel/Ipc/KBufferDescriptorTable.cs b/src/Ryujinx.HLE/HOS/Kernel/Ipc/KBufferDescriptorTable.cs
index 593d2c9d..593d2c9d 100644
--- a/Ryujinx.HLE/HOS/Kernel/Ipc/KBufferDescriptorTable.cs
+++ b/src/Ryujinx.HLE/HOS/Kernel/Ipc/KBufferDescriptorTable.cs
diff --git a/Ryujinx.HLE/HOS/Kernel/Ipc/KClientPort.cs b/src/Ryujinx.HLE/HOS/Kernel/Ipc/KClientPort.cs
index eb7c5a41..eb7c5a41 100644
--- a/Ryujinx.HLE/HOS/Kernel/Ipc/KClientPort.cs
+++ b/src/Ryujinx.HLE/HOS/Kernel/Ipc/KClientPort.cs
diff --git a/Ryujinx.HLE/HOS/Kernel/Ipc/KClientSession.cs b/src/Ryujinx.HLE/HOS/Kernel/Ipc/KClientSession.cs
index a24bcc31..a24bcc31 100644
--- a/Ryujinx.HLE/HOS/Kernel/Ipc/KClientSession.cs
+++ b/src/Ryujinx.HLE/HOS/Kernel/Ipc/KClientSession.cs
diff --git a/Ryujinx.HLE/HOS/Kernel/Ipc/KLightClientSession.cs b/src/Ryujinx.HLE/HOS/Kernel/Ipc/KLightClientSession.cs
index 27a9732b..27a9732b 100644
--- a/Ryujinx.HLE/HOS/Kernel/Ipc/KLightClientSession.cs
+++ b/src/Ryujinx.HLE/HOS/Kernel/Ipc/KLightClientSession.cs
diff --git a/Ryujinx.HLE/HOS/Kernel/Ipc/KLightServerSession.cs b/src/Ryujinx.HLE/HOS/Kernel/Ipc/KLightServerSession.cs
index 0edbba6c..0edbba6c 100644
--- a/Ryujinx.HLE/HOS/Kernel/Ipc/KLightServerSession.cs
+++ b/src/Ryujinx.HLE/HOS/Kernel/Ipc/KLightServerSession.cs
diff --git a/Ryujinx.HLE/HOS/Kernel/Ipc/KLightSession.cs b/src/Ryujinx.HLE/HOS/Kernel/Ipc/KLightSession.cs
index 3abb1ab0..3abb1ab0 100644
--- a/Ryujinx.HLE/HOS/Kernel/Ipc/KLightSession.cs
+++ b/src/Ryujinx.HLE/HOS/Kernel/Ipc/KLightSession.cs
diff --git a/Ryujinx.HLE/HOS/Kernel/Ipc/KPort.cs b/src/Ryujinx.HLE/HOS/Kernel/Ipc/KPort.cs
index 93f0f34c..93f0f34c 100644
--- a/Ryujinx.HLE/HOS/Kernel/Ipc/KPort.cs
+++ b/src/Ryujinx.HLE/HOS/Kernel/Ipc/KPort.cs
diff --git a/Ryujinx.HLE/HOS/Kernel/Ipc/KServerPort.cs b/src/Ryujinx.HLE/HOS/Kernel/Ipc/KServerPort.cs
index 21a3919c..21a3919c 100644
--- a/Ryujinx.HLE/HOS/Kernel/Ipc/KServerPort.cs
+++ b/src/Ryujinx.HLE/HOS/Kernel/Ipc/KServerPort.cs
diff --git a/Ryujinx.HLE/HOS/Kernel/Ipc/KServerSession.cs b/src/Ryujinx.HLE/HOS/Kernel/Ipc/KServerSession.cs
index 86469c03..86469c03 100644
--- a/Ryujinx.HLE/HOS/Kernel/Ipc/KServerSession.cs
+++ b/src/Ryujinx.HLE/HOS/Kernel/Ipc/KServerSession.cs
diff --git a/Ryujinx.HLE/HOS/Kernel/Ipc/KSession.cs b/src/Ryujinx.HLE/HOS/Kernel/Ipc/KSession.cs
index 13cf4b51..13cf4b51 100644
--- a/Ryujinx.HLE/HOS/Kernel/Ipc/KSession.cs
+++ b/src/Ryujinx.HLE/HOS/Kernel/Ipc/KSession.cs
diff --git a/Ryujinx.HLE/HOS/Kernel/Ipc/KSessionRequest.cs b/src/Ryujinx.HLE/HOS/Kernel/Ipc/KSessionRequest.cs
index 31ddfc9c..31ddfc9c 100644
--- a/Ryujinx.HLE/HOS/Kernel/Ipc/KSessionRequest.cs
+++ b/src/Ryujinx.HLE/HOS/Kernel/Ipc/KSessionRequest.cs
diff --git a/Ryujinx.HLE/HOS/Kernel/KernelConstants.cs b/src/Ryujinx.HLE/HOS/Kernel/KernelConstants.cs
index 28db750c..28db750c 100644
--- a/Ryujinx.HLE/HOS/Kernel/KernelConstants.cs
+++ b/src/Ryujinx.HLE/HOS/Kernel/KernelConstants.cs
diff --git a/Ryujinx.HLE/HOS/Kernel/KernelContext.cs b/src/Ryujinx.HLE/HOS/Kernel/KernelContext.cs
index ccc5c0f0..ccc5c0f0 100644
--- a/Ryujinx.HLE/HOS/Kernel/KernelContext.cs
+++ b/src/Ryujinx.HLE/HOS/Kernel/KernelContext.cs
diff --git a/Ryujinx.HLE/HOS/Kernel/KernelStatic.cs b/src/Ryujinx.HLE/HOS/Kernel/KernelStatic.cs
index c66f4b57..c66f4b57 100644
--- a/Ryujinx.HLE/HOS/Kernel/KernelStatic.cs
+++ b/src/Ryujinx.HLE/HOS/Kernel/KernelStatic.cs
diff --git a/Ryujinx.HLE/HOS/Kernel/Memory/AddressSpaceType.cs b/src/Ryujinx.HLE/HOS/Kernel/Memory/AddressSpaceType.cs
index 8395c577..8395c577 100644
--- a/Ryujinx.HLE/HOS/Kernel/Memory/AddressSpaceType.cs
+++ b/src/Ryujinx.HLE/HOS/Kernel/Memory/AddressSpaceType.cs
diff --git a/Ryujinx.HLE/HOS/Kernel/Memory/DramMemoryMap.cs b/src/Ryujinx.HLE/HOS/Kernel/Memory/DramMemoryMap.cs
index 4941d5b7..4941d5b7 100644
--- a/Ryujinx.HLE/HOS/Kernel/Memory/DramMemoryMap.cs
+++ b/src/Ryujinx.HLE/HOS/Kernel/Memory/DramMemoryMap.cs
diff --git a/Ryujinx.HLE/HOS/Kernel/Memory/KCodeMemory.cs b/src/Ryujinx.HLE/HOS/Kernel/Memory/KCodeMemory.cs
index 11474e49..11474e49 100644
--- a/Ryujinx.HLE/HOS/Kernel/Memory/KCodeMemory.cs
+++ b/src/Ryujinx.HLE/HOS/Kernel/Memory/KCodeMemory.cs
diff --git a/Ryujinx.HLE/HOS/Kernel/Memory/KMemoryBlock.cs b/src/Ryujinx.HLE/HOS/Kernel/Memory/KMemoryBlock.cs
index e082105b..e082105b 100644
--- a/Ryujinx.HLE/HOS/Kernel/Memory/KMemoryBlock.cs
+++ b/src/Ryujinx.HLE/HOS/Kernel/Memory/KMemoryBlock.cs
diff --git a/Ryujinx.HLE/HOS/Kernel/Memory/KMemoryBlockManager.cs b/src/Ryujinx.HLE/HOS/Kernel/Memory/KMemoryBlockManager.cs
index e9146aeb..e9146aeb 100644
--- a/Ryujinx.HLE/HOS/Kernel/Memory/KMemoryBlockManager.cs
+++ b/src/Ryujinx.HLE/HOS/Kernel/Memory/KMemoryBlockManager.cs
diff --git a/Ryujinx.HLE/HOS/Kernel/Memory/KMemoryBlockSlabManager.cs b/src/Ryujinx.HLE/HOS/Kernel/Memory/KMemoryBlockSlabManager.cs
index 8732b507..8732b507 100644
--- a/Ryujinx.HLE/HOS/Kernel/Memory/KMemoryBlockSlabManager.cs
+++ b/src/Ryujinx.HLE/HOS/Kernel/Memory/KMemoryBlockSlabManager.cs
diff --git a/Ryujinx.HLE/HOS/Kernel/Memory/KMemoryInfo.cs b/src/Ryujinx.HLE/HOS/Kernel/Memory/KMemoryInfo.cs
index af070ac2..af070ac2 100644
--- a/Ryujinx.HLE/HOS/Kernel/Memory/KMemoryInfo.cs
+++ b/src/Ryujinx.HLE/HOS/Kernel/Memory/KMemoryInfo.cs
diff --git a/Ryujinx.HLE/HOS/Kernel/Memory/KMemoryManager.cs b/src/Ryujinx.HLE/HOS/Kernel/Memory/KMemoryManager.cs
index 6d0a1658..6d0a1658 100644
--- a/Ryujinx.HLE/HOS/Kernel/Memory/KMemoryManager.cs
+++ b/src/Ryujinx.HLE/HOS/Kernel/Memory/KMemoryManager.cs
diff --git a/Ryujinx.HLE/HOS/Kernel/Memory/KMemoryRegionManager.cs b/src/Ryujinx.HLE/HOS/Kernel/Memory/KMemoryRegionManager.cs
index 4596b15d..4596b15d 100644
--- a/Ryujinx.HLE/HOS/Kernel/Memory/KMemoryRegionManager.cs
+++ b/src/Ryujinx.HLE/HOS/Kernel/Memory/KMemoryRegionManager.cs
diff --git a/Ryujinx.HLE/HOS/Kernel/Memory/KPageBitmap.cs b/src/Ryujinx.HLE/HOS/Kernel/Memory/KPageBitmap.cs
index fa090b02..fa090b02 100644
--- a/Ryujinx.HLE/HOS/Kernel/Memory/KPageBitmap.cs
+++ b/src/Ryujinx.HLE/HOS/Kernel/Memory/KPageBitmap.cs
diff --git a/Ryujinx.HLE/HOS/Kernel/Memory/KPageHeap.cs b/src/Ryujinx.HLE/HOS/Kernel/Memory/KPageHeap.cs
index c3586ed7..c3586ed7 100644
--- a/Ryujinx.HLE/HOS/Kernel/Memory/KPageHeap.cs
+++ b/src/Ryujinx.HLE/HOS/Kernel/Memory/KPageHeap.cs
diff --git a/Ryujinx.HLE/HOS/Kernel/Memory/KPageList.cs b/src/Ryujinx.HLE/HOS/Kernel/Memory/KPageList.cs
index 3149faa9..3149faa9 100644
--- a/Ryujinx.HLE/HOS/Kernel/Memory/KPageList.cs
+++ b/src/Ryujinx.HLE/HOS/Kernel/Memory/KPageList.cs
diff --git a/Ryujinx.HLE/HOS/Kernel/Memory/KPageNode.cs b/src/Ryujinx.HLE/HOS/Kernel/Memory/KPageNode.cs
index ada41687..ada41687 100644
--- a/Ryujinx.HLE/HOS/Kernel/Memory/KPageNode.cs
+++ b/src/Ryujinx.HLE/HOS/Kernel/Memory/KPageNode.cs
diff --git a/Ryujinx.HLE/HOS/Kernel/Memory/KPageTable.cs b/src/Ryujinx.HLE/HOS/Kernel/Memory/KPageTable.cs
index 28e9f90a..28e9f90a 100644
--- a/Ryujinx.HLE/HOS/Kernel/Memory/KPageTable.cs
+++ b/src/Ryujinx.HLE/HOS/Kernel/Memory/KPageTable.cs
diff --git a/Ryujinx.HLE/HOS/Kernel/Memory/KPageTableBase.cs b/src/Ryujinx.HLE/HOS/Kernel/Memory/KPageTableBase.cs
index 614eb527..614eb527 100644
--- a/Ryujinx.HLE/HOS/Kernel/Memory/KPageTableBase.cs
+++ b/src/Ryujinx.HLE/HOS/Kernel/Memory/KPageTableBase.cs
diff --git a/Ryujinx.HLE/HOS/Kernel/Memory/KScopedPageList.cs b/src/Ryujinx.HLE/HOS/Kernel/Memory/KScopedPageList.cs
index a0c19f9c..a0c19f9c 100644
--- a/Ryujinx.HLE/HOS/Kernel/Memory/KScopedPageList.cs
+++ b/src/Ryujinx.HLE/HOS/Kernel/Memory/KScopedPageList.cs
diff --git a/Ryujinx.HLE/HOS/Kernel/Memory/KSharedMemory.cs b/src/Ryujinx.HLE/HOS/Kernel/Memory/KSharedMemory.cs
index 5ec3cd72..5ec3cd72 100644
--- a/Ryujinx.HLE/HOS/Kernel/Memory/KSharedMemory.cs
+++ b/src/Ryujinx.HLE/HOS/Kernel/Memory/KSharedMemory.cs
diff --git a/Ryujinx.HLE/HOS/Kernel/Memory/KSlabHeap.cs b/src/Ryujinx.HLE/HOS/Kernel/Memory/KSlabHeap.cs
index 9051e84c..9051e84c 100644
--- a/Ryujinx.HLE/HOS/Kernel/Memory/KSlabHeap.cs
+++ b/src/Ryujinx.HLE/HOS/Kernel/Memory/KSlabHeap.cs
diff --git a/Ryujinx.HLE/HOS/Kernel/Memory/KTransferMemory.cs b/src/Ryujinx.HLE/HOS/Kernel/Memory/KTransferMemory.cs
index b2449598..b2449598 100644
--- a/Ryujinx.HLE/HOS/Kernel/Memory/KTransferMemory.cs
+++ b/src/Ryujinx.HLE/HOS/Kernel/Memory/KTransferMemory.cs
diff --git a/Ryujinx.HLE/HOS/Kernel/Memory/MemoryAttribute.cs b/src/Ryujinx.HLE/HOS/Kernel/Memory/MemoryAttribute.cs
index 42407ffe..42407ffe 100644
--- a/Ryujinx.HLE/HOS/Kernel/Memory/MemoryAttribute.cs
+++ b/src/Ryujinx.HLE/HOS/Kernel/Memory/MemoryAttribute.cs
diff --git a/Ryujinx.HLE/HOS/Kernel/Memory/MemoryFillValue.cs b/src/Ryujinx.HLE/HOS/Kernel/Memory/MemoryFillValue.cs
index cdc892fc..cdc892fc 100644
--- a/Ryujinx.HLE/HOS/Kernel/Memory/MemoryFillValue.cs
+++ b/src/Ryujinx.HLE/HOS/Kernel/Memory/MemoryFillValue.cs
diff --git a/Ryujinx.HLE/HOS/Kernel/Memory/MemoryPermission.cs b/src/Ryujinx.HLE/HOS/Kernel/Memory/MemoryPermission.cs
index 563b817d..563b817d 100644
--- a/Ryujinx.HLE/HOS/Kernel/Memory/MemoryPermission.cs
+++ b/src/Ryujinx.HLE/HOS/Kernel/Memory/MemoryPermission.cs
diff --git a/Ryujinx.HLE/HOS/Kernel/Memory/MemoryRegion.cs b/src/Ryujinx.HLE/HOS/Kernel/Memory/MemoryRegion.cs
index ad719bde..ad719bde 100644
--- a/Ryujinx.HLE/HOS/Kernel/Memory/MemoryRegion.cs
+++ b/src/Ryujinx.HLE/HOS/Kernel/Memory/MemoryRegion.cs
diff --git a/Ryujinx.HLE/HOS/Kernel/Memory/MemoryState.cs b/src/Ryujinx.HLE/HOS/Kernel/Memory/MemoryState.cs
index d3b61780..d3b61780 100644
--- a/Ryujinx.HLE/HOS/Kernel/Memory/MemoryState.cs
+++ b/src/Ryujinx.HLE/HOS/Kernel/Memory/MemoryState.cs
diff --git a/Ryujinx.HLE/HOS/Kernel/Memory/SharedMemoryStorage.cs b/src/Ryujinx.HLE/HOS/Kernel/Memory/SharedMemoryStorage.cs
index c68b7369..c68b7369 100644
--- a/Ryujinx.HLE/HOS/Kernel/Memory/SharedMemoryStorage.cs
+++ b/src/Ryujinx.HLE/HOS/Kernel/Memory/SharedMemoryStorage.cs
diff --git a/Ryujinx.HLE/HOS/Kernel/Process/CapabilityExtensions.cs b/src/Ryujinx.HLE/HOS/Kernel/Process/CapabilityExtensions.cs
index 66d56fe3..66d56fe3 100644
--- a/Ryujinx.HLE/HOS/Kernel/Process/CapabilityExtensions.cs
+++ b/src/Ryujinx.HLE/HOS/Kernel/Process/CapabilityExtensions.cs
diff --git a/Ryujinx.HLE/HOS/Kernel/Process/CapabilityType.cs b/src/Ryujinx.HLE/HOS/Kernel/Process/CapabilityType.cs
index 51d92316..51d92316 100644
--- a/Ryujinx.HLE/HOS/Kernel/Process/CapabilityType.cs
+++ b/src/Ryujinx.HLE/HOS/Kernel/Process/CapabilityType.cs
diff --git a/Ryujinx.HLE/HOS/Kernel/Process/HleProcessDebugger.cs b/src/Ryujinx.HLE/HOS/Kernel/Process/HleProcessDebugger.cs
index 8fee5c0d..8fee5c0d 100644
--- a/Ryujinx.HLE/HOS/Kernel/Process/HleProcessDebugger.cs
+++ b/src/Ryujinx.HLE/HOS/Kernel/Process/HleProcessDebugger.cs
diff --git a/Ryujinx.HLE/HOS/Kernel/Process/IProcessContext.cs b/src/Ryujinx.HLE/HOS/Kernel/Process/IProcessContext.cs
index c8063a62..c8063a62 100644
--- a/Ryujinx.HLE/HOS/Kernel/Process/IProcessContext.cs
+++ b/src/Ryujinx.HLE/HOS/Kernel/Process/IProcessContext.cs
diff --git a/Ryujinx.HLE/HOS/Kernel/Process/IProcessContextFactory.cs b/src/Ryujinx.HLE/HOS/Kernel/Process/IProcessContextFactory.cs
index 0a24a524..0a24a524 100644
--- a/Ryujinx.HLE/HOS/Kernel/Process/IProcessContextFactory.cs
+++ b/src/Ryujinx.HLE/HOS/Kernel/Process/IProcessContextFactory.cs
diff --git a/Ryujinx.HLE/HOS/Kernel/Process/KContextIdManager.cs b/src/Ryujinx.HLE/HOS/Kernel/Process/KContextIdManager.cs
index 104fe578..104fe578 100644
--- a/Ryujinx.HLE/HOS/Kernel/Process/KContextIdManager.cs
+++ b/src/Ryujinx.HLE/HOS/Kernel/Process/KContextIdManager.cs
diff --git a/Ryujinx.HLE/HOS/Kernel/Process/KHandleEntry.cs b/src/Ryujinx.HLE/HOS/Kernel/Process/KHandleEntry.cs
index b5ca9b5e..b5ca9b5e 100644
--- a/Ryujinx.HLE/HOS/Kernel/Process/KHandleEntry.cs
+++ b/src/Ryujinx.HLE/HOS/Kernel/Process/KHandleEntry.cs
diff --git a/Ryujinx.HLE/HOS/Kernel/Process/KHandleTable.cs b/src/Ryujinx.HLE/HOS/Kernel/Process/KHandleTable.cs
index 50f04e90..50f04e90 100644
--- a/Ryujinx.HLE/HOS/Kernel/Process/KHandleTable.cs
+++ b/src/Ryujinx.HLE/HOS/Kernel/Process/KHandleTable.cs
diff --git a/Ryujinx.HLE/HOS/Kernel/Process/KProcess.cs b/src/Ryujinx.HLE/HOS/Kernel/Process/KProcess.cs
index 21e89944..21e89944 100644
--- a/Ryujinx.HLE/HOS/Kernel/Process/KProcess.cs
+++ b/src/Ryujinx.HLE/HOS/Kernel/Process/KProcess.cs
diff --git a/Ryujinx.HLE/HOS/Kernel/Process/KProcessCapabilities.cs b/src/Ryujinx.HLE/HOS/Kernel/Process/KProcessCapabilities.cs
index c99e3112..c99e3112 100644
--- a/Ryujinx.HLE/HOS/Kernel/Process/KProcessCapabilities.cs
+++ b/src/Ryujinx.HLE/HOS/Kernel/Process/KProcessCapabilities.cs
diff --git a/Ryujinx.HLE/HOS/Kernel/Process/KTlsPageInfo.cs b/src/Ryujinx.HLE/HOS/Kernel/Process/KTlsPageInfo.cs
index f55e3c10..f55e3c10 100644
--- a/Ryujinx.HLE/HOS/Kernel/Process/KTlsPageInfo.cs
+++ b/src/Ryujinx.HLE/HOS/Kernel/Process/KTlsPageInfo.cs
diff --git a/Ryujinx.HLE/HOS/Kernel/Process/KTlsPageManager.cs b/src/Ryujinx.HLE/HOS/Kernel/Process/KTlsPageManager.cs
index 0fde495c..0fde495c 100644
--- a/Ryujinx.HLE/HOS/Kernel/Process/KTlsPageManager.cs
+++ b/src/Ryujinx.HLE/HOS/Kernel/Process/KTlsPageManager.cs
diff --git a/Ryujinx.HLE/HOS/Kernel/Process/ProcessContext.cs b/src/Ryujinx.HLE/HOS/Kernel/Process/ProcessContext.cs
index 87296830..87296830 100644
--- a/Ryujinx.HLE/HOS/Kernel/Process/ProcessContext.cs
+++ b/src/Ryujinx.HLE/HOS/Kernel/Process/ProcessContext.cs
diff --git a/Ryujinx.HLE/HOS/Kernel/Process/ProcessContextFactory.cs b/src/Ryujinx.HLE/HOS/Kernel/Process/ProcessContextFactory.cs
index 1c5798b4..1c5798b4 100644
--- a/Ryujinx.HLE/HOS/Kernel/Process/ProcessContextFactory.cs
+++ b/src/Ryujinx.HLE/HOS/Kernel/Process/ProcessContextFactory.cs
diff --git a/Ryujinx.HLE/HOS/Kernel/Process/ProcessCreationFlags.cs b/src/Ryujinx.HLE/HOS/Kernel/Process/ProcessCreationFlags.cs
index a79978ac..a79978ac 100644
--- a/Ryujinx.HLE/HOS/Kernel/Process/ProcessCreationFlags.cs
+++ b/src/Ryujinx.HLE/HOS/Kernel/Process/ProcessCreationFlags.cs
diff --git a/Ryujinx.HLE/HOS/Kernel/Process/ProcessCreationInfo.cs b/src/Ryujinx.HLE/HOS/Kernel/Process/ProcessCreationInfo.cs
index c05bb574..c05bb574 100644
--- a/Ryujinx.HLE/HOS/Kernel/Process/ProcessCreationInfo.cs
+++ b/src/Ryujinx.HLE/HOS/Kernel/Process/ProcessCreationInfo.cs
diff --git a/Ryujinx.HLE/HOS/Kernel/Process/ProcessExecutionContext.cs b/src/Ryujinx.HLE/HOS/Kernel/Process/ProcessExecutionContext.cs
index 77fcdf33..77fcdf33 100644
--- a/Ryujinx.HLE/HOS/Kernel/Process/ProcessExecutionContext.cs
+++ b/src/Ryujinx.HLE/HOS/Kernel/Process/ProcessExecutionContext.cs
diff --git a/Ryujinx.HLE/HOS/Kernel/Process/ProcessState.cs b/src/Ryujinx.HLE/HOS/Kernel/Process/ProcessState.cs
index 5ef3077e..5ef3077e 100644
--- a/Ryujinx.HLE/HOS/Kernel/Process/ProcessState.cs
+++ b/src/Ryujinx.HLE/HOS/Kernel/Process/ProcessState.cs
diff --git a/Ryujinx.HLE/HOS/Kernel/Process/ProcessTamperInfo.cs b/src/Ryujinx.HLE/HOS/Kernel/Process/ProcessTamperInfo.cs
index 4cf67172..4cf67172 100644
--- a/Ryujinx.HLE/HOS/Kernel/Process/ProcessTamperInfo.cs
+++ b/src/Ryujinx.HLE/HOS/Kernel/Process/ProcessTamperInfo.cs
diff --git a/Ryujinx.HLE/HOS/Kernel/SupervisorCall/CodeMemoryOperation.cs b/src/Ryujinx.HLE/HOS/Kernel/SupervisorCall/CodeMemoryOperation.cs
index 511ee99a..511ee99a 100644
--- a/Ryujinx.HLE/HOS/Kernel/SupervisorCall/CodeMemoryOperation.cs
+++ b/src/Ryujinx.HLE/HOS/Kernel/SupervisorCall/CodeMemoryOperation.cs
diff --git a/Ryujinx.HLE/HOS/Kernel/SupervisorCall/InfoType.cs b/src/Ryujinx.HLE/HOS/Kernel/SupervisorCall/InfoType.cs
index 3cf7ba74..3cf7ba74 100644
--- a/Ryujinx.HLE/HOS/Kernel/SupervisorCall/InfoType.cs
+++ b/src/Ryujinx.HLE/HOS/Kernel/SupervisorCall/InfoType.cs
diff --git a/Ryujinx.HLE/HOS/Kernel/SupervisorCall/MemoryInfo.cs b/src/Ryujinx.HLE/HOS/Kernel/SupervisorCall/MemoryInfo.cs
index a71cce1f..a71cce1f 100644
--- a/Ryujinx.HLE/HOS/Kernel/SupervisorCall/MemoryInfo.cs
+++ b/src/Ryujinx.HLE/HOS/Kernel/SupervisorCall/MemoryInfo.cs
diff --git a/Ryujinx.HLE/HOS/Kernel/SupervisorCall/PointerSizedAttribute.cs b/src/Ryujinx.HLE/HOS/Kernel/SupervisorCall/PointerSizedAttribute.cs
index 154164fb..154164fb 100644
--- a/Ryujinx.HLE/HOS/Kernel/SupervisorCall/PointerSizedAttribute.cs
+++ b/src/Ryujinx.HLE/HOS/Kernel/SupervisorCall/PointerSizedAttribute.cs
diff --git a/Ryujinx.HLE/HOS/Kernel/SupervisorCall/SvcAttribute.cs b/src/Ryujinx.HLE/HOS/Kernel/SupervisorCall/SvcAttribute.cs
index b8839d1d..b8839d1d 100644
--- a/Ryujinx.HLE/HOS/Kernel/SupervisorCall/SvcAttribute.cs
+++ b/src/Ryujinx.HLE/HOS/Kernel/SupervisorCall/SvcAttribute.cs
diff --git a/Ryujinx.HLE/HOS/Kernel/SupervisorCall/SvcImplAttribute.cs b/src/Ryujinx.HLE/HOS/Kernel/SupervisorCall/SvcImplAttribute.cs
index a32d851f..a32d851f 100644
--- a/Ryujinx.HLE/HOS/Kernel/SupervisorCall/SvcImplAttribute.cs
+++ b/src/Ryujinx.HLE/HOS/Kernel/SupervisorCall/SvcImplAttribute.cs
diff --git a/Ryujinx.HLE/HOS/Kernel/SupervisorCall/Syscall.cs b/src/Ryujinx.HLE/HOS/Kernel/SupervisorCall/Syscall.cs
index 3163c348..3163c348 100644
--- a/Ryujinx.HLE/HOS/Kernel/SupervisorCall/Syscall.cs
+++ b/src/Ryujinx.HLE/HOS/Kernel/SupervisorCall/Syscall.cs
diff --git a/Ryujinx.HLE/HOS/Kernel/SupervisorCall/SyscallHandler.cs b/src/Ryujinx.HLE/HOS/Kernel/SupervisorCall/SyscallHandler.cs
index 710bac94..710bac94 100644
--- a/Ryujinx.HLE/HOS/Kernel/SupervisorCall/SyscallHandler.cs
+++ b/src/Ryujinx.HLE/HOS/Kernel/SupervisorCall/SyscallHandler.cs
diff --git a/Ryujinx.HLE/HOS/Kernel/SupervisorCall/ThreadContext.cs b/src/Ryujinx.HLE/HOS/Kernel/SupervisorCall/ThreadContext.cs
index b524406a..b524406a 100644
--- a/Ryujinx.HLE/HOS/Kernel/SupervisorCall/ThreadContext.cs
+++ b/src/Ryujinx.HLE/HOS/Kernel/SupervisorCall/ThreadContext.cs
diff --git a/Ryujinx.HLE/HOS/Kernel/Threading/ArbitrationType.cs b/src/Ryujinx.HLE/HOS/Kernel/Threading/ArbitrationType.cs
index 89c1bf1f..89c1bf1f 100644
--- a/Ryujinx.HLE/HOS/Kernel/Threading/ArbitrationType.cs
+++ b/src/Ryujinx.HLE/HOS/Kernel/Threading/ArbitrationType.cs
diff --git a/Ryujinx.HLE/HOS/Kernel/Threading/KAddressArbiter.cs b/src/Ryujinx.HLE/HOS/Kernel/Threading/KAddressArbiter.cs
index 74867b44..74867b44 100644
--- a/Ryujinx.HLE/HOS/Kernel/Threading/KAddressArbiter.cs
+++ b/src/Ryujinx.HLE/HOS/Kernel/Threading/KAddressArbiter.cs
diff --git a/Ryujinx.HLE/HOS/Kernel/Threading/KConditionVariable.cs b/src/Ryujinx.HLE/HOS/Kernel/Threading/KConditionVariable.cs
index 891e632f..891e632f 100644
--- a/Ryujinx.HLE/HOS/Kernel/Threading/KConditionVariable.cs
+++ b/src/Ryujinx.HLE/HOS/Kernel/Threading/KConditionVariable.cs
diff --git a/Ryujinx.HLE/HOS/Kernel/Threading/KCriticalSection.cs b/src/Ryujinx.HLE/HOS/Kernel/Threading/KCriticalSection.cs
index 1d61f2f0..1d61f2f0 100644
--- a/Ryujinx.HLE/HOS/Kernel/Threading/KCriticalSection.cs
+++ b/src/Ryujinx.HLE/HOS/Kernel/Threading/KCriticalSection.cs
diff --git a/Ryujinx.HLE/HOS/Kernel/Threading/KEvent.cs b/src/Ryujinx.HLE/HOS/Kernel/Threading/KEvent.cs
index da3e217b..da3e217b 100644
--- a/Ryujinx.HLE/HOS/Kernel/Threading/KEvent.cs
+++ b/src/Ryujinx.HLE/HOS/Kernel/Threading/KEvent.cs
diff --git a/Ryujinx.HLE/HOS/Kernel/Threading/KPriorityQueue.cs b/src/Ryujinx.HLE/HOS/Kernel/Threading/KPriorityQueue.cs
index 14fba704..14fba704 100644
--- a/Ryujinx.HLE/HOS/Kernel/Threading/KPriorityQueue.cs
+++ b/src/Ryujinx.HLE/HOS/Kernel/Threading/KPriorityQueue.cs
diff --git a/Ryujinx.HLE/HOS/Kernel/Threading/KReadableEvent.cs b/src/Ryujinx.HLE/HOS/Kernel/Threading/KReadableEvent.cs
index d9e7befa..d9e7befa 100644
--- a/Ryujinx.HLE/HOS/Kernel/Threading/KReadableEvent.cs
+++ b/src/Ryujinx.HLE/HOS/Kernel/Threading/KReadableEvent.cs
diff --git a/Ryujinx.HLE/HOS/Kernel/Threading/KScheduler.cs b/src/Ryujinx.HLE/HOS/Kernel/Threading/KScheduler.cs
index b9de7d9c..b9de7d9c 100644
--- a/Ryujinx.HLE/HOS/Kernel/Threading/KScheduler.cs
+++ b/src/Ryujinx.HLE/HOS/Kernel/Threading/KScheduler.cs
diff --git a/Ryujinx.HLE/HOS/Kernel/Threading/KSynchronization.cs b/src/Ryujinx.HLE/HOS/Kernel/Threading/KSynchronization.cs
index 9c196810..9c196810 100644
--- a/Ryujinx.HLE/HOS/Kernel/Threading/KSynchronization.cs
+++ b/src/Ryujinx.HLE/HOS/Kernel/Threading/KSynchronization.cs
diff --git a/Ryujinx.HLE/HOS/Kernel/Threading/KThread.cs b/src/Ryujinx.HLE/HOS/Kernel/Threading/KThread.cs
index 63396468..63396468 100644
--- a/Ryujinx.HLE/HOS/Kernel/Threading/KThread.cs
+++ b/src/Ryujinx.HLE/HOS/Kernel/Threading/KThread.cs
diff --git a/Ryujinx.HLE/HOS/Kernel/Threading/KThreadContext.cs b/src/Ryujinx.HLE/HOS/Kernel/Threading/KThreadContext.cs
index e8ad53c2..e8ad53c2 100644
--- a/Ryujinx.HLE/HOS/Kernel/Threading/KThreadContext.cs
+++ b/src/Ryujinx.HLE/HOS/Kernel/Threading/KThreadContext.cs
diff --git a/Ryujinx.HLE/HOS/Kernel/Threading/KWritableEvent.cs b/src/Ryujinx.HLE/HOS/Kernel/Threading/KWritableEvent.cs
index b46122be..b46122be 100644
--- a/Ryujinx.HLE/HOS/Kernel/Threading/KWritableEvent.cs
+++ b/src/Ryujinx.HLE/HOS/Kernel/Threading/KWritableEvent.cs
diff --git a/Ryujinx.HLE/HOS/Kernel/Threading/SignalType.cs b/src/Ryujinx.HLE/HOS/Kernel/Threading/SignalType.cs
index e72b719b..e72b719b 100644
--- a/Ryujinx.HLE/HOS/Kernel/Threading/SignalType.cs
+++ b/src/Ryujinx.HLE/HOS/Kernel/Threading/SignalType.cs
diff --git a/Ryujinx.HLE/HOS/Kernel/Threading/ThreadSchedState.cs b/src/Ryujinx.HLE/HOS/Kernel/Threading/ThreadSchedState.cs
index 9577075c..9577075c 100644
--- a/Ryujinx.HLE/HOS/Kernel/Threading/ThreadSchedState.cs
+++ b/src/Ryujinx.HLE/HOS/Kernel/Threading/ThreadSchedState.cs
diff --git a/Ryujinx.HLE/HOS/Kernel/Threading/ThreadType.cs b/src/Ryujinx.HLE/HOS/Kernel/Threading/ThreadType.cs
index 0b44b57f..0b44b57f 100644
--- a/Ryujinx.HLE/HOS/Kernel/Threading/ThreadType.cs
+++ b/src/Ryujinx.HLE/HOS/Kernel/Threading/ThreadType.cs
diff --git a/Ryujinx.HLE/HOS/LibHacHorizonManager.cs b/src/Ryujinx.HLE/HOS/LibHacHorizonManager.cs
index 8fde5dd6..8fde5dd6 100644
--- a/Ryujinx.HLE/HOS/LibHacHorizonManager.cs
+++ b/src/Ryujinx.HLE/HOS/LibHacHorizonManager.cs
diff --git a/Ryujinx.HLE/HOS/ModLoader.cs b/src/Ryujinx.HLE/HOS/ModLoader.cs
index 16512541..16512541 100644
--- a/Ryujinx.HLE/HOS/ModLoader.cs
+++ b/src/Ryujinx.HLE/HOS/ModLoader.cs
diff --git a/Ryujinx.HLE/HOS/ResultCode.cs b/src/Ryujinx.HLE/HOS/ResultCode.cs
index 4004357b..4004357b 100644
--- a/Ryujinx.HLE/HOS/ResultCode.cs
+++ b/src/Ryujinx.HLE/HOS/ResultCode.cs
diff --git a/Ryujinx.HLE/HOS/ServiceCtx.cs b/src/Ryujinx.HLE/HOS/ServiceCtx.cs
index 659b212a..659b212a 100644
--- a/Ryujinx.HLE/HOS/ServiceCtx.cs
+++ b/src/Ryujinx.HLE/HOS/ServiceCtx.cs
diff --git a/Ryujinx.HLE/HOS/Services/Account/Acc/AccountManager.cs b/src/Ryujinx.HLE/HOS/Services/Account/Acc/AccountManager.cs
index f5364329..f5364329 100644
--- a/Ryujinx.HLE/HOS/Services/Account/Acc/AccountManager.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Account/Acc/AccountManager.cs
diff --git a/Ryujinx.HLE/HOS/Services/Account/Acc/AccountSaveDataManager.cs b/src/Ryujinx.HLE/HOS/Services/Account/Acc/AccountSaveDataManager.cs
index 535779d2..535779d2 100644
--- a/Ryujinx.HLE/HOS/Services/Account/Acc/AccountSaveDataManager.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Account/Acc/AccountSaveDataManager.cs
diff --git a/Ryujinx.HLE/HOS/Services/Account/Acc/AccountService/IManagerForApplication.cs b/src/Ryujinx.HLE/HOS/Services/Account/Acc/AccountService/IManagerForApplication.cs
index 9c058cb5..9c058cb5 100644
--- a/Ryujinx.HLE/HOS/Services/Account/Acc/AccountService/IManagerForApplication.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Account/Acc/AccountService/IManagerForApplication.cs
diff --git a/Ryujinx.HLE/HOS/Services/Account/Acc/AccountService/IManagerForSystemService.cs b/src/Ryujinx.HLE/HOS/Services/Account/Acc/AccountService/IManagerForSystemService.cs
index ecd51687..ecd51687 100644
--- a/Ryujinx.HLE/HOS/Services/Account/Acc/AccountService/IManagerForSystemService.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Account/Acc/AccountService/IManagerForSystemService.cs
diff --git a/Ryujinx.HLE/HOS/Services/Account/Acc/AccountService/IProfile.cs b/src/Ryujinx.HLE/HOS/Services/Account/Acc/AccountService/IProfile.cs
index 14911dfb..14911dfb 100644
--- a/Ryujinx.HLE/HOS/Services/Account/Acc/AccountService/IProfile.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Account/Acc/AccountService/IProfile.cs
diff --git a/Ryujinx.HLE/HOS/Services/Account/Acc/AccountService/IProfileEditor.cs b/src/Ryujinx.HLE/HOS/Services/Account/Acc/AccountService/IProfileEditor.cs
index 64b6070f..64b6070f 100644
--- a/Ryujinx.HLE/HOS/Services/Account/Acc/AccountService/IProfileEditor.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Account/Acc/AccountService/IProfileEditor.cs
diff --git a/Ryujinx.HLE/HOS/Services/Account/Acc/AccountService/ManagerServer.cs b/src/Ryujinx.HLE/HOS/Services/Account/Acc/AccountService/ManagerServer.cs
index 97240311..97240311 100644
--- a/Ryujinx.HLE/HOS/Services/Account/Acc/AccountService/ManagerServer.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Account/Acc/AccountService/ManagerServer.cs
diff --git a/Ryujinx.HLE/HOS/Services/Account/Acc/AccountService/ProfileServer.cs b/src/Ryujinx.HLE/HOS/Services/Account/Acc/AccountService/ProfileServer.cs
index 8e29f94b..8e29f94b 100644
--- a/Ryujinx.HLE/HOS/Services/Account/Acc/AccountService/ProfileServer.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Account/Acc/AccountService/ProfileServer.cs
diff --git a/Ryujinx.HLE/HOS/Services/Account/Acc/ApplicationServiceServer.cs b/src/Ryujinx.HLE/HOS/Services/Account/Acc/ApplicationServiceServer.cs
index d9f9864a..d9f9864a 100644
--- a/Ryujinx.HLE/HOS/Services/Account/Acc/ApplicationServiceServer.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Account/Acc/ApplicationServiceServer.cs
diff --git a/Ryujinx.HLE/HOS/Services/Account/Acc/AsyncContext/AsyncExecution.cs b/src/Ryujinx.HLE/HOS/Services/Account/Acc/AsyncContext/AsyncExecution.cs
index 2ea92b11..2ea92b11 100644
--- a/Ryujinx.HLE/HOS/Services/Account/Acc/AsyncContext/AsyncExecution.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Account/Acc/AsyncContext/AsyncExecution.cs
diff --git a/Ryujinx.HLE/HOS/Services/Account/Acc/DefaultUserImage.jpg b/src/Ryujinx.HLE/HOS/Services/Account/Acc/DefaultUserImage.jpg
index 64c4e8ec..64c4e8ec 100644
--- a/Ryujinx.HLE/HOS/Services/Account/Acc/DefaultUserImage.jpg
+++ b/src/Ryujinx.HLE/HOS/Services/Account/Acc/DefaultUserImage.jpg
Binary files differ
diff --git a/Ryujinx.HLE/HOS/Services/Account/Acc/IAccountServiceForAdministrator.cs b/src/Ryujinx.HLE/HOS/Services/Account/Acc/IAccountServiceForAdministrator.cs
index 6a457f04..6a457f04 100644
--- a/Ryujinx.HLE/HOS/Services/Account/Acc/IAccountServiceForAdministrator.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Account/Acc/IAccountServiceForAdministrator.cs
diff --git a/Ryujinx.HLE/HOS/Services/Account/Acc/IAccountServiceForApplication.cs b/src/Ryujinx.HLE/HOS/Services/Account/Acc/IAccountServiceForApplication.cs
index 8ec83e5c..8ec83e5c 100644
--- a/Ryujinx.HLE/HOS/Services/Account/Acc/IAccountServiceForApplication.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Account/Acc/IAccountServiceForApplication.cs
diff --git a/Ryujinx.HLE/HOS/Services/Account/Acc/IAccountServiceForSystemService.cs b/src/Ryujinx.HLE/HOS/Services/Account/Acc/IAccountServiceForSystemService.cs
index 3b5f3b03..3b5f3b03 100644
--- a/Ryujinx.HLE/HOS/Services/Account/Acc/IAccountServiceForSystemService.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Account/Acc/IAccountServiceForSystemService.cs
diff --git a/Ryujinx.HLE/HOS/Services/Account/Acc/IAsyncContext.cs b/src/Ryujinx.HLE/HOS/Services/Account/Acc/IAsyncContext.cs
index c9af0727..c9af0727 100644
--- a/Ryujinx.HLE/HOS/Services/Account/Acc/IAsyncContext.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Account/Acc/IAsyncContext.cs
diff --git a/Ryujinx.HLE/HOS/Services/Account/Acc/IAsyncNetworkServiceLicenseKindContext.cs b/src/Ryujinx.HLE/HOS/Services/Account/Acc/IAsyncNetworkServiceLicenseKindContext.cs
index 1fa5cf2a..1fa5cf2a 100644
--- a/Ryujinx.HLE/HOS/Services/Account/Acc/IAsyncNetworkServiceLicenseKindContext.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Account/Acc/IAsyncNetworkServiceLicenseKindContext.cs
diff --git a/Ryujinx.HLE/HOS/Services/Account/Acc/IBaasAccessTokenAccessor.cs b/src/Ryujinx.HLE/HOS/Services/Account/Acc/IBaasAccessTokenAccessor.cs
index 223be2f5..223be2f5 100644
--- a/Ryujinx.HLE/HOS/Services/Account/Acc/IBaasAccessTokenAccessor.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Account/Acc/IBaasAccessTokenAccessor.cs
diff --git a/Ryujinx.HLE/HOS/Services/Account/Acc/ProfilesJsonSerializerContext.cs b/src/Ryujinx.HLE/HOS/Services/Account/Acc/ProfilesJsonSerializerContext.cs
index 6b54898e..6b54898e 100644
--- a/Ryujinx.HLE/HOS/Services/Account/Acc/ProfilesJsonSerializerContext.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Account/Acc/ProfilesJsonSerializerContext.cs
diff --git a/Ryujinx.HLE/HOS/Services/Account/Acc/Types/AccountServiceFlag.cs b/src/Ryujinx.HLE/HOS/Services/Account/Acc/Types/AccountServiceFlag.cs
index a991f977..a991f977 100644
--- a/Ryujinx.HLE/HOS/Services/Account/Acc/Types/AccountServiceFlag.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Account/Acc/Types/AccountServiceFlag.cs
diff --git a/Ryujinx.HLE/HOS/Services/Account/Acc/Types/AccountState.cs b/src/Ryujinx.HLE/HOS/Services/Account/Acc/Types/AccountState.cs
index 1699abfb..1699abfb 100644
--- a/Ryujinx.HLE/HOS/Services/Account/Acc/Types/AccountState.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Account/Acc/Types/AccountState.cs
diff --git a/Ryujinx.HLE/HOS/Services/Account/Acc/Types/NetworkServiceLicenseKind.cs b/src/Ryujinx.HLE/HOS/Services/Account/Acc/Types/NetworkServiceLicenseKind.cs
index a33e2670..a33e2670 100644
--- a/Ryujinx.HLE/HOS/Services/Account/Acc/Types/NetworkServiceLicenseKind.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Account/Acc/Types/NetworkServiceLicenseKind.cs
diff --git a/Ryujinx.HLE/HOS/Services/Account/Acc/Types/ProfilesJson.cs b/src/Ryujinx.HLE/HOS/Services/Account/Acc/Types/ProfilesJson.cs
index 09f9d142..09f9d142 100644
--- a/Ryujinx.HLE/HOS/Services/Account/Acc/Types/ProfilesJson.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Account/Acc/Types/ProfilesJson.cs
diff --git a/Ryujinx.HLE/HOS/Services/Account/Acc/Types/UserId.cs b/src/Ryujinx.HLE/HOS/Services/Account/Acc/Types/UserId.cs
index e5577a94..e5577a94 100644
--- a/Ryujinx.HLE/HOS/Services/Account/Acc/Types/UserId.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Account/Acc/Types/UserId.cs
diff --git a/Ryujinx.HLE/HOS/Services/Account/Acc/Types/UserProfile.cs b/src/Ryujinx.HLE/HOS/Services/Account/Acc/Types/UserProfile.cs
index 210b369c..210b369c 100644
--- a/Ryujinx.HLE/HOS/Services/Account/Acc/Types/UserProfile.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Account/Acc/Types/UserProfile.cs
diff --git a/Ryujinx.HLE/HOS/Services/Account/Acc/Types/UserProfileJson.cs b/src/Ryujinx.HLE/HOS/Services/Account/Acc/Types/UserProfileJson.cs
index 06ff4833..06ff4833 100644
--- a/Ryujinx.HLE/HOS/Services/Account/Acc/Types/UserProfileJson.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Account/Acc/Types/UserProfileJson.cs
diff --git a/Ryujinx.HLE/HOS/Services/Account/Dauth/IService.cs b/src/Ryujinx.HLE/HOS/Services/Account/Dauth/IService.cs
index 72301349..72301349 100644
--- a/Ryujinx.HLE/HOS/Services/Account/Dauth/IService.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Account/Dauth/IService.cs
diff --git a/Ryujinx.HLE/HOS/Services/Account/ResultCode.cs b/src/Ryujinx.HLE/HOS/Services/Account/ResultCode.cs
index 34114ec9..34114ec9 100644
--- a/Ryujinx.HLE/HOS/Services/Account/ResultCode.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Account/ResultCode.cs
diff --git a/Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/ILibraryAppletProxy.cs b/src/Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/ILibraryAppletProxy.cs
index bf86aaaa..bf86aaaa 100644
--- a/Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/ILibraryAppletProxy.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/ILibraryAppletProxy.cs
diff --git a/Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/ISystemAppletProxy.cs b/src/Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/ISystemAppletProxy.cs
index dc26d80c..dc26d80c 100644
--- a/Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/ISystemAppletProxy.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/ISystemAppletProxy.cs
diff --git a/Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/LibraryAppletCreator/ILibraryAppletAccessor.cs b/src/Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/LibraryAppletCreator/ILibraryAppletAccessor.cs
index 0057eba3..0057eba3 100644
--- a/Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/LibraryAppletCreator/ILibraryAppletAccessor.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/LibraryAppletCreator/ILibraryAppletAccessor.cs
diff --git a/Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/LibraryAppletProxy/AppletStandalone.cs b/src/Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/LibraryAppletProxy/AppletStandalone.cs
index 69967c56..69967c56 100644
--- a/Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/LibraryAppletProxy/AppletStandalone.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/LibraryAppletProxy/AppletStandalone.cs
diff --git a/Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/LibraryAppletProxy/ILibraryAppletSelfAccessor.cs b/src/Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/LibraryAppletProxy/ILibraryAppletSelfAccessor.cs
index 176bd632..176bd632 100644
--- a/Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/LibraryAppletProxy/ILibraryAppletSelfAccessor.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/LibraryAppletProxy/ILibraryAppletSelfAccessor.cs
diff --git a/Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/LibraryAppletProxy/IProcessWindingController.cs b/src/Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/LibraryAppletProxy/IProcessWindingController.cs
index 6acd18cd..6acd18cd 100644
--- a/Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/LibraryAppletProxy/IProcessWindingController.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/LibraryAppletProxy/IProcessWindingController.cs
diff --git a/Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/SystemAppletProxy/IAppletCommonFunctions.cs b/src/Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/SystemAppletProxy/IAppletCommonFunctions.cs
index c42202b8..c42202b8 100644
--- a/Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/SystemAppletProxy/IAppletCommonFunctions.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/SystemAppletProxy/IAppletCommonFunctions.cs
diff --git a/Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/SystemAppletProxy/IApplicationCreator.cs b/src/Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/SystemAppletProxy/IApplicationCreator.cs
index 79e5b050..79e5b050 100644
--- a/Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/SystemAppletProxy/IApplicationCreator.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/SystemAppletProxy/IApplicationCreator.cs
diff --git a/Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/SystemAppletProxy/IAudioController.cs b/src/Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/SystemAppletProxy/IAudioController.cs
index 48dd42e4..48dd42e4 100644
--- a/Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/SystemAppletProxy/IAudioController.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/SystemAppletProxy/IAudioController.cs
diff --git a/Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/SystemAppletProxy/ICommonStateGetter.cs b/src/Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/SystemAppletProxy/ICommonStateGetter.cs
index 381267b0..381267b0 100644
--- a/Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/SystemAppletProxy/ICommonStateGetter.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/SystemAppletProxy/ICommonStateGetter.cs
diff --git a/Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/SystemAppletProxy/IDebugFunctions.cs b/src/Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/SystemAppletProxy/IDebugFunctions.cs
index 51a112fd..51a112fd 100644
--- a/Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/SystemAppletProxy/IDebugFunctions.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/SystemAppletProxy/IDebugFunctions.cs
diff --git a/Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/SystemAppletProxy/IDisplayController.cs b/src/Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/SystemAppletProxy/IDisplayController.cs
index 92c97d86..92c97d86 100644
--- a/Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/SystemAppletProxy/IDisplayController.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/SystemAppletProxy/IDisplayController.cs
diff --git a/Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/SystemAppletProxy/IGlobalStateController.cs b/src/Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/SystemAppletProxy/IGlobalStateController.cs
index 24eeefb9..24eeefb9 100644
--- a/Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/SystemAppletProxy/IGlobalStateController.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/SystemAppletProxy/IGlobalStateController.cs
diff --git a/Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/SystemAppletProxy/IHomeMenuFunctions.cs b/src/Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/SystemAppletProxy/IHomeMenuFunctions.cs
index c7c073ff..c7c073ff 100644
--- a/Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/SystemAppletProxy/IHomeMenuFunctions.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/SystemAppletProxy/IHomeMenuFunctions.cs
diff --git a/Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/SystemAppletProxy/ILibraryAppletCreator.cs b/src/Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/SystemAppletProxy/ILibraryAppletCreator.cs
index fb870c24..fb870c24 100644
--- a/Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/SystemAppletProxy/ILibraryAppletCreator.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/SystemAppletProxy/ILibraryAppletCreator.cs
diff --git a/Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/SystemAppletProxy/ISelfController.cs b/src/Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/SystemAppletProxy/ISelfController.cs
index 399e778a..399e778a 100644
--- a/Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/SystemAppletProxy/ISelfController.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/SystemAppletProxy/ISelfController.cs
diff --git a/Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/SystemAppletProxy/IWindowController.cs b/src/Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/SystemAppletProxy/IWindowController.cs
index 730df5d0..730df5d0 100644
--- a/Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/SystemAppletProxy/IWindowController.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/SystemAppletProxy/IWindowController.cs
diff --git a/Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/SystemAppletProxy/Types/AlbumReportOption.cs b/src/Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/SystemAppletProxy/Types/AlbumReportOption.cs
index 84fc5c83..84fc5c83 100644
--- a/Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/SystemAppletProxy/Types/AlbumReportOption.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/SystemAppletProxy/Types/AlbumReportOption.cs
diff --git a/Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/SystemAppletProxy/Types/AppletMessage.cs b/src/Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/SystemAppletProxy/Types/AppletMessage.cs
index 2920c329..2920c329 100644
--- a/Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/SystemAppletProxy/Types/AppletMessage.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/SystemAppletProxy/Types/AppletMessage.cs
diff --git a/Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/SystemAppletProxy/Types/FocusState.cs b/src/Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/SystemAppletProxy/Types/FocusState.cs
index dfd7d7f2..dfd7d7f2 100644
--- a/Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/SystemAppletProxy/Types/FocusState.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/SystemAppletProxy/Types/FocusState.cs
diff --git a/Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/SystemAppletProxy/Types/OperationMode.cs b/src/Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/SystemAppletProxy/Types/OperationMode.cs
index a82ed476..a82ed476 100644
--- a/Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/SystemAppletProxy/Types/OperationMode.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/SystemAppletProxy/Types/OperationMode.cs
diff --git a/Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/SystemAppletProxy/Types/WirelessPriorityMode.cs b/src/Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/SystemAppletProxy/Types/WirelessPriorityMode.cs
index e8ba9b61..e8ba9b61 100644
--- a/Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/SystemAppletProxy/Types/WirelessPriorityMode.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/SystemAppletProxy/Types/WirelessPriorityMode.cs
diff --git a/Ryujinx.HLE/HOS/Services/Am/AppletAE/AppletFifo.cs b/src/Ryujinx.HLE/HOS/Services/Am/AppletAE/AppletFifo.cs
index fb16c86e..fb16c86e 100644
--- a/Ryujinx.HLE/HOS/Services/Am/AppletAE/AppletFifo.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Am/AppletAE/AppletFifo.cs
diff --git a/Ryujinx.HLE/HOS/Services/Am/AppletAE/AppletSession.cs b/src/Ryujinx.HLE/HOS/Services/Am/AppletAE/AppletSession.cs
index 6c9197b3..6c9197b3 100644
--- a/Ryujinx.HLE/HOS/Services/Am/AppletAE/AppletSession.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Am/AppletAE/AppletSession.cs
diff --git a/Ryujinx.HLE/HOS/Services/Am/AppletAE/IAllSystemAppletProxiesService.cs b/src/Ryujinx.HLE/HOS/Services/Am/AppletAE/IAllSystemAppletProxiesService.cs
index 728a1018..728a1018 100644
--- a/Ryujinx.HLE/HOS/Services/Am/AppletAE/IAllSystemAppletProxiesService.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Am/AppletAE/IAllSystemAppletProxiesService.cs
diff --git a/Ryujinx.HLE/HOS/Services/Am/AppletAE/IAppletFifo.cs b/src/Ryujinx.HLE/HOS/Services/Am/AppletAE/IAppletFifo.cs
index ca79bac7..ca79bac7 100644
--- a/Ryujinx.HLE/HOS/Services/Am/AppletAE/IAppletFifo.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Am/AppletAE/IAppletFifo.cs
diff --git a/Ryujinx.HLE/HOS/Services/Am/AppletAE/IStorage.cs b/src/Ryujinx.HLE/HOS/Services/Am/AppletAE/IStorage.cs
index 190f1a51..190f1a51 100644
--- a/Ryujinx.HLE/HOS/Services/Am/AppletAE/IStorage.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Am/AppletAE/IStorage.cs
diff --git a/Ryujinx.HLE/HOS/Services/Am/AppletAE/IStorageAccessor.cs b/src/Ryujinx.HLE/HOS/Services/Am/AppletAE/IStorageAccessor.cs
index 4c7e264d..4c7e264d 100644
--- a/Ryujinx.HLE/HOS/Services/Am/AppletAE/IStorageAccessor.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Am/AppletAE/IStorageAccessor.cs
diff --git a/Ryujinx.HLE/HOS/Services/Am/AppletAE/Storage/StorageHelper.cs b/src/Ryujinx.HLE/HOS/Services/Am/AppletAE/Storage/StorageHelper.cs
index 49e342f2..49e342f2 100644
--- a/Ryujinx.HLE/HOS/Services/Am/AppletAE/Storage/StorageHelper.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Am/AppletAE/Storage/StorageHelper.cs
diff --git a/Ryujinx.HLE/HOS/Services/Am/AppletAE/Types/AppletId.cs b/src/Ryujinx.HLE/HOS/Services/Am/AppletAE/Types/AppletId.cs
index 917f6865..917f6865 100644
--- a/Ryujinx.HLE/HOS/Services/Am/AppletAE/Types/AppletId.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Am/AppletAE/Types/AppletId.cs
diff --git a/Ryujinx.HLE/HOS/Services/Am/AppletAE/Types/AppletIdentityInfo.cs b/src/Ryujinx.HLE/HOS/Services/Am/AppletAE/Types/AppletIdentityInfo.cs
index 17a485ab..17a485ab 100644
--- a/Ryujinx.HLE/HOS/Services/Am/AppletAE/Types/AppletIdentityInfo.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Am/AppletAE/Types/AppletIdentityInfo.cs
diff --git a/Ryujinx.HLE/HOS/Services/Am/AppletAE/Types/AppletProcessLaunchReason.cs b/src/Ryujinx.HLE/HOS/Services/Am/AppletAE/Types/AppletProcessLaunchReason.cs
index 6c528337..6c528337 100644
--- a/Ryujinx.HLE/HOS/Services/Am/AppletAE/Types/AppletProcessLaunchReason.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Am/AppletAE/Types/AppletProcessLaunchReason.cs
diff --git a/Ryujinx.HLE/HOS/Services/Am/AppletAE/Types/LibraryAppletInfo.cs b/src/Ryujinx.HLE/HOS/Services/Am/AppletAE/Types/LibraryAppletInfo.cs
index fc1c11e4..fc1c11e4 100644
--- a/Ryujinx.HLE/HOS/Services/Am/AppletAE/Types/LibraryAppletInfo.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Am/AppletAE/Types/LibraryAppletInfo.cs
diff --git a/Ryujinx.HLE/HOS/Services/Am/AppletAE/Types/LibraryAppletMode.cs b/src/Ryujinx.HLE/HOS/Services/Am/AppletAE/Types/LibraryAppletMode.cs
index 6b9a2284..6b9a2284 100644
--- a/Ryujinx.HLE/HOS/Services/Am/AppletAE/Types/LibraryAppletMode.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Am/AppletAE/Types/LibraryAppletMode.cs
diff --git a/Ryujinx.HLE/HOS/Services/Am/AppletOE/ApplicationProxyService/ApplicationProxy/IApplicationFunctions.cs b/src/Ryujinx.HLE/HOS/Services/Am/AppletOE/ApplicationProxyService/ApplicationProxy/IApplicationFunctions.cs
index 5ae8f459..5ae8f459 100644
--- a/Ryujinx.HLE/HOS/Services/Am/AppletOE/ApplicationProxyService/ApplicationProxy/IApplicationFunctions.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Am/AppletOE/ApplicationProxyService/ApplicationProxy/IApplicationFunctions.cs
diff --git a/Ryujinx.HLE/HOS/Services/Am/AppletOE/ApplicationProxyService/ApplicationProxy/Types/LaunchParameterKind.cs b/src/Ryujinx.HLE/HOS/Services/Am/AppletOE/ApplicationProxyService/ApplicationProxy/Types/LaunchParameterKind.cs
index 40432074..40432074 100644
--- a/Ryujinx.HLE/HOS/Services/Am/AppletOE/ApplicationProxyService/ApplicationProxy/Types/LaunchParameterKind.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Am/AppletOE/ApplicationProxyService/ApplicationProxy/Types/LaunchParameterKind.cs
diff --git a/Ryujinx.HLE/HOS/Services/Am/AppletOE/ApplicationProxyService/ApplicationProxy/Types/ProgramSpecifyKind.cs b/src/Ryujinx.HLE/HOS/Services/Am/AppletOE/ApplicationProxyService/ApplicationProxy/Types/ProgramSpecifyKind.cs
index efc284a5..efc284a5 100644
--- a/Ryujinx.HLE/HOS/Services/Am/AppletOE/ApplicationProxyService/ApplicationProxy/Types/ProgramSpecifyKind.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Am/AppletOE/ApplicationProxyService/ApplicationProxy/Types/ProgramSpecifyKind.cs
diff --git a/Ryujinx.HLE/HOS/Services/Am/AppletOE/ApplicationProxyService/IApplicationProxy.cs b/src/Ryujinx.HLE/HOS/Services/Am/AppletOE/ApplicationProxyService/IApplicationProxy.cs
index 50e3be27..50e3be27 100644
--- a/Ryujinx.HLE/HOS/Services/Am/AppletOE/ApplicationProxyService/IApplicationProxy.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Am/AppletOE/ApplicationProxyService/IApplicationProxy.cs
diff --git a/Ryujinx.HLE/HOS/Services/Am/AppletOE/IApplicationProxyService.cs b/src/Ryujinx.HLE/HOS/Services/Am/AppletOE/IApplicationProxyService.cs
index 3a4c71e4..3a4c71e4 100644
--- a/Ryujinx.HLE/HOS/Services/Am/AppletOE/IApplicationProxyService.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Am/AppletOE/IApplicationProxyService.cs
diff --git a/Ryujinx.HLE/HOS/Services/Am/Idle/IPolicyManagerSystem.cs b/src/Ryujinx.HLE/HOS/Services/Am/Idle/IPolicyManagerSystem.cs
index 8c72319c..8c72319c 100644
--- a/Ryujinx.HLE/HOS/Services/Am/Idle/IPolicyManagerSystem.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Am/Idle/IPolicyManagerSystem.cs
diff --git a/Ryujinx.HLE/HOS/Services/Am/Omm/IOperationModeManager.cs b/src/Ryujinx.HLE/HOS/Services/Am/Omm/IOperationModeManager.cs
index 2856e6d7..2856e6d7 100644
--- a/Ryujinx.HLE/HOS/Services/Am/Omm/IOperationModeManager.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Am/Omm/IOperationModeManager.cs
diff --git a/Ryujinx.HLE/HOS/Services/Am/ResultCode.cs b/src/Ryujinx.HLE/HOS/Services/Am/ResultCode.cs
index 5cafff67..5cafff67 100644
--- a/Ryujinx.HLE/HOS/Services/Am/ResultCode.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Am/ResultCode.cs
diff --git a/Ryujinx.HLE/HOS/Services/Am/Spsm/IPowerStateInterface.cs b/src/Ryujinx.HLE/HOS/Services/Am/Spsm/IPowerStateInterface.cs
index a393f76b..a393f76b 100644
--- a/Ryujinx.HLE/HOS/Services/Am/Spsm/IPowerStateInterface.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Am/Spsm/IPowerStateInterface.cs
diff --git a/Ryujinx.HLE/HOS/Services/Am/Tcap/IManager.cs b/src/Ryujinx.HLE/HOS/Services/Am/Tcap/IManager.cs
index b31ccf8a..b31ccf8a 100644
--- a/Ryujinx.HLE/HOS/Services/Am/Tcap/IManager.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Am/Tcap/IManager.cs
diff --git a/Ryujinx.HLE/HOS/Services/Apm/IManager.cs b/src/Ryujinx.HLE/HOS/Services/Apm/IManager.cs
index 72e39a77..72e39a77 100644
--- a/Ryujinx.HLE/HOS/Services/Apm/IManager.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Apm/IManager.cs
diff --git a/Ryujinx.HLE/HOS/Services/Apm/IManagerPrivileged.cs b/src/Ryujinx.HLE/HOS/Services/Apm/IManagerPrivileged.cs
index 9620c30a..9620c30a 100644
--- a/Ryujinx.HLE/HOS/Services/Apm/IManagerPrivileged.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Apm/IManagerPrivileged.cs
diff --git a/Ryujinx.HLE/HOS/Services/Apm/ISession.cs b/src/Ryujinx.HLE/HOS/Services/Apm/ISession.cs
index f828cd17..f828cd17 100644
--- a/Ryujinx.HLE/HOS/Services/Apm/ISession.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Apm/ISession.cs
diff --git a/Ryujinx.HLE/HOS/Services/Apm/ISystemManager.cs b/src/Ryujinx.HLE/HOS/Services/Apm/ISystemManager.cs
index 9d2c7b0b..9d2c7b0b 100644
--- a/Ryujinx.HLE/HOS/Services/Apm/ISystemManager.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Apm/ISystemManager.cs
diff --git a/Ryujinx.HLE/HOS/Services/Apm/ManagerServer.cs b/src/Ryujinx.HLE/HOS/Services/Apm/ManagerServer.cs
index af051934..af051934 100644
--- a/Ryujinx.HLE/HOS/Services/Apm/ManagerServer.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Apm/ManagerServer.cs
diff --git a/Ryujinx.HLE/HOS/Services/Apm/PerformanceState.cs b/src/Ryujinx.HLE/HOS/Services/Apm/PerformanceState.cs
index d03bf6c7..d03bf6c7 100644
--- a/Ryujinx.HLE/HOS/Services/Apm/PerformanceState.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Apm/PerformanceState.cs
diff --git a/Ryujinx.HLE/HOS/Services/Apm/ResultCode.cs b/src/Ryujinx.HLE/HOS/Services/Apm/ResultCode.cs
index c4499b01..c4499b01 100644
--- a/Ryujinx.HLE/HOS/Services/Apm/ResultCode.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Apm/ResultCode.cs
diff --git a/Ryujinx.HLE/HOS/Services/Apm/SessionServer.cs b/src/Ryujinx.HLE/HOS/Services/Apm/SessionServer.cs
index 3ef713cf..3ef713cf 100644
--- a/Ryujinx.HLE/HOS/Services/Apm/SessionServer.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Apm/SessionServer.cs
diff --git a/Ryujinx.HLE/HOS/Services/Apm/SystemManagerServer.cs b/src/Ryujinx.HLE/HOS/Services/Apm/SystemManagerServer.cs
index a6264236..a6264236 100644
--- a/Ryujinx.HLE/HOS/Services/Apm/SystemManagerServer.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Apm/SystemManagerServer.cs
diff --git a/Ryujinx.HLE/HOS/Services/Apm/Types/CpuBoostMode.cs b/src/Ryujinx.HLE/HOS/Services/Apm/Types/CpuBoostMode.cs
index 587142c8..587142c8 100644
--- a/Ryujinx.HLE/HOS/Services/Apm/Types/CpuBoostMode.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Apm/Types/CpuBoostMode.cs
diff --git a/Ryujinx.HLE/HOS/Services/Apm/Types/PerformanceConfiguration.cs b/src/Ryujinx.HLE/HOS/Services/Apm/Types/PerformanceConfiguration.cs
index e8c5752e..e8c5752e 100644
--- a/Ryujinx.HLE/HOS/Services/Apm/Types/PerformanceConfiguration.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Apm/Types/PerformanceConfiguration.cs
diff --git a/Ryujinx.HLE/HOS/Services/Apm/Types/PerformanceMode.cs b/src/Ryujinx.HLE/HOS/Services/Apm/Types/PerformanceMode.cs
index 6d6f9643..6d6f9643 100644
--- a/Ryujinx.HLE/HOS/Services/Apm/Types/PerformanceMode.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Apm/Types/PerformanceMode.cs
diff --git a/Ryujinx.HLE/HOS/Services/Arp/ApplicationLaunchProperty.cs b/src/Ryujinx.HLE/HOS/Services/Arp/ApplicationLaunchProperty.cs
index 3e4eca0a..3e4eca0a 100644
--- a/Ryujinx.HLE/HOS/Services/Arp/ApplicationLaunchProperty.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Arp/ApplicationLaunchProperty.cs
diff --git a/Ryujinx.HLE/HOS/Services/Arp/IReader.cs b/src/Ryujinx.HLE/HOS/Services/Arp/IReader.cs
index 35a2de0c..35a2de0c 100644
--- a/Ryujinx.HLE/HOS/Services/Arp/IReader.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Arp/IReader.cs
diff --git a/Ryujinx.HLE/HOS/Services/Arp/IWriter.cs b/src/Ryujinx.HLE/HOS/Services/Arp/IWriter.cs
index 8d13f0fb..8d13f0fb 100644
--- a/Ryujinx.HLE/HOS/Services/Arp/IWriter.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Arp/IWriter.cs
diff --git a/Ryujinx.HLE/HOS/Services/Arp/LibHacIReader.cs b/src/Ryujinx.HLE/HOS/Services/Arp/LibHacIReader.cs
index d7686871..d7686871 100644
--- a/Ryujinx.HLE/HOS/Services/Arp/LibHacIReader.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Arp/LibHacIReader.cs
diff --git a/Ryujinx.HLE/HOS/Services/Audio/AudioIn/AudioIn.cs b/src/Ryujinx.HLE/HOS/Services/Audio/AudioIn/AudioIn.cs
index ee85ded9..ee85ded9 100644
--- a/Ryujinx.HLE/HOS/Services/Audio/AudioIn/AudioIn.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Audio/AudioIn/AudioIn.cs
diff --git a/Ryujinx.HLE/HOS/Services/Audio/AudioIn/AudioInServer.cs b/src/Ryujinx.HLE/HOS/Services/Audio/AudioIn/AudioInServer.cs
index a80b9402..a80b9402 100644
--- a/Ryujinx.HLE/HOS/Services/Audio/AudioIn/AudioInServer.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Audio/AudioIn/AudioInServer.cs
diff --git a/Ryujinx.HLE/HOS/Services/Audio/AudioIn/IAudioIn.cs b/src/Ryujinx.HLE/HOS/Services/Audio/AudioIn/IAudioIn.cs
index b5073fce..b5073fce 100644
--- a/Ryujinx.HLE/HOS/Services/Audio/AudioIn/IAudioIn.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Audio/AudioIn/IAudioIn.cs
diff --git a/Ryujinx.HLE/HOS/Services/Audio/AudioInManager.cs b/src/Ryujinx.HLE/HOS/Services/Audio/AudioInManager.cs
index 2d342206..2d342206 100644
--- a/Ryujinx.HLE/HOS/Services/Audio/AudioInManager.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Audio/AudioInManager.cs
diff --git a/Ryujinx.HLE/HOS/Services/Audio/AudioInManagerServer.cs b/src/Ryujinx.HLE/HOS/Services/Audio/AudioInManagerServer.cs
index 755caee5..755caee5 100644
--- a/Ryujinx.HLE/HOS/Services/Audio/AudioInManagerServer.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Audio/AudioInManagerServer.cs
diff --git a/Ryujinx.HLE/HOS/Services/Audio/AudioOut/AudioOut.cs b/src/Ryujinx.HLE/HOS/Services/Audio/AudioOut/AudioOut.cs
index f2588452..f2588452 100644
--- a/Ryujinx.HLE/HOS/Services/Audio/AudioOut/AudioOut.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Audio/AudioOut/AudioOut.cs
diff --git a/Ryujinx.HLE/HOS/Services/Audio/AudioOut/AudioOutServer.cs b/src/Ryujinx.HLE/HOS/Services/Audio/AudioOut/AudioOutServer.cs
index 329e1794..329e1794 100644
--- a/Ryujinx.HLE/HOS/Services/Audio/AudioOut/AudioOutServer.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Audio/AudioOut/AudioOutServer.cs
diff --git a/Ryujinx.HLE/HOS/Services/Audio/AudioOut/IAudioOut.cs b/src/Ryujinx.HLE/HOS/Services/Audio/AudioOut/IAudioOut.cs
index 8533d3c5..8533d3c5 100644
--- a/Ryujinx.HLE/HOS/Services/Audio/AudioOut/IAudioOut.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Audio/AudioOut/IAudioOut.cs
diff --git a/Ryujinx.HLE/HOS/Services/Audio/AudioOutManager.cs b/src/Ryujinx.HLE/HOS/Services/Audio/AudioOutManager.cs
index 7b289196..7b289196 100644
--- a/Ryujinx.HLE/HOS/Services/Audio/AudioOutManager.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Audio/AudioOutManager.cs
diff --git a/Ryujinx.HLE/HOS/Services/Audio/AudioOutManagerServer.cs b/src/Ryujinx.HLE/HOS/Services/Audio/AudioOutManagerServer.cs
index 7c5d8c4e..7c5d8c4e 100644
--- a/Ryujinx.HLE/HOS/Services/Audio/AudioOutManagerServer.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Audio/AudioOutManagerServer.cs
diff --git a/Ryujinx.HLE/HOS/Services/Audio/AudioRenderer/AudioDevice.cs b/src/Ryujinx.HLE/HOS/Services/Audio/AudioRenderer/AudioDevice.cs
index 724a1e9e..724a1e9e 100644
--- a/Ryujinx.HLE/HOS/Services/Audio/AudioRenderer/AudioDevice.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Audio/AudioRenderer/AudioDevice.cs
diff --git a/Ryujinx.HLE/HOS/Services/Audio/AudioRenderer/AudioDeviceServer.cs b/src/Ryujinx.HLE/HOS/Services/Audio/AudioRenderer/AudioDeviceServer.cs
index e7a75121..e7a75121 100644
--- a/Ryujinx.HLE/HOS/Services/Audio/AudioRenderer/AudioDeviceServer.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Audio/AudioRenderer/AudioDeviceServer.cs
diff --git a/Ryujinx.HLE/HOS/Services/Audio/AudioRenderer/AudioKernelEvent.cs b/src/Ryujinx.HLE/HOS/Services/Audio/AudioRenderer/AudioKernelEvent.cs
index 55bf29ae..55bf29ae 100644
--- a/Ryujinx.HLE/HOS/Services/Audio/AudioRenderer/AudioKernelEvent.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Audio/AudioRenderer/AudioKernelEvent.cs
diff --git a/Ryujinx.HLE/HOS/Services/Audio/AudioRenderer/AudioRenderer.cs b/src/Ryujinx.HLE/HOS/Services/Audio/AudioRenderer/AudioRenderer.cs
index 5b682bf8..5b682bf8 100644
--- a/Ryujinx.HLE/HOS/Services/Audio/AudioRenderer/AudioRenderer.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Audio/AudioRenderer/AudioRenderer.cs
diff --git a/Ryujinx.HLE/HOS/Services/Audio/AudioRenderer/AudioRendererServer.cs b/src/Ryujinx.HLE/HOS/Services/Audio/AudioRenderer/AudioRendererServer.cs
index a137c413..a137c413 100644
--- a/Ryujinx.HLE/HOS/Services/Audio/AudioRenderer/AudioRendererServer.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Audio/AudioRenderer/AudioRendererServer.cs
diff --git a/Ryujinx.HLE/HOS/Services/Audio/AudioRenderer/IAudioDevice.cs b/src/Ryujinx.HLE/HOS/Services/Audio/AudioRenderer/IAudioDevice.cs
index 1918a977..1918a977 100644
--- a/Ryujinx.HLE/HOS/Services/Audio/AudioRenderer/IAudioDevice.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Audio/AudioRenderer/IAudioDevice.cs
diff --git a/Ryujinx.HLE/HOS/Services/Audio/AudioRenderer/IAudioRenderer.cs b/src/Ryujinx.HLE/HOS/Services/Audio/AudioRenderer/IAudioRenderer.cs
index 404bf4c1..404bf4c1 100644
--- a/Ryujinx.HLE/HOS/Services/Audio/AudioRenderer/IAudioRenderer.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Audio/AudioRenderer/IAudioRenderer.cs
diff --git a/Ryujinx.HLE/HOS/Services/Audio/AudioRendererManager.cs b/src/Ryujinx.HLE/HOS/Services/Audio/AudioRendererManager.cs
index 40e71a43..40e71a43 100644
--- a/Ryujinx.HLE/HOS/Services/Audio/AudioRendererManager.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Audio/AudioRendererManager.cs
diff --git a/Ryujinx.HLE/HOS/Services/Audio/AudioRendererManagerServer.cs b/src/Ryujinx.HLE/HOS/Services/Audio/AudioRendererManagerServer.cs
index 80b54e8c..80b54e8c 100644
--- a/Ryujinx.HLE/HOS/Services/Audio/AudioRendererManagerServer.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Audio/AudioRendererManagerServer.cs
diff --git a/Ryujinx.HLE/HOS/Services/Audio/HardwareOpusDecoderManager/Decoder.cs b/src/Ryujinx.HLE/HOS/Services/Audio/HardwareOpusDecoderManager/Decoder.cs
index b77fc4b0..b77fc4b0 100644
--- a/Ryujinx.HLE/HOS/Services/Audio/HardwareOpusDecoderManager/Decoder.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Audio/HardwareOpusDecoderManager/Decoder.cs
diff --git a/Ryujinx.HLE/HOS/Services/Audio/HardwareOpusDecoderManager/DecoderCommon.cs b/src/Ryujinx.HLE/HOS/Services/Audio/HardwareOpusDecoderManager/DecoderCommon.cs
index 944541cc..944541cc 100644
--- a/Ryujinx.HLE/HOS/Services/Audio/HardwareOpusDecoderManager/DecoderCommon.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Audio/HardwareOpusDecoderManager/DecoderCommon.cs
diff --git a/Ryujinx.HLE/HOS/Services/Audio/HardwareOpusDecoderManager/IDecoder.cs b/src/Ryujinx.HLE/HOS/Services/Audio/HardwareOpusDecoderManager/IDecoder.cs
index 9047c266..9047c266 100644
--- a/Ryujinx.HLE/HOS/Services/Audio/HardwareOpusDecoderManager/IDecoder.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Audio/HardwareOpusDecoderManager/IDecoder.cs
diff --git a/Ryujinx.HLE/HOS/Services/Audio/HardwareOpusDecoderManager/IHardwareOpusDecoder.cs b/src/Ryujinx.HLE/HOS/Services/Audio/HardwareOpusDecoderManager/IHardwareOpusDecoder.cs
index e94b31ca..e94b31ca 100644
--- a/Ryujinx.HLE/HOS/Services/Audio/HardwareOpusDecoderManager/IHardwareOpusDecoder.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Audio/HardwareOpusDecoderManager/IHardwareOpusDecoder.cs
diff --git a/Ryujinx.HLE/HOS/Services/Audio/HardwareOpusDecoderManager/MultiSampleDecoder.cs b/src/Ryujinx.HLE/HOS/Services/Audio/HardwareOpusDecoderManager/MultiSampleDecoder.cs
index 23721d3b..23721d3b 100644
--- a/Ryujinx.HLE/HOS/Services/Audio/HardwareOpusDecoderManager/MultiSampleDecoder.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Audio/HardwareOpusDecoderManager/MultiSampleDecoder.cs
diff --git a/Ryujinx.HLE/HOS/Services/Audio/IAudioController.cs b/src/Ryujinx.HLE/HOS/Services/Audio/IAudioController.cs
index 1bd2e31d..1bd2e31d 100644
--- a/Ryujinx.HLE/HOS/Services/Audio/IAudioController.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Audio/IAudioController.cs
diff --git a/Ryujinx.HLE/HOS/Services/Audio/IAudioInManager.cs b/src/Ryujinx.HLE/HOS/Services/Audio/IAudioInManager.cs
index 9bbe5b0e..9bbe5b0e 100644
--- a/Ryujinx.HLE/HOS/Services/Audio/IAudioInManager.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Audio/IAudioInManager.cs
diff --git a/Ryujinx.HLE/HOS/Services/Audio/IAudioInManagerForApplet.cs b/src/Ryujinx.HLE/HOS/Services/Audio/IAudioInManagerForApplet.cs
index 37d9a8fe..37d9a8fe 100644
--- a/Ryujinx.HLE/HOS/Services/Audio/IAudioInManagerForApplet.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Audio/IAudioInManagerForApplet.cs
diff --git a/Ryujinx.HLE/HOS/Services/Audio/IAudioInManagerForDebugger.cs b/src/Ryujinx.HLE/HOS/Services/Audio/IAudioInManagerForDebugger.cs
index 1a497efb..1a497efb 100644
--- a/Ryujinx.HLE/HOS/Services/Audio/IAudioInManagerForDebugger.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Audio/IAudioInManagerForDebugger.cs
diff --git a/Ryujinx.HLE/HOS/Services/Audio/IAudioOutManager.cs b/src/Ryujinx.HLE/HOS/Services/Audio/IAudioOutManager.cs
index 70e60d2e..70e60d2e 100644
--- a/Ryujinx.HLE/HOS/Services/Audio/IAudioOutManager.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Audio/IAudioOutManager.cs
diff --git a/Ryujinx.HLE/HOS/Services/Audio/IAudioOutManagerForApplet.cs b/src/Ryujinx.HLE/HOS/Services/Audio/IAudioOutManagerForApplet.cs
index 4b41b0cf..4b41b0cf 100644
--- a/Ryujinx.HLE/HOS/Services/Audio/IAudioOutManagerForApplet.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Audio/IAudioOutManagerForApplet.cs
diff --git a/Ryujinx.HLE/HOS/Services/Audio/IAudioOutManagerForDebugger.cs b/src/Ryujinx.HLE/HOS/Services/Audio/IAudioOutManagerForDebugger.cs
index 41cde972..41cde972 100644
--- a/Ryujinx.HLE/HOS/Services/Audio/IAudioOutManagerForDebugger.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Audio/IAudioOutManagerForDebugger.cs
diff --git a/Ryujinx.HLE/HOS/Services/Audio/IAudioRendererManager.cs b/src/Ryujinx.HLE/HOS/Services/Audio/IAudioRendererManager.cs
index 642e2525..642e2525 100644
--- a/Ryujinx.HLE/HOS/Services/Audio/IAudioRendererManager.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Audio/IAudioRendererManager.cs
diff --git a/Ryujinx.HLE/HOS/Services/Audio/IAudioRendererManagerForApplet.cs b/src/Ryujinx.HLE/HOS/Services/Audio/IAudioRendererManagerForApplet.cs
index ca5768cc..ca5768cc 100644
--- a/Ryujinx.HLE/HOS/Services/Audio/IAudioRendererManagerForApplet.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Audio/IAudioRendererManagerForApplet.cs
diff --git a/Ryujinx.HLE/HOS/Services/Audio/IAudioRendererManagerForDebugger.cs b/src/Ryujinx.HLE/HOS/Services/Audio/IAudioRendererManagerForDebugger.cs
index a970ae45..a970ae45 100644
--- a/Ryujinx.HLE/HOS/Services/Audio/IAudioRendererManagerForDebugger.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Audio/IAudioRendererManagerForDebugger.cs
diff --git a/Ryujinx.HLE/HOS/Services/Audio/IAudioSnoopManager.cs b/src/Ryujinx.HLE/HOS/Services/Audio/IAudioSnoopManager.cs
index 59e3ad09..59e3ad09 100644
--- a/Ryujinx.HLE/HOS/Services/Audio/IAudioSnoopManager.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Audio/IAudioSnoopManager.cs
diff --git a/Ryujinx.HLE/HOS/Services/Audio/IFinalOutputRecorderManager.cs b/src/Ryujinx.HLE/HOS/Services/Audio/IFinalOutputRecorderManager.cs
index 01435008..01435008 100644
--- a/Ryujinx.HLE/HOS/Services/Audio/IFinalOutputRecorderManager.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Audio/IFinalOutputRecorderManager.cs
diff --git a/Ryujinx.HLE/HOS/Services/Audio/IFinalOutputRecorderManagerForApplet.cs b/src/Ryujinx.HLE/HOS/Services/Audio/IFinalOutputRecorderManagerForApplet.cs
index d8fd270d..d8fd270d 100644
--- a/Ryujinx.HLE/HOS/Services/Audio/IFinalOutputRecorderManagerForApplet.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Audio/IFinalOutputRecorderManagerForApplet.cs
diff --git a/Ryujinx.HLE/HOS/Services/Audio/IFinalOutputRecorderManagerForDebugger.cs b/src/Ryujinx.HLE/HOS/Services/Audio/IFinalOutputRecorderManagerForDebugger.cs
index a8ec51ee..a8ec51ee 100644
--- a/Ryujinx.HLE/HOS/Services/Audio/IFinalOutputRecorderManagerForDebugger.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Audio/IFinalOutputRecorderManagerForDebugger.cs
diff --git a/Ryujinx.HLE/HOS/Services/Audio/IHardwareOpusDecoderManager.cs b/src/Ryujinx.HLE/HOS/Services/Audio/IHardwareOpusDecoderManager.cs
index 8df8a38c..8df8a38c 100644
--- a/Ryujinx.HLE/HOS/Services/Audio/IHardwareOpusDecoderManager.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Audio/IHardwareOpusDecoderManager.cs
diff --git a/Ryujinx.HLE/HOS/Services/Audio/ResultCode.cs b/src/Ryujinx.HLE/HOS/Services/Audio/ResultCode.cs
index fd2091c2..fd2091c2 100644
--- a/Ryujinx.HLE/HOS/Services/Audio/ResultCode.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Audio/ResultCode.cs
diff --git a/Ryujinx.HLE/HOS/Services/Audio/Types/OpusDecoderFlags.cs b/src/Ryujinx.HLE/HOS/Services/Audio/Types/OpusDecoderFlags.cs
index e49c294c..e49c294c 100644
--- a/Ryujinx.HLE/HOS/Services/Audio/Types/OpusDecoderFlags.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Audio/Types/OpusDecoderFlags.cs
diff --git a/Ryujinx.HLE/HOS/Services/Audio/Types/OpusMultiStreamParameters.cs b/src/Ryujinx.HLE/HOS/Services/Audio/Types/OpusMultiStreamParameters.cs
index fd63a4f7..fd63a4f7 100644
--- a/Ryujinx.HLE/HOS/Services/Audio/Types/OpusMultiStreamParameters.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Audio/Types/OpusMultiStreamParameters.cs
diff --git a/Ryujinx.HLE/HOS/Services/Audio/Types/OpusMultiStreamParametersEx.cs b/src/Ryujinx.HLE/HOS/Services/Audio/Types/OpusMultiStreamParametersEx.cs
index 1315c734..1315c734 100644
--- a/Ryujinx.HLE/HOS/Services/Audio/Types/OpusMultiStreamParametersEx.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Audio/Types/OpusMultiStreamParametersEx.cs
diff --git a/Ryujinx.HLE/HOS/Services/Audio/Types/OpusPacketHeader.cs b/src/Ryujinx.HLE/HOS/Services/Audio/Types/OpusPacketHeader.cs
index 5ae0eb1e..5ae0eb1e 100644
--- a/Ryujinx.HLE/HOS/Services/Audio/Types/OpusPacketHeader.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Audio/Types/OpusPacketHeader.cs
diff --git a/Ryujinx.HLE/HOS/Services/Audio/Types/OpusParametersEx.cs b/src/Ryujinx.HLE/HOS/Services/Audio/Types/OpusParametersEx.cs
index f088ed01..f088ed01 100644
--- a/Ryujinx.HLE/HOS/Services/Audio/Types/OpusParametersEx.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Audio/Types/OpusParametersEx.cs
diff --git a/Ryujinx.HLE/HOS/Services/Bcat/IServiceCreator.cs b/src/Ryujinx.HLE/HOS/Services/Bcat/IServiceCreator.cs
index 1437a8e1..1437a8e1 100644
--- a/Ryujinx.HLE/HOS/Services/Bcat/IServiceCreator.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Bcat/IServiceCreator.cs
diff --git a/Ryujinx.HLE/HOS/Services/Bcat/ResultCode.cs b/src/Ryujinx.HLE/HOS/Services/Bcat/ResultCode.cs
index 7f1b313e..7f1b313e 100644
--- a/Ryujinx.HLE/HOS/Services/Bcat/ResultCode.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Bcat/ResultCode.cs
diff --git a/Ryujinx.HLE/HOS/Services/Bcat/ServiceCreator/IBcatService.cs b/src/Ryujinx.HLE/HOS/Services/Bcat/ServiceCreator/IBcatService.cs
index fb11ceda..fb11ceda 100644
--- a/Ryujinx.HLE/HOS/Services/Bcat/ServiceCreator/IBcatService.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Bcat/ServiceCreator/IBcatService.cs
diff --git a/Ryujinx.HLE/HOS/Services/Bcat/ServiceCreator/IDeliveryCacheDirectoryService.cs b/src/Ryujinx.HLE/HOS/Services/Bcat/ServiceCreator/IDeliveryCacheDirectoryService.cs
index 57544977..57544977 100644
--- a/Ryujinx.HLE/HOS/Services/Bcat/ServiceCreator/IDeliveryCacheDirectoryService.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Bcat/ServiceCreator/IDeliveryCacheDirectoryService.cs
diff --git a/Ryujinx.HLE/HOS/Services/Bcat/ServiceCreator/IDeliveryCacheFileService.cs b/src/Ryujinx.HLE/HOS/Services/Bcat/ServiceCreator/IDeliveryCacheFileService.cs
index 5a9110e6..5a9110e6 100644
--- a/Ryujinx.HLE/HOS/Services/Bcat/ServiceCreator/IDeliveryCacheFileService.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Bcat/ServiceCreator/IDeliveryCacheFileService.cs
diff --git a/Ryujinx.HLE/HOS/Services/Bcat/ServiceCreator/IDeliveryCacheProgressService.cs b/src/Ryujinx.HLE/HOS/Services/Bcat/ServiceCreator/IDeliveryCacheProgressService.cs
index 1555f170..1555f170 100644
--- a/Ryujinx.HLE/HOS/Services/Bcat/ServiceCreator/IDeliveryCacheProgressService.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Bcat/ServiceCreator/IDeliveryCacheProgressService.cs
diff --git a/Ryujinx.HLE/HOS/Services/Bcat/ServiceCreator/IDeliveryCacheStorageService.cs b/src/Ryujinx.HLE/HOS/Services/Bcat/ServiceCreator/IDeliveryCacheStorageService.cs
index be77226c..be77226c 100644
--- a/Ryujinx.HLE/HOS/Services/Bcat/ServiceCreator/IDeliveryCacheStorageService.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Bcat/ServiceCreator/IDeliveryCacheStorageService.cs
diff --git a/Ryujinx.HLE/HOS/Services/Bcat/ServiceCreator/Types/DeliveryCacheProgressImpl.cs b/src/Ryujinx.HLE/HOS/Services/Bcat/ServiceCreator/Types/DeliveryCacheProgressImpl.cs
index fb9a67be..fb9a67be 100644
--- a/Ryujinx.HLE/HOS/Services/Bcat/ServiceCreator/Types/DeliveryCacheProgressImpl.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Bcat/ServiceCreator/Types/DeliveryCacheProgressImpl.cs
diff --git a/Ryujinx.HLE/HOS/Services/Bgtc/IStateControlService.cs b/src/Ryujinx.HLE/HOS/Services/Bgtc/IStateControlService.cs
index 4926d4d8..4926d4d8 100644
--- a/Ryujinx.HLE/HOS/Services/Bgtc/IStateControlService.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Bgtc/IStateControlService.cs
diff --git a/Ryujinx.HLE/HOS/Services/Bgtc/ITaskService.cs b/src/Ryujinx.HLE/HOS/Services/Bgtc/ITaskService.cs
index a032c380..a032c380 100644
--- a/Ryujinx.HLE/HOS/Services/Bgtc/ITaskService.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Bgtc/ITaskService.cs
diff --git a/Ryujinx.HLE/HOS/Services/Bluetooth/BluetoothDriver/BluetoothEventManager.cs b/src/Ryujinx.HLE/HOS/Services/Bluetooth/BluetoothDriver/BluetoothEventManager.cs
index 81f4a7d2..81f4a7d2 100644
--- a/Ryujinx.HLE/HOS/Services/Bluetooth/BluetoothDriver/BluetoothEventManager.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Bluetooth/BluetoothDriver/BluetoothEventManager.cs
diff --git a/Ryujinx.HLE/HOS/Services/Bluetooth/IBluetoothDriver.cs b/src/Ryujinx.HLE/HOS/Services/Bluetooth/IBluetoothDriver.cs
index feff5a73..feff5a73 100644
--- a/Ryujinx.HLE/HOS/Services/Bluetooth/IBluetoothDriver.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Bluetooth/IBluetoothDriver.cs
diff --git a/Ryujinx.HLE/HOS/Services/Bluetooth/IBluetoothUser.cs b/src/Ryujinx.HLE/HOS/Services/Bluetooth/IBluetoothUser.cs
index 1a5e25a4..1a5e25a4 100644
--- a/Ryujinx.HLE/HOS/Services/Bluetooth/IBluetoothUser.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Bluetooth/IBluetoothUser.cs
diff --git a/Ryujinx.HLE/HOS/Services/BluetoothManager/BtmUser/IBtmUserCore.cs b/src/Ryujinx.HLE/HOS/Services/BluetoothManager/BtmUser/IBtmUserCore.cs
index 3c9938ad..3c9938ad 100644
--- a/Ryujinx.HLE/HOS/Services/BluetoothManager/BtmUser/IBtmUserCore.cs
+++ b/src/Ryujinx.HLE/HOS/Services/BluetoothManager/BtmUser/IBtmUserCore.cs
diff --git a/Ryujinx.HLE/HOS/Services/BluetoothManager/IBtm.cs b/src/Ryujinx.HLE/HOS/Services/BluetoothManager/IBtm.cs
index 48a273a0..48a273a0 100644
--- a/Ryujinx.HLE/HOS/Services/BluetoothManager/IBtm.cs
+++ b/src/Ryujinx.HLE/HOS/Services/BluetoothManager/IBtm.cs
diff --git a/Ryujinx.HLE/HOS/Services/BluetoothManager/IBtmDebug.cs b/src/Ryujinx.HLE/HOS/Services/BluetoothManager/IBtmDebug.cs
index 259698af..259698af 100644
--- a/Ryujinx.HLE/HOS/Services/BluetoothManager/IBtmDebug.cs
+++ b/src/Ryujinx.HLE/HOS/Services/BluetoothManager/IBtmDebug.cs
diff --git a/Ryujinx.HLE/HOS/Services/BluetoothManager/IBtmSystem.cs b/src/Ryujinx.HLE/HOS/Services/BluetoothManager/IBtmSystem.cs
index c4210b78..c4210b78 100644
--- a/Ryujinx.HLE/HOS/Services/BluetoothManager/IBtmSystem.cs
+++ b/src/Ryujinx.HLE/HOS/Services/BluetoothManager/IBtmSystem.cs
diff --git a/Ryujinx.HLE/HOS/Services/BluetoothManager/IBtmUser.cs b/src/Ryujinx.HLE/HOS/Services/BluetoothManager/IBtmUser.cs
index b00f0a2f..b00f0a2f 100644
--- a/Ryujinx.HLE/HOS/Services/BluetoothManager/IBtmUser.cs
+++ b/src/Ryujinx.HLE/HOS/Services/BluetoothManager/IBtmUser.cs
diff --git a/Ryujinx.HLE/HOS/Services/BluetoothManager/ResultCode.cs b/src/Ryujinx.HLE/HOS/Services/BluetoothManager/ResultCode.cs
index 0ad2c485..0ad2c485 100644
--- a/Ryujinx.HLE/HOS/Services/BluetoothManager/ResultCode.cs
+++ b/src/Ryujinx.HLE/HOS/Services/BluetoothManager/ResultCode.cs
diff --git a/Ryujinx.HLE/HOS/Services/Caps/CaptureManager.cs b/src/Ryujinx.HLE/HOS/Services/Caps/CaptureManager.cs
index 6320fe28..6320fe28 100644
--- a/Ryujinx.HLE/HOS/Services/Caps/CaptureManager.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Caps/CaptureManager.cs
diff --git a/Ryujinx.HLE/HOS/Services/Caps/IAlbumAccessorService.cs b/src/Ryujinx.HLE/HOS/Services/Caps/IAlbumAccessorService.cs
index 4071b9cc..4071b9cc 100644
--- a/Ryujinx.HLE/HOS/Services/Caps/IAlbumAccessorService.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Caps/IAlbumAccessorService.cs
diff --git a/Ryujinx.HLE/HOS/Services/Caps/IAlbumApplicationService.cs b/src/Ryujinx.HLE/HOS/Services/Caps/IAlbumApplicationService.cs
index af99232e..af99232e 100644
--- a/Ryujinx.HLE/HOS/Services/Caps/IAlbumApplicationService.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Caps/IAlbumApplicationService.cs
diff --git a/Ryujinx.HLE/HOS/Services/Caps/IAlbumControlService.cs b/src/Ryujinx.HLE/HOS/Services/Caps/IAlbumControlService.cs
index b16a4122..b16a4122 100644
--- a/Ryujinx.HLE/HOS/Services/Caps/IAlbumControlService.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Caps/IAlbumControlService.cs
diff --git a/Ryujinx.HLE/HOS/Services/Caps/IScreenShotApplicationService.cs b/src/Ryujinx.HLE/HOS/Services/Caps/IScreenShotApplicationService.cs
index a3501286..a3501286 100644
--- a/Ryujinx.HLE/HOS/Services/Caps/IScreenShotApplicationService.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Caps/IScreenShotApplicationService.cs
diff --git a/Ryujinx.HLE/HOS/Services/Caps/IScreenShotControlService.cs b/src/Ryujinx.HLE/HOS/Services/Caps/IScreenShotControlService.cs
index 337fa9ee..337fa9ee 100644
--- a/Ryujinx.HLE/HOS/Services/Caps/IScreenShotControlService.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Caps/IScreenShotControlService.cs
diff --git a/Ryujinx.HLE/HOS/Services/Caps/IScreenshotService.cs b/src/Ryujinx.HLE/HOS/Services/Caps/IScreenshotService.cs
index 03703e05..03703e05 100644
--- a/Ryujinx.HLE/HOS/Services/Caps/IScreenshotService.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Caps/IScreenshotService.cs
diff --git a/Ryujinx.HLE/HOS/Services/Caps/ResultCode.cs b/src/Ryujinx.HLE/HOS/Services/Caps/ResultCode.cs
index 2615eeda..2615eeda 100644
--- a/Ryujinx.HLE/HOS/Services/Caps/ResultCode.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Caps/ResultCode.cs
diff --git a/Ryujinx.HLE/HOS/Services/Caps/Types/AlbumFileDateTime.cs b/src/Ryujinx.HLE/HOS/Services/Caps/Types/AlbumFileDateTime.cs
index b9bc799c..b9bc799c 100644
--- a/Ryujinx.HLE/HOS/Services/Caps/Types/AlbumFileDateTime.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Caps/Types/AlbumFileDateTime.cs
diff --git a/Ryujinx.HLE/HOS/Services/Caps/Types/AlbumImageOrientation.cs b/src/Ryujinx.HLE/HOS/Services/Caps/Types/AlbumImageOrientation.cs
index 479675d6..479675d6 100644
--- a/Ryujinx.HLE/HOS/Services/Caps/Types/AlbumImageOrientation.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Caps/Types/AlbumImageOrientation.cs
diff --git a/Ryujinx.HLE/HOS/Services/Caps/Types/AlbumStorage.cs b/src/Ryujinx.HLE/HOS/Services/Caps/Types/AlbumStorage.cs
index cfe6c1e0..cfe6c1e0 100644
--- a/Ryujinx.HLE/HOS/Services/Caps/Types/AlbumStorage.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Caps/Types/AlbumStorage.cs
diff --git a/Ryujinx.HLE/HOS/Services/Caps/Types/ApplicationAlbumEntry.cs b/src/Ryujinx.HLE/HOS/Services/Caps/Types/ApplicationAlbumEntry.cs
index 699bb418..699bb418 100644
--- a/Ryujinx.HLE/HOS/Services/Caps/Types/ApplicationAlbumEntry.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Caps/Types/ApplicationAlbumEntry.cs
diff --git a/Ryujinx.HLE/HOS/Services/Caps/Types/ContentType.cs b/src/Ryujinx.HLE/HOS/Services/Caps/Types/ContentType.cs
index 5f8bb537..5f8bb537 100644
--- a/Ryujinx.HLE/HOS/Services/Caps/Types/ContentType.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Caps/Types/ContentType.cs
diff --git a/Ryujinx.HLE/HOS/Services/Caps/Types/ScreenShotAttribute.cs b/src/Ryujinx.HLE/HOS/Services/Caps/Types/ScreenShotAttribute.cs
index 5528379a..5528379a 100644
--- a/Ryujinx.HLE/HOS/Services/Caps/Types/ScreenShotAttribute.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Caps/Types/ScreenShotAttribute.cs
diff --git a/Ryujinx.HLE/HOS/Services/Cec/ICecManager.cs b/src/Ryujinx.HLE/HOS/Services/Cec/ICecManager.cs
index 71c26786..71c26786 100644
--- a/Ryujinx.HLE/HOS/Services/Cec/ICecManager.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Cec/ICecManager.cs
diff --git a/Ryujinx.HLE/HOS/Services/CommandCmifAttribute.cs b/src/Ryujinx.HLE/HOS/Services/CommandCmifAttribute.cs
index 3b3279ab..3b3279ab 100644
--- a/Ryujinx.HLE/HOS/Services/CommandCmifAttribute.cs
+++ b/src/Ryujinx.HLE/HOS/Services/CommandCmifAttribute.cs
diff --git a/Ryujinx.HLE/HOS/Services/CommandTIpcAttribute.cs b/src/Ryujinx.HLE/HOS/Services/CommandTIpcAttribute.cs
index 0d29f92c..0d29f92c 100644
--- a/Ryujinx.HLE/HOS/Services/CommandTIpcAttribute.cs
+++ b/src/Ryujinx.HLE/HOS/Services/CommandTIpcAttribute.cs
diff --git a/Ryujinx.HLE/HOS/Services/DisposableIpcService.cs b/src/Ryujinx.HLE/HOS/Services/DisposableIpcService.cs
index 2d0802a7..2d0802a7 100644
--- a/Ryujinx.HLE/HOS/Services/DisposableIpcService.cs
+++ b/src/Ryujinx.HLE/HOS/Services/DisposableIpcService.cs
diff --git a/Ryujinx.HLE/HOS/Services/DummyService.cs b/src/Ryujinx.HLE/HOS/Services/DummyService.cs
index d69441a3..d69441a3 100644
--- a/Ryujinx.HLE/HOS/Services/DummyService.cs
+++ b/src/Ryujinx.HLE/HOS/Services/DummyService.cs
diff --git a/Ryujinx.HLE/HOS/Services/Ectx/IReaderForSystem.cs b/src/Ryujinx.HLE/HOS/Services/Ectx/IReaderForSystem.cs
index 52fe8702..52fe8702 100644
--- a/Ryujinx.HLE/HOS/Services/Ectx/IReaderForSystem.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Ectx/IReaderForSystem.cs
diff --git a/Ryujinx.HLE/HOS/Services/Ectx/IWriterForApplication.cs b/src/Ryujinx.HLE/HOS/Services/Ectx/IWriterForApplication.cs
index 9401a6d7..9401a6d7 100644
--- a/Ryujinx.HLE/HOS/Services/Ectx/IWriterForApplication.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Ectx/IWriterForApplication.cs
diff --git a/Ryujinx.HLE/HOS/Services/Ectx/IWriterForSystem.cs b/src/Ryujinx.HLE/HOS/Services/Ectx/IWriterForSystem.cs
index 621ec777..621ec777 100644
--- a/Ryujinx.HLE/HOS/Services/Ectx/IWriterForSystem.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Ectx/IWriterForSystem.cs
diff --git a/Ryujinx.HLE/HOS/Services/Erpt/IContext.cs b/src/Ryujinx.HLE/HOS/Services/Erpt/IContext.cs
index 9a689172..9a689172 100644
--- a/Ryujinx.HLE/HOS/Services/Erpt/IContext.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Erpt/IContext.cs
diff --git a/Ryujinx.HLE/HOS/Services/Erpt/ISession.cs b/src/Ryujinx.HLE/HOS/Services/Erpt/ISession.cs
index 6397afae..6397afae 100644
--- a/Ryujinx.HLE/HOS/Services/Erpt/ISession.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Erpt/ISession.cs
diff --git a/Ryujinx.HLE/HOS/Services/Es/IETicketService.cs b/src/Ryujinx.HLE/HOS/Services/Es/IETicketService.cs
index 34be7bdd..34be7bdd 100644
--- a/Ryujinx.HLE/HOS/Services/Es/IETicketService.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Es/IETicketService.cs
diff --git a/Ryujinx.HLE/HOS/Services/Eupld/IControl.cs b/src/Ryujinx.HLE/HOS/Services/Eupld/IControl.cs
index dd8705e6..dd8705e6 100644
--- a/Ryujinx.HLE/HOS/Services/Eupld/IControl.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Eupld/IControl.cs
diff --git a/Ryujinx.HLE/HOS/Services/Eupld/IRequest.cs b/src/Ryujinx.HLE/HOS/Services/Eupld/IRequest.cs
index 85097878..85097878 100644
--- a/Ryujinx.HLE/HOS/Services/Eupld/IRequest.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Eupld/IRequest.cs
diff --git a/Ryujinx.HLE/HOS/Services/Fatal/IPrivateService.cs b/src/Ryujinx.HLE/HOS/Services/Fatal/IPrivateService.cs
index eb2c9553..eb2c9553 100644
--- a/Ryujinx.HLE/HOS/Services/Fatal/IPrivateService.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Fatal/IPrivateService.cs
diff --git a/Ryujinx.HLE/HOS/Services/Fatal/IService.cs b/src/Ryujinx.HLE/HOS/Services/Fatal/IService.cs
index aaa5c873..aaa5c873 100644
--- a/Ryujinx.HLE/HOS/Services/Fatal/IService.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Fatal/IService.cs
diff --git a/Ryujinx.HLE/HOS/Services/Fatal/Types/CpuContext32.cs b/src/Ryujinx.HLE/HOS/Services/Fatal/Types/CpuContext32.cs
index 5c0b116b..5c0b116b 100644
--- a/Ryujinx.HLE/HOS/Services/Fatal/Types/CpuContext32.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Fatal/Types/CpuContext32.cs
diff --git a/Ryujinx.HLE/HOS/Services/Fatal/Types/CpuContext64.cs b/src/Ryujinx.HLE/HOS/Services/Fatal/Types/CpuContext64.cs
index 24829a78..24829a78 100644
--- a/Ryujinx.HLE/HOS/Services/Fatal/Types/CpuContext64.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Fatal/Types/CpuContext64.cs
diff --git a/Ryujinx.HLE/HOS/Services/Fatal/Types/FatalPolicy.cs b/src/Ryujinx.HLE/HOS/Services/Fatal/Types/FatalPolicy.cs
index fe55cf12..fe55cf12 100644
--- a/Ryujinx.HLE/HOS/Services/Fatal/Types/FatalPolicy.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Fatal/Types/FatalPolicy.cs
diff --git a/Ryujinx.HLE/HOS/Services/Friend/IServiceCreator.cs b/src/Ryujinx.HLE/HOS/Services/Friend/IServiceCreator.cs
index d5258a82..d5258a82 100644
--- a/Ryujinx.HLE/HOS/Services/Friend/IServiceCreator.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Friend/IServiceCreator.cs
diff --git a/Ryujinx.HLE/HOS/Services/Friend/ResultCode.cs b/src/Ryujinx.HLE/HOS/Services/Friend/ResultCode.cs
index 3e66e873..3e66e873 100644
--- a/Ryujinx.HLE/HOS/Services/Friend/ResultCode.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Friend/ResultCode.cs
diff --git a/Ryujinx.HLE/HOS/Services/Friend/ServiceCreator/FriendService/Types/Friend.cs b/src/Ryujinx.HLE/HOS/Services/Friend/ServiceCreator/FriendService/Types/Friend.cs
index 87f54bf3..87f54bf3 100644
--- a/Ryujinx.HLE/HOS/Services/Friend/ServiceCreator/FriendService/Types/Friend.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Friend/ServiceCreator/FriendService/Types/Friend.cs
diff --git a/Ryujinx.HLE/HOS/Services/Friend/ServiceCreator/FriendService/Types/FriendFilter.cs b/src/Ryujinx.HLE/HOS/Services/Friend/ServiceCreator/FriendService/Types/FriendFilter.cs
index 261bf7bf..261bf7bf 100644
--- a/Ryujinx.HLE/HOS/Services/Friend/ServiceCreator/FriendService/Types/FriendFilter.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Friend/ServiceCreator/FriendService/Types/FriendFilter.cs
diff --git a/Ryujinx.HLE/HOS/Services/Friend/ServiceCreator/FriendService/Types/PresenceStatus.cs b/src/Ryujinx.HLE/HOS/Services/Friend/ServiceCreator/FriendService/Types/PresenceStatus.cs
index df2e6525..df2e6525 100644
--- a/Ryujinx.HLE/HOS/Services/Friend/ServiceCreator/FriendService/Types/PresenceStatus.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Friend/ServiceCreator/FriendService/Types/PresenceStatus.cs
diff --git a/Ryujinx.HLE/HOS/Services/Friend/ServiceCreator/FriendService/Types/PresenceStatusFilter.cs b/src/Ryujinx.HLE/HOS/Services/Friend/ServiceCreator/FriendService/Types/PresenceStatusFilter.cs
index 24da7fd3..24da7fd3 100644
--- a/Ryujinx.HLE/HOS/Services/Friend/ServiceCreator/FriendService/Types/PresenceStatusFilter.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Friend/ServiceCreator/FriendService/Types/PresenceStatusFilter.cs
diff --git a/Ryujinx.HLE/HOS/Services/Friend/ServiceCreator/FriendService/Types/UserPresence.cs b/src/Ryujinx.HLE/HOS/Services/Friend/ServiceCreator/FriendService/Types/UserPresence.cs
index d36b3f31..d36b3f31 100644
--- a/Ryujinx.HLE/HOS/Services/Friend/ServiceCreator/FriendService/Types/UserPresence.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Friend/ServiceCreator/FriendService/Types/UserPresence.cs
diff --git a/Ryujinx.HLE/HOS/Services/Friend/ServiceCreator/IDaemonSuspendSessionService.cs b/src/Ryujinx.HLE/HOS/Services/Friend/ServiceCreator/IDaemonSuspendSessionService.cs
index 42b34312..42b34312 100644
--- a/Ryujinx.HLE/HOS/Services/Friend/ServiceCreator/IDaemonSuspendSessionService.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Friend/ServiceCreator/IDaemonSuspendSessionService.cs
diff --git a/Ryujinx.HLE/HOS/Services/Friend/ServiceCreator/IFriendService.cs b/src/Ryujinx.HLE/HOS/Services/Friend/ServiceCreator/IFriendService.cs
index 2858aa46..2858aa46 100644
--- a/Ryujinx.HLE/HOS/Services/Friend/ServiceCreator/IFriendService.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Friend/ServiceCreator/IFriendService.cs
diff --git a/Ryujinx.HLE/HOS/Services/Friend/ServiceCreator/INotificationService.cs b/src/Ryujinx.HLE/HOS/Services/Friend/ServiceCreator/INotificationService.cs
index 063750c6..063750c6 100644
--- a/Ryujinx.HLE/HOS/Services/Friend/ServiceCreator/INotificationService.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Friend/ServiceCreator/INotificationService.cs
diff --git a/Ryujinx.HLE/HOS/Services/Friend/ServiceCreator/NotificationService/NotificationEventHandler.cs b/src/Ryujinx.HLE/HOS/Services/Friend/ServiceCreator/NotificationService/NotificationEventHandler.cs
index 383ad006..383ad006 100644
--- a/Ryujinx.HLE/HOS/Services/Friend/ServiceCreator/NotificationService/NotificationEventHandler.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Friend/ServiceCreator/NotificationService/NotificationEventHandler.cs
diff --git a/Ryujinx.HLE/HOS/Services/Friend/ServiceCreator/NotificationService/Types/NotificationEventType.cs b/src/Ryujinx.HLE/HOS/Services/Friend/ServiceCreator/NotificationService/Types/NotificationEventType.cs
index 5136ae8a..5136ae8a 100644
--- a/Ryujinx.HLE/HOS/Services/Friend/ServiceCreator/NotificationService/Types/NotificationEventType.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Friend/ServiceCreator/NotificationService/Types/NotificationEventType.cs
diff --git a/Ryujinx.HLE/HOS/Services/Friend/ServiceCreator/NotificationService/Types/NotificationInfo.cs b/src/Ryujinx.HLE/HOS/Services/Friend/ServiceCreator/NotificationService/Types/NotificationInfo.cs
index e710bf06..e710bf06 100644
--- a/Ryujinx.HLE/HOS/Services/Friend/ServiceCreator/NotificationService/Types/NotificationInfo.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Friend/ServiceCreator/NotificationService/Types/NotificationInfo.cs
diff --git a/Ryujinx.HLE/HOS/Services/Friend/ServiceCreator/Types/FriendServicePermissionLevel.cs b/src/Ryujinx.HLE/HOS/Services/Friend/ServiceCreator/Types/FriendServicePermissionLevel.cs
index 12a3d42f..12a3d42f 100644
--- a/Ryujinx.HLE/HOS/Services/Friend/ServiceCreator/Types/FriendServicePermissionLevel.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Friend/ServiceCreator/Types/FriendServicePermissionLevel.cs
diff --git a/Ryujinx.HLE/HOS/Services/Friend/ServiceCreator/Types/PlayHistoryRegistrationKey.cs b/src/Ryujinx.HLE/HOS/Services/Friend/ServiceCreator/Types/PlayHistoryRegistrationKey.cs
index 32d962c1..32d962c1 100644
--- a/Ryujinx.HLE/HOS/Services/Friend/ServiceCreator/Types/PlayHistoryRegistrationKey.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Friend/ServiceCreator/Types/PlayHistoryRegistrationKey.cs
diff --git a/Ryujinx.HLE/HOS/Services/Fs/FileSystemProxy/FileSystemProxyHelper.cs b/src/Ryujinx.HLE/HOS/Services/Fs/FileSystemProxy/FileSystemProxyHelper.cs
index ba924db8..ba924db8 100644
--- a/Ryujinx.HLE/HOS/Services/Fs/FileSystemProxy/FileSystemProxyHelper.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Fs/FileSystemProxy/FileSystemProxyHelper.cs
diff --git a/Ryujinx.HLE/HOS/Services/Fs/FileSystemProxy/IDirectory.cs b/src/Ryujinx.HLE/HOS/Services/Fs/FileSystemProxy/IDirectory.cs
index b9759449..b9759449 100644
--- a/Ryujinx.HLE/HOS/Services/Fs/FileSystemProxy/IDirectory.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Fs/FileSystemProxy/IDirectory.cs
diff --git a/Ryujinx.HLE/HOS/Services/Fs/FileSystemProxy/IFile.cs b/src/Ryujinx.HLE/HOS/Services/Fs/FileSystemProxy/IFile.cs
index 4bc58ae5..4bc58ae5 100644
--- a/Ryujinx.HLE/HOS/Services/Fs/FileSystemProxy/IFile.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Fs/FileSystemProxy/IFile.cs
diff --git a/Ryujinx.HLE/HOS/Services/Fs/FileSystemProxy/IFileSystem.cs b/src/Ryujinx.HLE/HOS/Services/Fs/FileSystemProxy/IFileSystem.cs
index 9effa79d..9effa79d 100644
--- a/Ryujinx.HLE/HOS/Services/Fs/FileSystemProxy/IFileSystem.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Fs/FileSystemProxy/IFileSystem.cs
diff --git a/Ryujinx.HLE/HOS/Services/Fs/FileSystemProxy/IStorage.cs b/src/Ryujinx.HLE/HOS/Services/Fs/FileSystemProxy/IStorage.cs
index 54c7b800..54c7b800 100644
--- a/Ryujinx.HLE/HOS/Services/Fs/FileSystemProxy/IStorage.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Fs/FileSystemProxy/IStorage.cs
diff --git a/Ryujinx.HLE/HOS/Services/Fs/IDeviceOperator.cs b/src/Ryujinx.HLE/HOS/Services/Fs/IDeviceOperator.cs
index 2a40aea4..2a40aea4 100644
--- a/Ryujinx.HLE/HOS/Services/Fs/IDeviceOperator.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Fs/IDeviceOperator.cs
diff --git a/Ryujinx.HLE/HOS/Services/Fs/IFileSystemProxy.cs b/src/Ryujinx.HLE/HOS/Services/Fs/IFileSystemProxy.cs
index e961e9b1..e961e9b1 100644
--- a/Ryujinx.HLE/HOS/Services/Fs/IFileSystemProxy.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Fs/IFileSystemProxy.cs
diff --git a/Ryujinx.HLE/HOS/Services/Fs/IFileSystemProxyForLoader.cs b/src/Ryujinx.HLE/HOS/Services/Fs/IFileSystemProxyForLoader.cs
index a40821b9..a40821b9 100644
--- a/Ryujinx.HLE/HOS/Services/Fs/IFileSystemProxyForLoader.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Fs/IFileSystemProxyForLoader.cs
diff --git a/Ryujinx.HLE/HOS/Services/Fs/IMultiCommitManager.cs b/src/Ryujinx.HLE/HOS/Services/Fs/IMultiCommitManager.cs
index aa04a7e6..aa04a7e6 100644
--- a/Ryujinx.HLE/HOS/Services/Fs/IMultiCommitManager.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Fs/IMultiCommitManager.cs
diff --git a/Ryujinx.HLE/HOS/Services/Fs/IProgramRegistry.cs b/src/Ryujinx.HLE/HOS/Services/Fs/IProgramRegistry.cs
index e11eadf5..e11eadf5 100644
--- a/Ryujinx.HLE/HOS/Services/Fs/IProgramRegistry.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Fs/IProgramRegistry.cs
diff --git a/Ryujinx.HLE/HOS/Services/Fs/ISaveDataInfoReader.cs b/src/Ryujinx.HLE/HOS/Services/Fs/ISaveDataInfoReader.cs
index 0611375b..0611375b 100644
--- a/Ryujinx.HLE/HOS/Services/Fs/ISaveDataInfoReader.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Fs/ISaveDataInfoReader.cs
diff --git a/Ryujinx.HLE/HOS/Services/Fs/ResultCode.cs b/src/Ryujinx.HLE/HOS/Services/Fs/ResultCode.cs
index 8f87142b..8f87142b 100644
--- a/Ryujinx.HLE/HOS/Services/Fs/ResultCode.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Fs/ResultCode.cs
diff --git a/Ryujinx.HLE/HOS/Services/Fs/Types/FileSystemType.cs b/src/Ryujinx.HLE/HOS/Services/Fs/Types/FileSystemType.cs
index f12c1661..f12c1661 100644
--- a/Ryujinx.HLE/HOS/Services/Fs/Types/FileSystemType.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Fs/Types/FileSystemType.cs
diff --git a/Ryujinx.HLE/HOS/Services/Grc/IGrcService.cs b/src/Ryujinx.HLE/HOS/Services/Grc/IGrcService.cs
index 90646b40..90646b40 100644
--- a/Ryujinx.HLE/HOS/Services/Grc/IGrcService.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Grc/IGrcService.cs
diff --git a/Ryujinx.HLE/HOS/Services/Grc/IRemoteVideoTransfer.cs b/src/Ryujinx.HLE/HOS/Services/Grc/IRemoteVideoTransfer.cs
index edb1d64e..edb1d64e 100644
--- a/Ryujinx.HLE/HOS/Services/Grc/IRemoteVideoTransfer.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Grc/IRemoteVideoTransfer.cs
diff --git a/Ryujinx.HLE/HOS/Services/Hid/Hid.cs b/src/Ryujinx.HLE/HOS/Services/Hid/Hid.cs
index b1466c78..b1466c78 100644
--- a/Ryujinx.HLE/HOS/Services/Hid/Hid.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Hid/Hid.cs
diff --git a/Ryujinx.HLE/HOS/Services/Hid/HidDevices/BaseDevice.cs b/src/Ryujinx.HLE/HOS/Services/Hid/HidDevices/BaseDevice.cs
index 0e3cd18a..0e3cd18a 100644
--- a/Ryujinx.HLE/HOS/Services/Hid/HidDevices/BaseDevice.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Hid/HidDevices/BaseDevice.cs
diff --git a/Ryujinx.HLE/HOS/Services/Hid/HidDevices/DebugPadDevice.cs b/src/Ryujinx.HLE/HOS/Services/Hid/HidDevices/DebugPadDevice.cs
index e3b95390..e3b95390 100644
--- a/Ryujinx.HLE/HOS/Services/Hid/HidDevices/DebugPadDevice.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Hid/HidDevices/DebugPadDevice.cs
diff --git a/Ryujinx.HLE/HOS/Services/Hid/HidDevices/KeyboardDevice.cs b/src/Ryujinx.HLE/HOS/Services/Hid/HidDevices/KeyboardDevice.cs
index 8908b74d..8908b74d 100644
--- a/Ryujinx.HLE/HOS/Services/Hid/HidDevices/KeyboardDevice.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Hid/HidDevices/KeyboardDevice.cs
diff --git a/Ryujinx.HLE/HOS/Services/Hid/HidDevices/MouseDevice.cs b/src/Ryujinx.HLE/HOS/Services/Hid/HidDevices/MouseDevice.cs
index 66d1b0c4..66d1b0c4 100644
--- a/Ryujinx.HLE/HOS/Services/Hid/HidDevices/MouseDevice.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Hid/HidDevices/MouseDevice.cs
diff --git a/Ryujinx.HLE/HOS/Services/Hid/HidDevices/NpadDevices.cs b/src/Ryujinx.HLE/HOS/Services/Hid/HidDevices/NpadDevices.cs
index edcc47d8..edcc47d8 100644
--- a/Ryujinx.HLE/HOS/Services/Hid/HidDevices/NpadDevices.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Hid/HidDevices/NpadDevices.cs
diff --git a/Ryujinx.HLE/HOS/Services/Hid/HidDevices/TouchDevice.cs b/src/Ryujinx.HLE/HOS/Services/Hid/HidDevices/TouchDevice.cs
index bb58ee51..bb58ee51 100644
--- a/Ryujinx.HLE/HOS/Services/Hid/HidDevices/TouchDevice.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Hid/HidDevices/TouchDevice.cs
diff --git a/Ryujinx.HLE/HOS/Services/Hid/HidDevices/Types/ControllerConfig.cs b/src/Ryujinx.HLE/HOS/Services/Hid/HidDevices/Types/ControllerConfig.cs
index 477e1a84..477e1a84 100644
--- a/Ryujinx.HLE/HOS/Services/Hid/HidDevices/Types/ControllerConfig.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Hid/HidDevices/Types/ControllerConfig.cs
diff --git a/Ryujinx.HLE/HOS/Services/Hid/HidDevices/Types/GamepadInput.cs b/src/Ryujinx.HLE/HOS/Services/Hid/HidDevices/Types/GamepadInput.cs
index 633671df..633671df 100644
--- a/Ryujinx.HLE/HOS/Services/Hid/HidDevices/Types/GamepadInput.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Hid/HidDevices/Types/GamepadInput.cs
diff --git a/Ryujinx.HLE/HOS/Services/Hid/HidDevices/Types/JoystickPosition.cs b/src/Ryujinx.HLE/HOS/Services/Hid/HidDevices/Types/JoystickPosition.cs
index 6df477d6..6df477d6 100644
--- a/Ryujinx.HLE/HOS/Services/Hid/HidDevices/Types/JoystickPosition.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Hid/HidDevices/Types/JoystickPosition.cs
diff --git a/Ryujinx.HLE/HOS/Services/Hid/HidDevices/Types/KeyboardInput.cs b/src/Ryujinx.HLE/HOS/Services/Hid/HidDevices/Types/KeyboardInput.cs
index be6857fb..be6857fb 100644
--- a/Ryujinx.HLE/HOS/Services/Hid/HidDevices/Types/KeyboardInput.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Hid/HidDevices/Types/KeyboardInput.cs
diff --git a/Ryujinx.HLE/HOS/Services/Hid/HidDevices/Types/SixAxisInput.cs b/src/Ryujinx.HLE/HOS/Services/Hid/HidDevices/Types/SixAxisInput.cs
index 4dda82c7..4dda82c7 100644
--- a/Ryujinx.HLE/HOS/Services/Hid/HidDevices/Types/SixAxisInput.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Hid/HidDevices/Types/SixAxisInput.cs
diff --git a/Ryujinx.HLE/HOS/Services/Hid/HidDevices/Types/TouchPoint.cs b/src/Ryujinx.HLE/HOS/Services/Hid/HidDevices/Types/TouchPoint.cs
index 457d2b0d..457d2b0d 100644
--- a/Ryujinx.HLE/HOS/Services/Hid/HidDevices/Types/TouchPoint.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Hid/HidDevices/Types/TouchPoint.cs
diff --git a/Ryujinx.HLE/HOS/Services/Hid/HidServer/HidUtils.cs b/src/Ryujinx.HLE/HOS/Services/Hid/HidServer/HidUtils.cs
index b98f6065..b98f6065 100644
--- a/Ryujinx.HLE/HOS/Services/Hid/HidServer/HidUtils.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Hid/HidServer/HidUtils.cs
diff --git a/Ryujinx.HLE/HOS/Services/Hid/HidServer/IActiveVibrationDeviceList.cs b/src/Ryujinx.HLE/HOS/Services/Hid/HidServer/IActiveVibrationDeviceList.cs
index 56f63e52..56f63e52 100644
--- a/Ryujinx.HLE/HOS/Services/Hid/HidServer/IActiveVibrationDeviceList.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Hid/HidServer/IActiveVibrationDeviceList.cs
diff --git a/Ryujinx.HLE/HOS/Services/Hid/HidServer/IAppletResource.cs b/src/Ryujinx.HLE/HOS/Services/Hid/HidServer/IAppletResource.cs
index f0aaf5e3..f0aaf5e3 100644
--- a/Ryujinx.HLE/HOS/Services/Hid/HidServer/IAppletResource.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Hid/HidServer/IAppletResource.cs
diff --git a/Ryujinx.HLE/HOS/Services/Hid/HidServer/Types/Npad/NpadHandheldActivationMode.cs b/src/Ryujinx.HLE/HOS/Services/Hid/HidServer/Types/Npad/NpadHandheldActivationMode.cs
index 0cf4a047..0cf4a047 100644
--- a/Ryujinx.HLE/HOS/Services/Hid/HidServer/Types/Npad/NpadHandheldActivationMode.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Hid/HidServer/Types/Npad/NpadHandheldActivationMode.cs
diff --git a/Ryujinx.HLE/HOS/Services/Hid/HidServer/Types/Npad/NpadJoyDeviceType.cs b/src/Ryujinx.HLE/HOS/Services/Hid/HidServer/Types/Npad/NpadJoyDeviceType.cs
index 05587bfd..05587bfd 100644
--- a/Ryujinx.HLE/HOS/Services/Hid/HidServer/Types/Npad/NpadJoyDeviceType.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Hid/HidServer/Types/Npad/NpadJoyDeviceType.cs
diff --git a/Ryujinx.HLE/HOS/Services/Hid/HidServer/Types/SixAxis/AccelerometerParameters.cs b/src/Ryujinx.HLE/HOS/Services/Hid/HidServer/Types/SixAxis/AccelerometerParameters.cs
index 4fd0a1b5..4fd0a1b5 100644
--- a/Ryujinx.HLE/HOS/Services/Hid/HidServer/Types/SixAxis/AccelerometerParameters.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Hid/HidServer/Types/SixAxis/AccelerometerParameters.cs
diff --git a/Ryujinx.HLE/HOS/Services/Hid/HidServer/Types/SixAxis/GyroscopeZeroDriftMode.cs b/src/Ryujinx.HLE/HOS/Services/Hid/HidServer/Types/SixAxis/GyroscopeZeroDriftMode.cs
index db7467fa..db7467fa 100644
--- a/Ryujinx.HLE/HOS/Services/Hid/HidServer/Types/SixAxis/GyroscopeZeroDriftMode.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Hid/HidServer/Types/SixAxis/GyroscopeZeroDriftMode.cs
diff --git a/Ryujinx.HLE/HOS/Services/Hid/HidServer/Types/SixAxis/SensorFusionParameters.cs b/src/Ryujinx.HLE/HOS/Services/Hid/HidServer/Types/SixAxis/SensorFusionParameters.cs
index 2683ffee..2683ffee 100644
--- a/Ryujinx.HLE/HOS/Services/Hid/HidServer/Types/SixAxis/SensorFusionParameters.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Hid/HidServer/Types/SixAxis/SensorFusionParameters.cs
diff --git a/Ryujinx.HLE/HOS/Services/Hid/HidServer/Types/Vibration/VibrationDeviceHandle.cs b/src/Ryujinx.HLE/HOS/Services/Hid/HidServer/Types/Vibration/VibrationDeviceHandle.cs
index fe50e671..fe50e671 100644
--- a/Ryujinx.HLE/HOS/Services/Hid/HidServer/Types/Vibration/VibrationDeviceHandle.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Hid/HidServer/Types/Vibration/VibrationDeviceHandle.cs
diff --git a/Ryujinx.HLE/HOS/Services/Hid/HidServer/Types/Vibration/VibrationDevicePosition.cs b/src/Ryujinx.HLE/HOS/Services/Hid/HidServer/Types/Vibration/VibrationDevicePosition.cs
index 117451f1..117451f1 100644
--- a/Ryujinx.HLE/HOS/Services/Hid/HidServer/Types/Vibration/VibrationDevicePosition.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Hid/HidServer/Types/Vibration/VibrationDevicePosition.cs
diff --git a/Ryujinx.HLE/HOS/Services/Hid/HidServer/Types/Vibration/VibrationDeviceType.cs b/src/Ryujinx.HLE/HOS/Services/Hid/HidServer/Types/Vibration/VibrationDeviceType.cs
index 4e5557c9..4e5557c9 100644
--- a/Ryujinx.HLE/HOS/Services/Hid/HidServer/Types/Vibration/VibrationDeviceType.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Hid/HidServer/Types/Vibration/VibrationDeviceType.cs
diff --git a/Ryujinx.HLE/HOS/Services/Hid/HidServer/Types/Vibration/VibrationDeviceValue.cs b/src/Ryujinx.HLE/HOS/Services/Hid/HidServer/Types/Vibration/VibrationDeviceValue.cs
index 91a23eb7..91a23eb7 100644
--- a/Ryujinx.HLE/HOS/Services/Hid/HidServer/Types/Vibration/VibrationDeviceValue.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Hid/HidServer/Types/Vibration/VibrationDeviceValue.cs
diff --git a/Ryujinx.HLE/HOS/Services/Hid/HidServer/Types/Vibration/VibrationValue.cs b/src/Ryujinx.HLE/HOS/Services/Hid/HidServer/Types/Vibration/VibrationValue.cs
index 38ac9cca..38ac9cca 100644
--- a/Ryujinx.HLE/HOS/Services/Hid/HidServer/Types/Vibration/VibrationValue.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Hid/HidServer/Types/Vibration/VibrationValue.cs
diff --git a/Ryujinx.HLE/HOS/Services/Hid/IHidDebugServer.cs b/src/Ryujinx.HLE/HOS/Services/Hid/IHidDebugServer.cs
index adaaa012..adaaa012 100644
--- a/Ryujinx.HLE/HOS/Services/Hid/IHidDebugServer.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Hid/IHidDebugServer.cs
diff --git a/Ryujinx.HLE/HOS/Services/Hid/IHidServer.cs b/src/Ryujinx.HLE/HOS/Services/Hid/IHidServer.cs
index d508aba4..d508aba4 100644
--- a/Ryujinx.HLE/HOS/Services/Hid/IHidServer.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Hid/IHidServer.cs
diff --git a/Ryujinx.HLE/HOS/Services/Hid/IHidSystemServer.cs b/src/Ryujinx.HLE/HOS/Services/Hid/IHidSystemServer.cs
index 4a5d0e9b..4a5d0e9b 100644
--- a/Ryujinx.HLE/HOS/Services/Hid/IHidSystemServer.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Hid/IHidSystemServer.cs
diff --git a/Ryujinx.HLE/HOS/Services/Hid/IHidbusServer.cs b/src/Ryujinx.HLE/HOS/Services/Hid/IHidbusServer.cs
index bfd1d4dc..bfd1d4dc 100644
--- a/Ryujinx.HLE/HOS/Services/Hid/IHidbusServer.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Hid/IHidbusServer.cs
diff --git a/Ryujinx.HLE/HOS/Services/Hid/ISystemServer.cs b/src/Ryujinx.HLE/HOS/Services/Hid/ISystemServer.cs
index 71353344..71353344 100644
--- a/Ryujinx.HLE/HOS/Services/Hid/ISystemServer.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Hid/ISystemServer.cs
diff --git a/Ryujinx.HLE/HOS/Services/Hid/Irs/IIrSensorServer.cs b/src/Ryujinx.HLE/HOS/Services/Hid/Irs/IIrSensorServer.cs
index 130fcf68..130fcf68 100644
--- a/Ryujinx.HLE/HOS/Services/Hid/Irs/IIrSensorServer.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Hid/Irs/IIrSensorServer.cs
diff --git a/Ryujinx.HLE/HOS/Services/Hid/Irs/IIrSensorSystemServer.cs b/src/Ryujinx.HLE/HOS/Services/Hid/Irs/IIrSensorSystemServer.cs
index 99fcd541..99fcd541 100644
--- a/Ryujinx.HLE/HOS/Services/Hid/Irs/IIrSensorSystemServer.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Hid/Irs/IIrSensorSystemServer.cs
diff --git a/Ryujinx.HLE/HOS/Services/Hid/Irs/ResultCode.cs b/src/Ryujinx.HLE/HOS/Services/Hid/Irs/ResultCode.cs
index 3afc03c2..3afc03c2 100644
--- a/Ryujinx.HLE/HOS/Services/Hid/Irs/ResultCode.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Hid/Irs/ResultCode.cs
diff --git a/Ryujinx.HLE/HOS/Services/Hid/Irs/Types/ImageTransferProcessorState.cs b/src/Ryujinx.HLE/HOS/Services/Hid/Irs/Types/ImageTransferProcessorState.cs
index 647aef64..647aef64 100644
--- a/Ryujinx.HLE/HOS/Services/Hid/Irs/Types/ImageTransferProcessorState.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Hid/Irs/Types/ImageTransferProcessorState.cs
diff --git a/Ryujinx.HLE/HOS/Services/Hid/Irs/Types/IrCameraHandle.cs b/src/Ryujinx.HLE/HOS/Services/Hid/Irs/Types/IrCameraHandle.cs
index 8ed7201e..8ed7201e 100644
--- a/Ryujinx.HLE/HOS/Services/Hid/Irs/Types/IrCameraHandle.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Hid/Irs/Types/IrCameraHandle.cs
diff --git a/Ryujinx.HLE/HOS/Services/Hid/Irs/Types/PackedClusteringProcessorConfig.cs b/src/Ryujinx.HLE/HOS/Services/Hid/Irs/Types/PackedClusteringProcessorConfig.cs
index 735f7822..735f7822 100644
--- a/Ryujinx.HLE/HOS/Services/Hid/Irs/Types/PackedClusteringProcessorConfig.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Hid/Irs/Types/PackedClusteringProcessorConfig.cs
diff --git a/Ryujinx.HLE/HOS/Services/Hid/Irs/Types/PackedImageTransferProcessorConfig.cs b/src/Ryujinx.HLE/HOS/Services/Hid/Irs/Types/PackedImageTransferProcessorConfig.cs
index 094413e0..094413e0 100644
--- a/Ryujinx.HLE/HOS/Services/Hid/Irs/Types/PackedImageTransferProcessorConfig.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Hid/Irs/Types/PackedImageTransferProcessorConfig.cs
diff --git a/Ryujinx.HLE/HOS/Services/Hid/Irs/Types/PackedMomentProcessorConfig.cs b/src/Ryujinx.HLE/HOS/Services/Hid/Irs/Types/PackedMomentProcessorConfig.cs
index a1b70b40..a1b70b40 100644
--- a/Ryujinx.HLE/HOS/Services/Hid/Irs/Types/PackedMomentProcessorConfig.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Hid/Irs/Types/PackedMomentProcessorConfig.cs
diff --git a/Ryujinx.HLE/HOS/Services/Hid/Irs/Types/PackedTeraPluginProcessorConfig.cs b/src/Ryujinx.HLE/HOS/Services/Hid/Irs/Types/PackedTeraPluginProcessorConfig.cs
index 808b0b72..808b0b72 100644
--- a/Ryujinx.HLE/HOS/Services/Hid/Irs/Types/PackedTeraPluginProcessorConfig.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Hid/Irs/Types/PackedTeraPluginProcessorConfig.cs
diff --git a/Ryujinx.HLE/HOS/Services/Hid/ResultCode.cs b/src/Ryujinx.HLE/HOS/Services/Hid/ResultCode.cs
index 9c87ac1d..9c87ac1d 100644
--- a/Ryujinx.HLE/HOS/Services/Hid/ResultCode.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Hid/ResultCode.cs
diff --git a/Ryujinx.HLE/HOS/Services/Hid/Types/AppletFooterUiType.cs b/src/Ryujinx.HLE/HOS/Services/Hid/Types/AppletFooterUiType.cs
index c4ff8d7e..c4ff8d7e 100644
--- a/Ryujinx.HLE/HOS/Services/Hid/Types/AppletFooterUiType.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Hid/Types/AppletFooterUiType.cs
diff --git a/Ryujinx.HLE/HOS/Services/Hid/Types/HidVector.cs b/src/Ryujinx.HLE/HOS/Services/Hid/Types/HidVector.cs
index 18d9fd9c..18d9fd9c 100644
--- a/Ryujinx.HLE/HOS/Services/Hid/Types/HidVector.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Hid/Types/HidVector.cs
diff --git a/Ryujinx.HLE/HOS/Services/Hid/Types/Npad/ControllerKeys.cs b/src/Ryujinx.HLE/HOS/Services/Hid/Types/Npad/ControllerKeys.cs
index c91636b2..c91636b2 100644
--- a/Ryujinx.HLE/HOS/Services/Hid/Types/Npad/ControllerKeys.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Hid/Types/Npad/ControllerKeys.cs
diff --git a/Ryujinx.HLE/HOS/Services/Hid/Types/Npad/ControllerType.cs b/src/Ryujinx.HLE/HOS/Services/Hid/Types/Npad/ControllerType.cs
index b2d34e8e..b2d34e8e 100644
--- a/Ryujinx.HLE/HOS/Services/Hid/Types/Npad/ControllerType.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Hid/Types/Npad/ControllerType.cs
diff --git a/Ryujinx.HLE/HOS/Services/Hid/Types/Npad/NpadColor.cs b/src/Ryujinx.HLE/HOS/Services/Hid/Types/Npad/NpadColor.cs
index 3c311e21..3c311e21 100644
--- a/Ryujinx.HLE/HOS/Services/Hid/Types/Npad/NpadColor.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Hid/Types/Npad/NpadColor.cs
diff --git a/Ryujinx.HLE/HOS/Services/Hid/Types/Npad/NpadIdType.cs b/src/Ryujinx.HLE/HOS/Services/Hid/Types/Npad/NpadIdType.cs
index 1abd8468..1abd8468 100644
--- a/Ryujinx.HLE/HOS/Services/Hid/Types/Npad/NpadIdType.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Hid/Types/Npad/NpadIdType.cs
diff --git a/Ryujinx.HLE/HOS/Services/Hid/Types/Npad/NpadStyleIndex.cs b/src/Ryujinx.HLE/HOS/Services/Hid/Types/Npad/NpadStyleIndex.cs
index ddf5d97f..ddf5d97f 100644
--- a/Ryujinx.HLE/HOS/Services/Hid/Types/Npad/NpadStyleIndex.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Hid/Types/Npad/NpadStyleIndex.cs
diff --git a/Ryujinx.HLE/HOS/Services/Hid/Types/Npad/PlayerIndex.cs b/src/Ryujinx.HLE/HOS/Services/Hid/Types/Npad/PlayerIndex.cs
index f4ced5df..f4ced5df 100644
--- a/Ryujinx.HLE/HOS/Services/Hid/Types/Npad/PlayerIndex.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Hid/Types/Npad/PlayerIndex.cs
diff --git a/Ryujinx.HLE/HOS/Services/Hid/Types/NpadJoyHoldType.cs b/src/Ryujinx.HLE/HOS/Services/Hid/Types/NpadJoyHoldType.cs
index d3b51a24..d3b51a24 100644
--- a/Ryujinx.HLE/HOS/Services/Hid/Types/NpadJoyHoldType.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Hid/Types/NpadJoyHoldType.cs
diff --git a/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Common/AnalogStickState.cs b/src/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Common/AnalogStickState.cs
index bf4b5888..bf4b5888 100644
--- a/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Common/AnalogStickState.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Common/AnalogStickState.cs
diff --git a/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Common/AtomicStorage.cs b/src/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Common/AtomicStorage.cs
index da53e421..da53e421 100644
--- a/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Common/AtomicStorage.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Common/AtomicStorage.cs
diff --git a/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Common/ISampledDataStruct.cs b/src/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Common/ISampledDataStruct.cs
index a382c0c2..a382c0c2 100644
--- a/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Common/ISampledDataStruct.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Common/ISampledDataStruct.cs
diff --git a/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Common/RingLifo.cs b/src/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Common/RingLifo.cs
index ae654d6f..ae654d6f 100644
--- a/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Common/RingLifo.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Common/RingLifo.cs
diff --git a/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/DebugPad/DebugPadAttribute.cs b/src/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/DebugPad/DebugPadAttribute.cs
index ec5bd3c8..ec5bd3c8 100644
--- a/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/DebugPad/DebugPadAttribute.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/DebugPad/DebugPadAttribute.cs
diff --git a/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/DebugPad/DebugPadButton.cs b/src/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/DebugPad/DebugPadButton.cs
index e8f28317..e8f28317 100644
--- a/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/DebugPad/DebugPadButton.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/DebugPad/DebugPadButton.cs
diff --git a/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/DebugPad/DebugPadState.cs b/src/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/DebugPad/DebugPadState.cs
index 0846cfc7..0846cfc7 100644
--- a/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/DebugPad/DebugPadState.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/DebugPad/DebugPadState.cs
diff --git a/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Keyboard/KeyboardKey.cs b/src/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Keyboard/KeyboardKey.cs
index 22df7c79..22df7c79 100644
--- a/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Keyboard/KeyboardKey.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Keyboard/KeyboardKey.cs
diff --git a/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Keyboard/KeyboardKeyShift.cs b/src/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Keyboard/KeyboardKeyShift.cs
index 01c2bb30..01c2bb30 100644
--- a/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Keyboard/KeyboardKeyShift.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Keyboard/KeyboardKeyShift.cs
diff --git a/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Keyboard/KeyboardModifier.cs b/src/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Keyboard/KeyboardModifier.cs
index 839a4e82..839a4e82 100644
--- a/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Keyboard/KeyboardModifier.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Keyboard/KeyboardModifier.cs
diff --git a/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Keyboard/KeyboardState.cs b/src/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Keyboard/KeyboardState.cs
index 4de92813..4de92813 100644
--- a/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Keyboard/KeyboardState.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Keyboard/KeyboardState.cs
diff --git a/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Mouse/MouseAttribute.cs b/src/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Mouse/MouseAttribute.cs
index 5ffba0d7..5ffba0d7 100644
--- a/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Mouse/MouseAttribute.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Mouse/MouseAttribute.cs
diff --git a/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Mouse/MouseButton.cs b/src/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Mouse/MouseButton.cs
index 7e35140c..7e35140c 100644
--- a/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Mouse/MouseButton.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Mouse/MouseButton.cs
diff --git a/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Mouse/MouseState.cs b/src/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Mouse/MouseState.cs
index c953c794..c953c794 100644
--- a/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Mouse/MouseState.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Mouse/MouseState.cs
diff --git a/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Npad/DeviceType.cs b/src/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Npad/DeviceType.cs
index b0201835..b0201835 100644
--- a/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Npad/DeviceType.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Npad/DeviceType.cs
diff --git a/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Npad/NpadAttribute.cs b/src/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Npad/NpadAttribute.cs
index 0960b7bf..0960b7bf 100644
--- a/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Npad/NpadAttribute.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Npad/NpadAttribute.cs
diff --git a/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Npad/NpadBatteryLevel.cs b/src/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Npad/NpadBatteryLevel.cs
index 477dfd10..477dfd10 100644
--- a/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Npad/NpadBatteryLevel.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Npad/NpadBatteryLevel.cs
diff --git a/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Npad/NpadButton.cs b/src/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Npad/NpadButton.cs
index 5b3e13a7..5b3e13a7 100644
--- a/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Npad/NpadButton.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Npad/NpadButton.cs
diff --git a/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Npad/NpadColorAttribute.cs b/src/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Npad/NpadColorAttribute.cs
index 1e547cc8..1e547cc8 100644
--- a/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Npad/NpadColorAttribute.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Npad/NpadColorAttribute.cs
diff --git a/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Npad/NpadCommonState.cs b/src/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Npad/NpadCommonState.cs
index 64f75ce9..64f75ce9 100644
--- a/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Npad/NpadCommonState.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Npad/NpadCommonState.cs
diff --git a/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Npad/NpadFullKeyColorState.cs b/src/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Npad/NpadFullKeyColorState.cs
index 990eafb2..990eafb2 100644
--- a/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Npad/NpadFullKeyColorState.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Npad/NpadFullKeyColorState.cs
diff --git a/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Npad/NpadGcTriggerState.cs b/src/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Npad/NpadGcTriggerState.cs
index bddd6212..bddd6212 100644
--- a/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Npad/NpadGcTriggerState.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Npad/NpadGcTriggerState.cs
diff --git a/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Npad/NpadInternalState.cs b/src/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Npad/NpadInternalState.cs
index b009f95e..b009f95e 100644
--- a/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Npad/NpadInternalState.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Npad/NpadInternalState.cs
diff --git a/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Npad/NpadJoyAssignmentMode.cs b/src/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Npad/NpadJoyAssignmentMode.cs
index 871c4c5a..871c4c5a 100644
--- a/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Npad/NpadJoyAssignmentMode.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Npad/NpadJoyAssignmentMode.cs
diff --git a/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Npad/NpadJoyColorState.cs b/src/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Npad/NpadJoyColorState.cs
index 3986dd5e..3986dd5e 100644
--- a/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Npad/NpadJoyColorState.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Npad/NpadJoyColorState.cs
diff --git a/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Npad/NpadLarkType.cs b/src/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Npad/NpadLarkType.cs
index a487a911..a487a911 100644
--- a/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Npad/NpadLarkType.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Npad/NpadLarkType.cs
diff --git a/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Npad/NpadLuciaType.cs b/src/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Npad/NpadLuciaType.cs
index 95148485..95148485 100644
--- a/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Npad/NpadLuciaType.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Npad/NpadLuciaType.cs
diff --git a/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Npad/NpadState.cs b/src/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Npad/NpadState.cs
index ed9e7c0d..ed9e7c0d 100644
--- a/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Npad/NpadState.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Npad/NpadState.cs
diff --git a/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Npad/NpadStyleTag.cs b/src/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Npad/NpadStyleTag.cs
index f31978e2..f31978e2 100644
--- a/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Npad/NpadStyleTag.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Npad/NpadStyleTag.cs
diff --git a/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Npad/NpadSystemButtonProperties.cs b/src/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Npad/NpadSystemButtonProperties.cs
index 68603271..68603271 100644
--- a/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Npad/NpadSystemButtonProperties.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Npad/NpadSystemButtonProperties.cs
diff --git a/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Npad/NpadSystemProperties.cs b/src/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Npad/NpadSystemProperties.cs
index 13444555..13444555 100644
--- a/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Npad/NpadSystemProperties.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Npad/NpadSystemProperties.cs
diff --git a/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Npad/SixAxisSensorAttribute.cs b/src/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Npad/SixAxisSensorAttribute.cs
index 7ed46d98..7ed46d98 100644
--- a/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Npad/SixAxisSensorAttribute.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Npad/SixAxisSensorAttribute.cs
diff --git a/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Npad/SixAxisSensorState.cs b/src/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Npad/SixAxisSensorState.cs
index 18be3276..18be3276 100644
--- a/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Npad/SixAxisSensorState.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/Npad/SixAxisSensorState.cs
diff --git a/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/SharedMemory.cs b/src/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/SharedMemory.cs
index 48acfc3f..48acfc3f 100644
--- a/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/SharedMemory.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/SharedMemory.cs
diff --git a/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/TouchScreen/TouchAttribute.cs b/src/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/TouchScreen/TouchAttribute.cs
index d2c5726a..d2c5726a 100644
--- a/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/TouchScreen/TouchAttribute.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/TouchScreen/TouchAttribute.cs
diff --git a/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/TouchScreen/TouchScreenState.cs b/src/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/TouchScreen/TouchScreenState.cs
index cdd4cc45..cdd4cc45 100644
--- a/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/TouchScreen/TouchScreenState.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/TouchScreen/TouchScreenState.cs
diff --git a/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/TouchScreen/TouchState.cs b/src/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/TouchScreen/TouchState.cs
index ba621a2b..ba621a2b 100644
--- a/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/TouchScreen/TouchState.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Hid/Types/SharedMemory/TouchScreen/TouchState.cs
diff --git a/Ryujinx.HLE/HOS/Services/Ins/IReceiverManager.cs b/src/Ryujinx.HLE/HOS/Services/Ins/IReceiverManager.cs
index 34d4bdfd..34d4bdfd 100644
--- a/Ryujinx.HLE/HOS/Services/Ins/IReceiverManager.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Ins/IReceiverManager.cs
diff --git a/Ryujinx.HLE/HOS/Services/Ins/ISenderManager.cs b/src/Ryujinx.HLE/HOS/Services/Ins/ISenderManager.cs
index 38a95ee7..38a95ee7 100644
--- a/Ryujinx.HLE/HOS/Services/Ins/ISenderManager.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Ins/ISenderManager.cs
diff --git a/Ryujinx.HLE/HOS/Services/IpcService.cs b/src/Ryujinx.HLE/HOS/Services/IpcService.cs
index 048a68a9..048a68a9 100644
--- a/Ryujinx.HLE/HOS/Services/IpcService.cs
+++ b/src/Ryujinx.HLE/HOS/Services/IpcService.cs
diff --git a/Ryujinx.HLE/HOS/Services/Lbl/ILblController.cs b/src/Ryujinx.HLE/HOS/Services/Lbl/ILblController.cs
index 65074d5f..65074d5f 100644
--- a/Ryujinx.HLE/HOS/Services/Lbl/ILblController.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Lbl/ILblController.cs
diff --git a/Ryujinx.HLE/HOS/Services/Lbl/LblControllerServer.cs b/src/Ryujinx.HLE/HOS/Services/Lbl/LblControllerServer.cs
index b68be1f2..b68be1f2 100644
--- a/Ryujinx.HLE/HOS/Services/Lbl/LblControllerServer.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Lbl/LblControllerServer.cs
diff --git a/Ryujinx.HLE/HOS/Services/Ldn/IMonitorServiceCreator.cs b/src/Ryujinx.HLE/HOS/Services/Ldn/IMonitorServiceCreator.cs
index 09dfa78f..09dfa78f 100644
--- a/Ryujinx.HLE/HOS/Services/Ldn/IMonitorServiceCreator.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Ldn/IMonitorServiceCreator.cs
diff --git a/Ryujinx.HLE/HOS/Services/Ldn/ISystemServiceCreator.cs b/src/Ryujinx.HLE/HOS/Services/Ldn/ISystemServiceCreator.cs
index b4dac449..b4dac449 100644
--- a/Ryujinx.HLE/HOS/Services/Ldn/ISystemServiceCreator.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Ldn/ISystemServiceCreator.cs
diff --git a/Ryujinx.HLE/HOS/Services/Ldn/IUserServiceCreator.cs b/src/Ryujinx.HLE/HOS/Services/Ldn/IUserServiceCreator.cs
index 4f3094ae..4f3094ae 100644
--- a/Ryujinx.HLE/HOS/Services/Ldn/IUserServiceCreator.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Ldn/IUserServiceCreator.cs
diff --git a/Ryujinx.HLE/HOS/Services/Ldn/Lp2p/IServiceCreator.cs b/src/Ryujinx.HLE/HOS/Services/Ldn/Lp2p/IServiceCreator.cs
index 9c9ee3be..9c9ee3be 100644
--- a/Ryujinx.HLE/HOS/Services/Ldn/Lp2p/IServiceCreator.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Ldn/Lp2p/IServiceCreator.cs
diff --git a/Ryujinx.HLE/HOS/Services/Ldn/NetworkInterface.cs b/src/Ryujinx.HLE/HOS/Services/Ldn/NetworkInterface.cs
index 274b6132..274b6132 100644
--- a/Ryujinx.HLE/HOS/Services/Ldn/NetworkInterface.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Ldn/NetworkInterface.cs
diff --git a/Ryujinx.HLE/HOS/Services/Ldn/ResultCode.cs b/src/Ryujinx.HLE/HOS/Services/Ldn/ResultCode.cs
index 87674f7c..87674f7c 100644
--- a/Ryujinx.HLE/HOS/Services/Ldn/ResultCode.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Ldn/ResultCode.cs
diff --git a/Ryujinx.HLE/HOS/Services/Ldn/Types/NetworkState.cs b/src/Ryujinx.HLE/HOS/Services/Ldn/Types/NetworkState.cs
index 6ac20483..6ac20483 100644
--- a/Ryujinx.HLE/HOS/Services/Ldn/Types/NetworkState.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Ldn/Types/NetworkState.cs
diff --git a/Ryujinx.HLE/HOS/Services/Ldn/UserServiceCreator/IUserLocalCommunicationService.cs b/src/Ryujinx.HLE/HOS/Services/Ldn/UserServiceCreator/IUserLocalCommunicationService.cs
index f425ddf7..f425ddf7 100644
--- a/Ryujinx.HLE/HOS/Services/Ldn/UserServiceCreator/IUserLocalCommunicationService.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Ldn/UserServiceCreator/IUserLocalCommunicationService.cs
diff --git a/Ryujinx.HLE/HOS/Services/Loader/IDebugMonitorInterface.cs b/src/Ryujinx.HLE/HOS/Services/Loader/IDebugMonitorInterface.cs
index 82b24a35..82b24a35 100644
--- a/Ryujinx.HLE/HOS/Services/Loader/IDebugMonitorInterface.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Loader/IDebugMonitorInterface.cs
diff --git a/Ryujinx.HLE/HOS/Services/Loader/IProcessManagerInterface.cs b/src/Ryujinx.HLE/HOS/Services/Loader/IProcessManagerInterface.cs
index 2ecde2ad..2ecde2ad 100644
--- a/Ryujinx.HLE/HOS/Services/Loader/IProcessManagerInterface.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Loader/IProcessManagerInterface.cs
diff --git a/Ryujinx.HLE/HOS/Services/Loader/IShellInterface.cs b/src/Ryujinx.HLE/HOS/Services/Loader/IShellInterface.cs
index 362f82f0..362f82f0 100644
--- a/Ryujinx.HLE/HOS/Services/Loader/IShellInterface.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Loader/IShellInterface.cs
diff --git a/Ryujinx.HLE/HOS/Services/Loader/ResultCode.cs b/src/Ryujinx.HLE/HOS/Services/Loader/ResultCode.cs
index 170dfa01..170dfa01 100644
--- a/Ryujinx.HLE/HOS/Services/Loader/ResultCode.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Loader/ResultCode.cs
diff --git a/Ryujinx.HLE/HOS/Services/Mig/IService.cs b/src/Ryujinx.HLE/HOS/Services/Mig/IService.cs
index 2f6eb99e..2f6eb99e 100644
--- a/Ryujinx.HLE/HOS/Services/Mig/IService.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Mig/IService.cs
diff --git a/Ryujinx.HLE/HOS/Services/Mii/DatabaseImpl.cs b/src/Ryujinx.HLE/HOS/Services/Mii/DatabaseImpl.cs
index 6d65de95..6d65de95 100644
--- a/Ryujinx.HLE/HOS/Services/Mii/DatabaseImpl.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Mii/DatabaseImpl.cs
diff --git a/Ryujinx.HLE/HOS/Services/Mii/DatabaseSessionMetadata.cs b/src/Ryujinx.HLE/HOS/Services/Mii/DatabaseSessionMetadata.cs
index 6982b0ed..6982b0ed 100644
--- a/Ryujinx.HLE/HOS/Services/Mii/DatabaseSessionMetadata.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Mii/DatabaseSessionMetadata.cs
diff --git a/Ryujinx.HLE/HOS/Services/Mii/Helper.cs b/src/Ryujinx.HLE/HOS/Services/Mii/Helper.cs
index b02bbfd1..b02bbfd1 100644
--- a/Ryujinx.HLE/HOS/Services/Mii/Helper.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Mii/Helper.cs
diff --git a/Ryujinx.HLE/HOS/Services/Mii/IImageDatabaseService.cs b/src/Ryujinx.HLE/HOS/Services/Mii/IImageDatabaseService.cs
index 7d65c73f..7d65c73f 100644
--- a/Ryujinx.HLE/HOS/Services/Mii/IImageDatabaseService.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Mii/IImageDatabaseService.cs
diff --git a/Ryujinx.HLE/HOS/Services/Mii/IStaticService.cs b/src/Ryujinx.HLE/HOS/Services/Mii/IStaticService.cs
index a7fc71c9..a7fc71c9 100644
--- a/Ryujinx.HLE/HOS/Services/Mii/IStaticService.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Mii/IStaticService.cs
diff --git a/Ryujinx.HLE/HOS/Services/Mii/MiiDatabaseManager.cs b/src/Ryujinx.HLE/HOS/Services/Mii/MiiDatabaseManager.cs
index 682283b0..682283b0 100644
--- a/Ryujinx.HLE/HOS/Services/Mii/MiiDatabaseManager.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Mii/MiiDatabaseManager.cs
diff --git a/Ryujinx.HLE/HOS/Services/Mii/ResultCode.cs b/src/Ryujinx.HLE/HOS/Services/Mii/ResultCode.cs
index 4a4c0c23..4a4c0c23 100644
--- a/Ryujinx.HLE/HOS/Services/Mii/ResultCode.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Mii/ResultCode.cs
diff --git a/Ryujinx.HLE/HOS/Services/Mii/StaticService/DatabaseServiceImpl.cs b/src/Ryujinx.HLE/HOS/Services/Mii/StaticService/DatabaseServiceImpl.cs
index 4b5ed0d0..4b5ed0d0 100644
--- a/Ryujinx.HLE/HOS/Services/Mii/StaticService/DatabaseServiceImpl.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Mii/StaticService/DatabaseServiceImpl.cs
diff --git a/Ryujinx.HLE/HOS/Services/Mii/StaticService/IDatabaseService.cs b/src/Ryujinx.HLE/HOS/Services/Mii/StaticService/IDatabaseService.cs
index e95364be..e95364be 100644
--- a/Ryujinx.HLE/HOS/Services/Mii/StaticService/IDatabaseService.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Mii/StaticService/IDatabaseService.cs
diff --git a/Ryujinx.HLE/HOS/Services/Mii/Types/Age.cs b/src/Ryujinx.HLE/HOS/Services/Mii/Types/Age.cs
index 7beb6ec0..7beb6ec0 100644
--- a/Ryujinx.HLE/HOS/Services/Mii/Types/Age.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Mii/Types/Age.cs
diff --git a/Ryujinx.HLE/HOS/Services/Mii/Types/BeardType.cs b/src/Ryujinx.HLE/HOS/Services/Mii/Types/BeardType.cs
index a028b9be..a028b9be 100644
--- a/Ryujinx.HLE/HOS/Services/Mii/Types/BeardType.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Mii/Types/BeardType.cs
diff --git a/Ryujinx.HLE/HOS/Services/Mii/Types/CharInfo.cs b/src/Ryujinx.HLE/HOS/Services/Mii/Types/CharInfo.cs
index 256ec9e0..256ec9e0 100644
--- a/Ryujinx.HLE/HOS/Services/Mii/Types/CharInfo.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Mii/Types/CharInfo.cs
diff --git a/Ryujinx.HLE/HOS/Services/Mii/Types/CharInfoElement.cs b/src/Ryujinx.HLE/HOS/Services/Mii/Types/CharInfoElement.cs
index f1f850fd..f1f850fd 100644
--- a/Ryujinx.HLE/HOS/Services/Mii/Types/CharInfoElement.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Mii/Types/CharInfoElement.cs
diff --git a/Ryujinx.HLE/HOS/Services/Mii/Types/CommonColor.cs b/src/Ryujinx.HLE/HOS/Services/Mii/Types/CommonColor.cs
index 8b613850..8b613850 100644
--- a/Ryujinx.HLE/HOS/Services/Mii/Types/CommonColor.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Mii/Types/CommonColor.cs
diff --git a/Ryujinx.HLE/HOS/Services/Mii/Types/CoreData.cs b/src/Ryujinx.HLE/HOS/Services/Mii/Types/CoreData.cs
index f3a101d8..f3a101d8 100644
--- a/Ryujinx.HLE/HOS/Services/Mii/Types/CoreData.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Mii/Types/CoreData.cs
diff --git a/Ryujinx.HLE/HOS/Services/Mii/Types/CreateId.cs b/src/Ryujinx.HLE/HOS/Services/Mii/Types/CreateId.cs
index c1a97f52..c1a97f52 100644
--- a/Ryujinx.HLE/HOS/Services/Mii/Types/CreateId.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Mii/Types/CreateId.cs
diff --git a/Ryujinx.HLE/HOS/Services/Mii/Types/DefaultMii.cs b/src/Ryujinx.HLE/HOS/Services/Mii/Types/DefaultMii.cs
index 285a9242..285a9242 100644
--- a/Ryujinx.HLE/HOS/Services/Mii/Types/DefaultMii.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Mii/Types/DefaultMii.cs
diff --git a/Ryujinx.HLE/HOS/Services/Mii/Types/EyeType.cs b/src/Ryujinx.HLE/HOS/Services/Mii/Types/EyeType.cs
index 2e4502ed..2e4502ed 100644
--- a/Ryujinx.HLE/HOS/Services/Mii/Types/EyeType.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Mii/Types/EyeType.cs
diff --git a/Ryujinx.HLE/HOS/Services/Mii/Types/EyebrowType.cs b/src/Ryujinx.HLE/HOS/Services/Mii/Types/EyebrowType.cs
index af870e10..af870e10 100644
--- a/Ryujinx.HLE/HOS/Services/Mii/Types/EyebrowType.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Mii/Types/EyebrowType.cs
diff --git a/Ryujinx.HLE/HOS/Services/Mii/Types/FacelineColor.cs b/src/Ryujinx.HLE/HOS/Services/Mii/Types/FacelineColor.cs
index 551f053d..551f053d 100644
--- a/Ryujinx.HLE/HOS/Services/Mii/Types/FacelineColor.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Mii/Types/FacelineColor.cs
diff --git a/Ryujinx.HLE/HOS/Services/Mii/Types/FacelineMake.cs b/src/Ryujinx.HLE/HOS/Services/Mii/Types/FacelineMake.cs
index af6d7276..af6d7276 100644
--- a/Ryujinx.HLE/HOS/Services/Mii/Types/FacelineMake.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Mii/Types/FacelineMake.cs
diff --git a/Ryujinx.HLE/HOS/Services/Mii/Types/FacelineType.cs b/src/Ryujinx.HLE/HOS/Services/Mii/Types/FacelineType.cs
index fe27636f..fe27636f 100644
--- a/Ryujinx.HLE/HOS/Services/Mii/Types/FacelineType.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Mii/Types/FacelineType.cs
diff --git a/Ryujinx.HLE/HOS/Services/Mii/Types/FacelineWrinkle.cs b/src/Ryujinx.HLE/HOS/Services/Mii/Types/FacelineWrinkle.cs
index afb75dd8..afb75dd8 100644
--- a/Ryujinx.HLE/HOS/Services/Mii/Types/FacelineWrinkle.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Mii/Types/FacelineWrinkle.cs
diff --git a/Ryujinx.HLE/HOS/Services/Mii/Types/FontRegion.cs b/src/Ryujinx.HLE/HOS/Services/Mii/Types/FontRegion.cs
index d1d86f16..d1d86f16 100644
--- a/Ryujinx.HLE/HOS/Services/Mii/Types/FontRegion.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Mii/Types/FontRegion.cs
diff --git a/Ryujinx.HLE/HOS/Services/Mii/Types/Gender.cs b/src/Ryujinx.HLE/HOS/Services/Mii/Types/Gender.cs
index 75f9a745..75f9a745 100644
--- a/Ryujinx.HLE/HOS/Services/Mii/Types/Gender.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Mii/Types/Gender.cs
diff --git a/Ryujinx.HLE/HOS/Services/Mii/Types/GlassType.cs b/src/Ryujinx.HLE/HOS/Services/Mii/Types/GlassType.cs
index ccfed0f6..ccfed0f6 100644
--- a/Ryujinx.HLE/HOS/Services/Mii/Types/GlassType.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Mii/Types/GlassType.cs
diff --git a/Ryujinx.HLE/HOS/Services/Mii/Types/HairFlip.cs b/src/Ryujinx.HLE/HOS/Services/Mii/Types/HairFlip.cs
index 2f7f1d73..2f7f1d73 100644
--- a/Ryujinx.HLE/HOS/Services/Mii/Types/HairFlip.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Mii/Types/HairFlip.cs
diff --git a/Ryujinx.HLE/HOS/Services/Mii/Types/HairType.cs b/src/Ryujinx.HLE/HOS/Services/Mii/Types/HairType.cs
index a8a611da..a8a611da 100644
--- a/Ryujinx.HLE/HOS/Services/Mii/Types/HairType.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Mii/Types/HairType.cs
diff --git a/Ryujinx.HLE/HOS/Services/Mii/Types/IElement.cs b/src/Ryujinx.HLE/HOS/Services/Mii/Types/IElement.cs
index 94c65b23..94c65b23 100644
--- a/Ryujinx.HLE/HOS/Services/Mii/Types/IElement.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Mii/Types/IElement.cs
diff --git a/Ryujinx.HLE/HOS/Services/Mii/Types/IStoredData.cs b/src/Ryujinx.HLE/HOS/Services/Mii/Types/IStoredData.cs
index a6552a57..a6552a57 100644
--- a/Ryujinx.HLE/HOS/Services/Mii/Types/IStoredData.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Mii/Types/IStoredData.cs
diff --git a/Ryujinx.HLE/HOS/Services/Mii/Types/MoleType.cs b/src/Ryujinx.HLE/HOS/Services/Mii/Types/MoleType.cs
index 12cb6dc3..12cb6dc3 100644
--- a/Ryujinx.HLE/HOS/Services/Mii/Types/MoleType.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Mii/Types/MoleType.cs
diff --git a/Ryujinx.HLE/HOS/Services/Mii/Types/MouthType.cs b/src/Ryujinx.HLE/HOS/Services/Mii/Types/MouthType.cs
index 2a8e7a00..2a8e7a00 100644
--- a/Ryujinx.HLE/HOS/Services/Mii/Types/MouthType.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Mii/Types/MouthType.cs
diff --git a/Ryujinx.HLE/HOS/Services/Mii/Types/MustacheType.cs b/src/Ryujinx.HLE/HOS/Services/Mii/Types/MustacheType.cs
index a15382dd..a15382dd 100644
--- a/Ryujinx.HLE/HOS/Services/Mii/Types/MustacheType.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Mii/Types/MustacheType.cs
diff --git a/Ryujinx.HLE/HOS/Services/Mii/Types/Nickname.cs b/src/Ryujinx.HLE/HOS/Services/Mii/Types/Nickname.cs
index 677d81b0..677d81b0 100644
--- a/Ryujinx.HLE/HOS/Services/Mii/Types/Nickname.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Mii/Types/Nickname.cs
diff --git a/Ryujinx.HLE/HOS/Services/Mii/Types/NintendoFigurineDatabase.cs b/src/Ryujinx.HLE/HOS/Services/Mii/Types/NintendoFigurineDatabase.cs
index 14eda2ed..14eda2ed 100644
--- a/Ryujinx.HLE/HOS/Services/Mii/Types/NintendoFigurineDatabase.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Mii/Types/NintendoFigurineDatabase.cs
diff --git a/Ryujinx.HLE/HOS/Services/Mii/Types/NoseType.cs b/src/Ryujinx.HLE/HOS/Services/Mii/Types/NoseType.cs
index e898a02e..e898a02e 100644
--- a/Ryujinx.HLE/HOS/Services/Mii/Types/NoseType.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Mii/Types/NoseType.cs
diff --git a/Ryujinx.HLE/HOS/Services/Mii/Types/Race.cs b/src/Ryujinx.HLE/HOS/Services/Mii/Types/Race.cs
index 8cf36c27..8cf36c27 100644
--- a/Ryujinx.HLE/HOS/Services/Mii/Types/Race.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Mii/Types/Race.cs
diff --git a/Ryujinx.HLE/HOS/Services/Mii/Types/RandomMiiConstants.cs b/src/Ryujinx.HLE/HOS/Services/Mii/Types/RandomMiiConstants.cs
index 82529450..82529450 100644
--- a/Ryujinx.HLE/HOS/Services/Mii/Types/RandomMiiConstants.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Mii/Types/RandomMiiConstants.cs
diff --git a/Ryujinx.HLE/HOS/Services/Mii/Types/Source.cs b/src/Ryujinx.HLE/HOS/Services/Mii/Types/Source.cs
index 1ded636a..1ded636a 100644
--- a/Ryujinx.HLE/HOS/Services/Mii/Types/Source.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Mii/Types/Source.cs
diff --git a/Ryujinx.HLE/HOS/Services/Mii/Types/SourceFlag.cs b/src/Ryujinx.HLE/HOS/Services/Mii/Types/SourceFlag.cs
index d51dce87..d51dce87 100644
--- a/Ryujinx.HLE/HOS/Services/Mii/Types/SourceFlag.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Mii/Types/SourceFlag.cs
diff --git a/Ryujinx.HLE/HOS/Services/Mii/Types/SpecialMiiKeyCode.cs b/src/Ryujinx.HLE/HOS/Services/Mii/Types/SpecialMiiKeyCode.cs
index 7fe13238..7fe13238 100644
--- a/Ryujinx.HLE/HOS/Services/Mii/Types/SpecialMiiKeyCode.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Mii/Types/SpecialMiiKeyCode.cs
diff --git a/Ryujinx.HLE/HOS/Services/Mii/Types/StoreData.cs b/src/Ryujinx.HLE/HOS/Services/Mii/Types/StoreData.cs
index 8411693f..8411693f 100644
--- a/Ryujinx.HLE/HOS/Services/Mii/Types/StoreData.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Mii/Types/StoreData.cs
diff --git a/Ryujinx.HLE/HOS/Services/Mii/Types/StoreDataElement.cs b/src/Ryujinx.HLE/HOS/Services/Mii/Types/StoreDataElement.cs
index 8d3e96be..8d3e96be 100644
--- a/Ryujinx.HLE/HOS/Services/Mii/Types/StoreDataElement.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Mii/Types/StoreDataElement.cs
diff --git a/Ryujinx.HLE/HOS/Services/Mii/Types/Ver3StoreData.cs b/src/Ryujinx.HLE/HOS/Services/Mii/Types/Ver3StoreData.cs
index 70bb348b..70bb348b 100644
--- a/Ryujinx.HLE/HOS/Services/Mii/Types/Ver3StoreData.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Mii/Types/Ver3StoreData.cs
diff --git a/Ryujinx.HLE/HOS/Services/Mii/UtilityImpl.cs b/src/Ryujinx.HLE/HOS/Services/Mii/UtilityImpl.cs
index 30b201f6..30b201f6 100644
--- a/Ryujinx.HLE/HOS/Services/Mii/UtilityImpl.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Mii/UtilityImpl.cs
diff --git a/Ryujinx.HLE/HOS/Services/Mm/IRequest.cs b/src/Ryujinx.HLE/HOS/Services/Mm/IRequest.cs
index fac42555..fac42555 100644
--- a/Ryujinx.HLE/HOS/Services/Mm/IRequest.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Mm/IRequest.cs
diff --git a/Ryujinx.HLE/HOS/Services/Mm/Types/MultiMediaOperationType.cs b/src/Ryujinx.HLE/HOS/Services/Mm/Types/MultiMediaOperationType.cs
index 2742af6c..2742af6c 100644
--- a/Ryujinx.HLE/HOS/Services/Mm/Types/MultiMediaOperationType.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Mm/Types/MultiMediaOperationType.cs
diff --git a/Ryujinx.HLE/HOS/Services/Mm/Types/MultiMediaSession.cs b/src/Ryujinx.HLE/HOS/Services/Mm/Types/MultiMediaSession.cs
index a6723eca..a6723eca 100644
--- a/Ryujinx.HLE/HOS/Services/Mm/Types/MultiMediaSession.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Mm/Types/MultiMediaSession.cs
diff --git a/Ryujinx.HLE/HOS/Services/Mnpp/IServiceForApplication.cs b/src/Ryujinx.HLE/HOS/Services/Mnpp/IServiceForApplication.cs
index c2a4345c..c2a4345c 100644
--- a/Ryujinx.HLE/HOS/Services/Mnpp/IServiceForApplication.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Mnpp/IServiceForApplication.cs
diff --git a/Ryujinx.HLE/HOS/Services/Mnpp/ResultCode.cs b/src/Ryujinx.HLE/HOS/Services/Mnpp/ResultCode.cs
index dfc39a73..dfc39a73 100644
--- a/Ryujinx.HLE/HOS/Services/Mnpp/ResultCode.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Mnpp/ResultCode.cs
diff --git a/Ryujinx.HLE/HOS/Services/Ncm/IContentManager.cs b/src/Ryujinx.HLE/HOS/Services/Ncm/IContentManager.cs
index 7f05d9be..7f05d9be 100644
--- a/Ryujinx.HLE/HOS/Services/Ncm/IContentManager.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Ncm/IContentManager.cs
diff --git a/Ryujinx.HLE/HOS/Services/Ncm/Lr/ILocationResolverManager.cs b/src/Ryujinx.HLE/HOS/Services/Ncm/Lr/ILocationResolverManager.cs
index 318ad30e..318ad30e 100644
--- a/Ryujinx.HLE/HOS/Services/Ncm/Lr/ILocationResolverManager.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Ncm/Lr/ILocationResolverManager.cs
diff --git a/Ryujinx.HLE/HOS/Services/Ncm/Lr/LocationResolverManager/ILocationResolver.cs b/src/Ryujinx.HLE/HOS/Services/Ncm/Lr/LocationResolverManager/ILocationResolver.cs
index 55b49bce..55b49bce 100644
--- a/Ryujinx.HLE/HOS/Services/Ncm/Lr/LocationResolverManager/ILocationResolver.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Ncm/Lr/LocationResolverManager/ILocationResolver.cs
diff --git a/Ryujinx.HLE/HOS/Services/Ncm/Lr/ResultCode.cs b/src/Ryujinx.HLE/HOS/Services/Ncm/Lr/ResultCode.cs
index d21fe634..d21fe634 100644
--- a/Ryujinx.HLE/HOS/Services/Ncm/Lr/ResultCode.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Ncm/Lr/ResultCode.cs
diff --git a/Ryujinx.HLE/HOS/Services/News/IServiceCreator.cs b/src/Ryujinx.HLE/HOS/Services/News/IServiceCreator.cs
index 7ea89b20..7ea89b20 100644
--- a/Ryujinx.HLE/HOS/Services/News/IServiceCreator.cs
+++ b/src/Ryujinx.HLE/HOS/Services/News/IServiceCreator.cs
diff --git a/Ryujinx.HLE/HOS/Services/Nfc/IAmManager.cs b/src/Ryujinx.HLE/HOS/Services/Nfc/IAmManager.cs
index 33932568..33932568 100644
--- a/Ryujinx.HLE/HOS/Services/Nfc/IAmManager.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Nfc/IAmManager.cs
diff --git a/Ryujinx.HLE/HOS/Services/Nfc/ISystemManager.cs b/src/Ryujinx.HLE/HOS/Services/Nfc/ISystemManager.cs
index ef90b6ad..ef90b6ad 100644
--- a/Ryujinx.HLE/HOS/Services/Nfc/ISystemManager.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Nfc/ISystemManager.cs
diff --git a/Ryujinx.HLE/HOS/Services/Nfc/IUserManager.cs b/src/Ryujinx.HLE/HOS/Services/Nfc/IUserManager.cs
index 97959a62..97959a62 100644
--- a/Ryujinx.HLE/HOS/Services/Nfc/IUserManager.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Nfc/IUserManager.cs
diff --git a/Ryujinx.HLE/HOS/Services/Nfc/Mifare/IUserManager.cs b/src/Ryujinx.HLE/HOS/Services/Nfc/Mifare/IUserManager.cs
index cc3cd3aa..cc3cd3aa 100644
--- a/Ryujinx.HLE/HOS/Services/Nfc/Mifare/IUserManager.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Nfc/Mifare/IUserManager.cs
diff --git a/Ryujinx.HLE/HOS/Services/Nfc/NfcManager/INfc.cs b/src/Ryujinx.HLE/HOS/Services/Nfc/NfcManager/INfc.cs
index b091aabf..b091aabf 100644
--- a/Ryujinx.HLE/HOS/Services/Nfc/NfcManager/INfc.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Nfc/NfcManager/INfc.cs
diff --git a/Ryujinx.HLE/HOS/Services/Nfc/NfcManager/Types/NfcPermissionLevel.cs b/src/Ryujinx.HLE/HOS/Services/Nfc/NfcManager/Types/NfcPermissionLevel.cs
index 39babc73..39babc73 100644
--- a/Ryujinx.HLE/HOS/Services/Nfc/NfcManager/Types/NfcPermissionLevel.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Nfc/NfcManager/Types/NfcPermissionLevel.cs
diff --git a/Ryujinx.HLE/HOS/Services/Nfc/NfcManager/Types/State.cs b/src/Ryujinx.HLE/HOS/Services/Nfc/NfcManager/Types/State.cs
index 85f99950..85f99950 100644
--- a/Ryujinx.HLE/HOS/Services/Nfc/NfcManager/Types/State.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Nfc/NfcManager/Types/State.cs
diff --git a/Ryujinx.HLE/HOS/Services/Nfc/Nfp/AmiiboJsonSerializerContext.cs b/src/Ryujinx.HLE/HOS/Services/Nfc/Nfp/AmiiboJsonSerializerContext.cs
index e75f6200..e75f6200 100644
--- a/Ryujinx.HLE/HOS/Services/Nfc/Nfp/AmiiboJsonSerializerContext.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Nfc/Nfp/AmiiboJsonSerializerContext.cs
diff --git a/Ryujinx.HLE/HOS/Services/Nfc/Nfp/IDebugManager.cs b/src/Ryujinx.HLE/HOS/Services/Nfc/Nfp/IDebugManager.cs
index fc454473..fc454473 100644
--- a/Ryujinx.HLE/HOS/Services/Nfc/Nfp/IDebugManager.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Nfc/Nfp/IDebugManager.cs
diff --git a/Ryujinx.HLE/HOS/Services/Nfc/Nfp/ISystemManager.cs b/src/Ryujinx.HLE/HOS/Services/Nfc/Nfp/ISystemManager.cs
index 3fcf7a87..3fcf7a87 100644
--- a/Ryujinx.HLE/HOS/Services/Nfc/Nfp/ISystemManager.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Nfc/Nfp/ISystemManager.cs
diff --git a/Ryujinx.HLE/HOS/Services/Nfc/Nfp/IUserManager.cs b/src/Ryujinx.HLE/HOS/Services/Nfc/Nfp/IUserManager.cs
index 93da8419..93da8419 100644
--- a/Ryujinx.HLE/HOS/Services/Nfc/Nfp/IUserManager.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Nfc/Nfp/IUserManager.cs
diff --git a/Ryujinx.HLE/HOS/Services/Nfc/Nfp/NfpManager/INfp.cs b/src/Ryujinx.HLE/HOS/Services/Nfc/Nfp/NfpManager/INfp.cs
index e25a2972..e25a2972 100644
--- a/Ryujinx.HLE/HOS/Services/Nfc/Nfp/NfpManager/INfp.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Nfc/Nfp/NfpManager/INfp.cs
diff --git a/Ryujinx.HLE/HOS/Services/Nfc/Nfp/NfpManager/Types/AmiiboConstants.cs b/src/Ryujinx.HLE/HOS/Services/Nfc/Nfp/NfpManager/Types/AmiiboConstants.cs
index b06492e6..b06492e6 100644
--- a/Ryujinx.HLE/HOS/Services/Nfc/Nfp/NfpManager/Types/AmiiboConstants.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Nfc/Nfp/NfpManager/Types/AmiiboConstants.cs
diff --git a/Ryujinx.HLE/HOS/Services/Nfc/Nfp/NfpManager/Types/CommonInfo.cs b/src/Ryujinx.HLE/HOS/Services/Nfc/Nfp/NfpManager/Types/CommonInfo.cs
index a7976de9..a7976de9 100644
--- a/Ryujinx.HLE/HOS/Services/Nfc/Nfp/NfpManager/Types/CommonInfo.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Nfc/Nfp/NfpManager/Types/CommonInfo.cs
diff --git a/Ryujinx.HLE/HOS/Services/Nfc/Nfp/NfpManager/Types/DeviceType.cs b/src/Ryujinx.HLE/HOS/Services/Nfc/Nfp/NfpManager/Types/DeviceType.cs
index 096522a0..096522a0 100644
--- a/Ryujinx.HLE/HOS/Services/Nfc/Nfp/NfpManager/Types/DeviceType.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Nfc/Nfp/NfpManager/Types/DeviceType.cs
diff --git a/Ryujinx.HLE/HOS/Services/Nfc/Nfp/NfpManager/Types/ModelInfo.cs b/src/Ryujinx.HLE/HOS/Services/Nfc/Nfp/NfpManager/Types/ModelInfo.cs
index c66636ae..c66636ae 100644
--- a/Ryujinx.HLE/HOS/Services/Nfc/Nfp/NfpManager/Types/ModelInfo.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Nfc/Nfp/NfpManager/Types/ModelInfo.cs
diff --git a/Ryujinx.HLE/HOS/Services/Nfc/Nfp/NfpManager/Types/MountTarget.cs b/src/Ryujinx.HLE/HOS/Services/Nfc/Nfp/NfpManager/Types/MountTarget.cs
index 4a145773..4a145773 100644
--- a/Ryujinx.HLE/HOS/Services/Nfc/Nfp/NfpManager/Types/MountTarget.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Nfc/Nfp/NfpManager/Types/MountTarget.cs
diff --git a/Ryujinx.HLE/HOS/Services/Nfc/Nfp/NfpManager/Types/NfpDevice.cs b/src/Ryujinx.HLE/HOS/Services/Nfc/Nfp/NfpManager/Types/NfpDevice.cs
index f56d33a9..f56d33a9 100644
--- a/Ryujinx.HLE/HOS/Services/Nfc/Nfp/NfpManager/Types/NfpDevice.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Nfc/Nfp/NfpManager/Types/NfpDevice.cs
diff --git a/Ryujinx.HLE/HOS/Services/Nfc/Nfp/NfpManager/Types/NfpDeviceState.cs b/src/Ryujinx.HLE/HOS/Services/Nfc/Nfp/NfpManager/Types/NfpDeviceState.cs
index 51e1d060..51e1d060 100644
--- a/Ryujinx.HLE/HOS/Services/Nfc/Nfp/NfpManager/Types/NfpDeviceState.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Nfc/Nfp/NfpManager/Types/NfpDeviceState.cs
diff --git a/Ryujinx.HLE/HOS/Services/Nfc/Nfp/NfpManager/Types/NfpPermissionLevel.cs b/src/Ryujinx.HLE/HOS/Services/Nfc/Nfp/NfpManager/Types/NfpPermissionLevel.cs
index 8b84dcfe..8b84dcfe 100644
--- a/Ryujinx.HLE/HOS/Services/Nfc/Nfp/NfpManager/Types/NfpPermissionLevel.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Nfc/Nfp/NfpManager/Types/NfpPermissionLevel.cs
diff --git a/Ryujinx.HLE/HOS/Services/Nfc/Nfp/NfpManager/Types/RegisterInfo.cs b/src/Ryujinx.HLE/HOS/Services/Nfc/Nfp/NfpManager/Types/RegisterInfo.cs
index 6b30eb8e..6b30eb8e 100644
--- a/Ryujinx.HLE/HOS/Services/Nfc/Nfp/NfpManager/Types/RegisterInfo.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Nfc/Nfp/NfpManager/Types/RegisterInfo.cs
diff --git a/Ryujinx.HLE/HOS/Services/Nfc/Nfp/NfpManager/Types/State.cs b/src/Ryujinx.HLE/HOS/Services/Nfc/Nfp/NfpManager/Types/State.cs
index b38cf9e2..b38cf9e2 100644
--- a/Ryujinx.HLE/HOS/Services/Nfc/Nfp/NfpManager/Types/State.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Nfc/Nfp/NfpManager/Types/State.cs
diff --git a/Ryujinx.HLE/HOS/Services/Nfc/Nfp/NfpManager/Types/TagInfo.cs b/src/Ryujinx.HLE/HOS/Services/Nfc/Nfp/NfpManager/Types/TagInfo.cs
index d2076b2a..d2076b2a 100644
--- a/Ryujinx.HLE/HOS/Services/Nfc/Nfp/NfpManager/Types/TagInfo.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Nfc/Nfp/NfpManager/Types/TagInfo.cs
diff --git a/Ryujinx.HLE/HOS/Services/Nfc/Nfp/NfpManager/Types/VirtualAmiiboFile.cs b/src/Ryujinx.HLE/HOS/Services/Nfc/Nfp/NfpManager/Types/VirtualAmiiboFile.cs
index be1877e5..be1877e5 100644
--- a/Ryujinx.HLE/HOS/Services/Nfc/Nfp/NfpManager/Types/VirtualAmiiboFile.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Nfc/Nfp/NfpManager/Types/VirtualAmiiboFile.cs
diff --git a/Ryujinx.HLE/HOS/Services/Nfc/Nfp/ResultCode.cs b/src/Ryujinx.HLE/HOS/Services/Nfc/Nfp/ResultCode.cs
index e0ccbc6d..e0ccbc6d 100644
--- a/Ryujinx.HLE/HOS/Services/Nfc/Nfp/ResultCode.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Nfc/Nfp/ResultCode.cs
diff --git a/Ryujinx.HLE/HOS/Services/Nfc/Nfp/VirtualAmiibo.cs b/src/Ryujinx.HLE/HOS/Services/Nfc/Nfp/VirtualAmiibo.cs
index 9166e87f..9166e87f 100644
--- a/Ryujinx.HLE/HOS/Services/Nfc/Nfp/VirtualAmiibo.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Nfc/Nfp/VirtualAmiibo.cs
diff --git a/Ryujinx.HLE/HOS/Services/Ngct/IService.cs b/src/Ryujinx.HLE/HOS/Services/Ngct/IService.cs
index eacf35f3..eacf35f3 100644
--- a/Ryujinx.HLE/HOS/Services/Ngct/IService.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Ngct/IService.cs
diff --git a/Ryujinx.HLE/HOS/Services/Ngct/IServiceWithManagementApi.cs b/src/Ryujinx.HLE/HOS/Services/Ngct/IServiceWithManagementApi.cs
index 5ad056ba..5ad056ba 100644
--- a/Ryujinx.HLE/HOS/Services/Ngct/IServiceWithManagementApi.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Ngct/IServiceWithManagementApi.cs
diff --git a/Ryujinx.HLE/HOS/Services/Ngct/NgctServer.cs b/src/Ryujinx.HLE/HOS/Services/Ngct/NgctServer.cs
index 8d99721e..8d99721e 100644
--- a/Ryujinx.HLE/HOS/Services/Ngct/NgctServer.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Ngct/NgctServer.cs
diff --git a/Ryujinx.HLE/HOS/Services/Nifm/IStaticService.cs b/src/Ryujinx.HLE/HOS/Services/Nifm/IStaticService.cs
index d6a4a29f..d6a4a29f 100644
--- a/Ryujinx.HLE/HOS/Services/Nifm/IStaticService.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Nifm/IStaticService.cs
diff --git a/Ryujinx.HLE/HOS/Services/Nifm/ResultCode.cs b/src/Ryujinx.HLE/HOS/Services/Nifm/ResultCode.cs
index 73cadb11..73cadb11 100644
--- a/Ryujinx.HLE/HOS/Services/Nifm/ResultCode.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Nifm/ResultCode.cs
diff --git a/Ryujinx.HLE/HOS/Services/Nifm/StaticService/GeneralService/GeneralServiceManager.cs b/src/Ryujinx.HLE/HOS/Services/Nifm/StaticService/GeneralService/GeneralServiceManager.cs
index bbb218bb..bbb218bb 100644
--- a/Ryujinx.HLE/HOS/Services/Nifm/StaticService/GeneralService/GeneralServiceManager.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Nifm/StaticService/GeneralService/GeneralServiceManager.cs
diff --git a/Ryujinx.HLE/HOS/Services/Nifm/StaticService/GeneralService/Types/GeneralServiceDetail.cs b/src/Ryujinx.HLE/HOS/Services/Nifm/StaticService/GeneralService/Types/GeneralServiceDetail.cs
index 3cf55345..3cf55345 100644
--- a/Ryujinx.HLE/HOS/Services/Nifm/StaticService/GeneralService/Types/GeneralServiceDetail.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Nifm/StaticService/GeneralService/Types/GeneralServiceDetail.cs
diff --git a/Ryujinx.HLE/HOS/Services/Nifm/StaticService/IGeneralService.cs b/src/Ryujinx.HLE/HOS/Services/Nifm/StaticService/IGeneralService.cs
index e9712e92..e9712e92 100644
--- a/Ryujinx.HLE/HOS/Services/Nifm/StaticService/IGeneralService.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Nifm/StaticService/IGeneralService.cs
diff --git a/Ryujinx.HLE/HOS/Services/Nifm/StaticService/IRequest.cs b/src/Ryujinx.HLE/HOS/Services/Nifm/StaticService/IRequest.cs
index 87aad30b..87aad30b 100644
--- a/Ryujinx.HLE/HOS/Services/Nifm/StaticService/IRequest.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Nifm/StaticService/IRequest.cs
diff --git a/Ryujinx.HLE/HOS/Services/Nifm/StaticService/Types/DnsSetting.cs b/src/Ryujinx.HLE/HOS/Services/Nifm/StaticService/Types/DnsSetting.cs
index 374558ea..374558ea 100644
--- a/Ryujinx.HLE/HOS/Services/Nifm/StaticService/Types/DnsSetting.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Nifm/StaticService/Types/DnsSetting.cs
diff --git a/Ryujinx.HLE/HOS/Services/Nifm/StaticService/Types/InternetConnectionState.cs b/src/Ryujinx.HLE/HOS/Services/Nifm/StaticService/Types/InternetConnectionState.cs
index dfb8f76c..dfb8f76c 100644
--- a/Ryujinx.HLE/HOS/Services/Nifm/StaticService/Types/InternetConnectionState.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Nifm/StaticService/Types/InternetConnectionState.cs
diff --git a/Ryujinx.HLE/HOS/Services/Nifm/StaticService/Types/InternetConnectionStatus.cs b/src/Ryujinx.HLE/HOS/Services/Nifm/StaticService/Types/InternetConnectionStatus.cs
index ff944eca..ff944eca 100644
--- a/Ryujinx.HLE/HOS/Services/Nifm/StaticService/Types/InternetConnectionStatus.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Nifm/StaticService/Types/InternetConnectionStatus.cs
diff --git a/Ryujinx.HLE/HOS/Services/Nifm/StaticService/Types/InternetConnectionType.cs b/src/Ryujinx.HLE/HOS/Services/Nifm/StaticService/Types/InternetConnectionType.cs
index af2bcfa1..af2bcfa1 100644
--- a/Ryujinx.HLE/HOS/Services/Nifm/StaticService/Types/InternetConnectionType.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Nifm/StaticService/Types/InternetConnectionType.cs
diff --git a/Ryujinx.HLE/HOS/Services/Nifm/StaticService/Types/IpAddressSetting.cs b/src/Ryujinx.HLE/HOS/Services/Nifm/StaticService/Types/IpAddressSetting.cs
index 59c1f6a7..59c1f6a7 100644
--- a/Ryujinx.HLE/HOS/Services/Nifm/StaticService/Types/IpAddressSetting.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Nifm/StaticService/Types/IpAddressSetting.cs
diff --git a/Ryujinx.HLE/HOS/Services/Nifm/StaticService/Types/IpSettingData.cs b/src/Ryujinx.HLE/HOS/Services/Nifm/StaticService/Types/IpSettingData.cs
index 8ffe824c..8ffe824c 100644
--- a/Ryujinx.HLE/HOS/Services/Nifm/StaticService/Types/IpSettingData.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Nifm/StaticService/Types/IpSettingData.cs
diff --git a/Ryujinx.HLE/HOS/Services/Nifm/StaticService/Types/IpV4Address.cs b/src/Ryujinx.HLE/HOS/Services/Nifm/StaticService/Types/IpV4Address.cs
index e5c2f39a..e5c2f39a 100644
--- a/Ryujinx.HLE/HOS/Services/Nifm/StaticService/Types/IpV4Address.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Nifm/StaticService/Types/IpV4Address.cs
diff --git a/Ryujinx.HLE/HOS/Services/Nifm/StaticService/Types/NetworkProfileData.cs b/src/Ryujinx.HLE/HOS/Services/Nifm/StaticService/Types/NetworkProfileData.cs
index e270c10a..e270c10a 100644
--- a/Ryujinx.HLE/HOS/Services/Nifm/StaticService/Types/NetworkProfileData.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Nifm/StaticService/Types/NetworkProfileData.cs
diff --git a/Ryujinx.HLE/HOS/Services/Nifm/StaticService/Types/ProxySetting.cs b/src/Ryujinx.HLE/HOS/Services/Nifm/StaticService/Types/ProxySetting.cs
index 6e534fe1..6e534fe1 100644
--- a/Ryujinx.HLE/HOS/Services/Nifm/StaticService/Types/ProxySetting.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Nifm/StaticService/Types/ProxySetting.cs
diff --git a/Ryujinx.HLE/HOS/Services/Nifm/StaticService/Types/WirelessSettingData.cs b/src/Ryujinx.HLE/HOS/Services/Nifm/StaticService/Types/WirelessSettingData.cs
index 8aa122c7..8aa122c7 100644
--- a/Ryujinx.HLE/HOS/Services/Nifm/StaticService/Types/WirelessSettingData.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Nifm/StaticService/Types/WirelessSettingData.cs
diff --git a/Ryujinx.HLE/HOS/Services/Nim/INetworkInstallManager.cs b/src/Ryujinx.HLE/HOS/Services/Nim/INetworkInstallManager.cs
index ad79ca0d..ad79ca0d 100644
--- a/Ryujinx.HLE/HOS/Services/Nim/INetworkInstallManager.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Nim/INetworkInstallManager.cs
diff --git a/Ryujinx.HLE/HOS/Services/Nim/IShopServiceAccessServer.cs b/src/Ryujinx.HLE/HOS/Services/Nim/IShopServiceAccessServer.cs
index ab17871f..ab17871f 100644
--- a/Ryujinx.HLE/HOS/Services/Nim/IShopServiceAccessServer.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Nim/IShopServiceAccessServer.cs
diff --git a/Ryujinx.HLE/HOS/Services/Nim/IShopServiceAccessServerInterface.cs b/src/Ryujinx.HLE/HOS/Services/Nim/IShopServiceAccessServerInterface.cs
index 950004fa..950004fa 100644
--- a/Ryujinx.HLE/HOS/Services/Nim/IShopServiceAccessServerInterface.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Nim/IShopServiceAccessServerInterface.cs
diff --git a/Ryujinx.HLE/HOS/Services/Nim/IShopServiceAccessSystemInterface.cs b/src/Ryujinx.HLE/HOS/Services/Nim/IShopServiceAccessSystemInterface.cs
index bf201b98..bf201b98 100644
--- a/Ryujinx.HLE/HOS/Services/Nim/IShopServiceAccessSystemInterface.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Nim/IShopServiceAccessSystemInterface.cs
diff --git a/Ryujinx.HLE/HOS/Services/Nim/IShopServiceAccessor.cs b/src/Ryujinx.HLE/HOS/Services/Nim/IShopServiceAccessor.cs
index 3c0136fa..3c0136fa 100644
--- a/Ryujinx.HLE/HOS/Services/Nim/IShopServiceAccessor.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Nim/IShopServiceAccessor.cs
diff --git a/Ryujinx.HLE/HOS/Services/Nim/IShopServiceAsync.cs b/src/Ryujinx.HLE/HOS/Services/Nim/IShopServiceAsync.cs
index 81d892c5..81d892c5 100644
--- a/Ryujinx.HLE/HOS/Services/Nim/IShopServiceAsync.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Nim/IShopServiceAsync.cs
diff --git a/Ryujinx.HLE/HOS/Services/Nim/IShopServiceManager.cs b/src/Ryujinx.HLE/HOS/Services/Nim/IShopServiceManager.cs
index 2420615a..2420615a 100644
--- a/Ryujinx.HLE/HOS/Services/Nim/IShopServiceManager.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Nim/IShopServiceManager.cs
diff --git a/Ryujinx.HLE/HOS/Services/Nim/Ntc/IStaticService.cs b/src/Ryujinx.HLE/HOS/Services/Nim/Ntc/IStaticService.cs
index 4a63615b..4a63615b 100644
--- a/Ryujinx.HLE/HOS/Services/Nim/Ntc/IStaticService.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Nim/Ntc/IStaticService.cs
diff --git a/Ryujinx.HLE/HOS/Services/Nim/Ntc/StaticService/IEnsureNetworkClockAvailabilityService.cs b/src/Ryujinx.HLE/HOS/Services/Nim/Ntc/StaticService/IEnsureNetworkClockAvailabilityService.cs
index 82d0b5a8..82d0b5a8 100644
--- a/Ryujinx.HLE/HOS/Services/Nim/Ntc/StaticService/IEnsureNetworkClockAvailabilityService.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Nim/Ntc/StaticService/IEnsureNetworkClockAvailabilityService.cs
diff --git a/Ryujinx.HLE/HOS/Services/Nim/ResultCode.cs b/src/Ryujinx.HLE/HOS/Services/Nim/ResultCode.cs
index 166e39a3..166e39a3 100644
--- a/Ryujinx.HLE/HOS/Services/Nim/ResultCode.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Nim/ResultCode.cs
diff --git a/Ryujinx.HLE/HOS/Services/Notification/INotificationServicesForApplication.cs b/src/Ryujinx.HLE/HOS/Services/Notification/INotificationServicesForApplication.cs
index c4a35b29..c4a35b29 100644
--- a/Ryujinx.HLE/HOS/Services/Notification/INotificationServicesForApplication.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Notification/INotificationServicesForApplication.cs
diff --git a/Ryujinx.HLE/HOS/Services/Notification/INotificationServicesForSystem.cs b/src/Ryujinx.HLE/HOS/Services/Notification/INotificationServicesForSystem.cs
index 0939dff6..0939dff6 100644
--- a/Ryujinx.HLE/HOS/Services/Notification/INotificationServicesForSystem.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Notification/INotificationServicesForSystem.cs
diff --git a/Ryujinx.HLE/HOS/Services/Npns/INpnsSystem.cs b/src/Ryujinx.HLE/HOS/Services/Npns/INpnsSystem.cs
index fd8ccfb5..fd8ccfb5 100644
--- a/Ryujinx.HLE/HOS/Services/Npns/INpnsSystem.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Npns/INpnsSystem.cs
diff --git a/Ryujinx.HLE/HOS/Services/Npns/INpnsUser.cs b/src/Ryujinx.HLE/HOS/Services/Npns/INpnsUser.cs
index 68e76938..68e76938 100644
--- a/Ryujinx.HLE/HOS/Services/Npns/INpnsUser.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Npns/INpnsUser.cs
diff --git a/Ryujinx.HLE/HOS/Services/Ns/Aoc/IAddOnContentManager.cs b/src/Ryujinx.HLE/HOS/Services/Ns/Aoc/IAddOnContentManager.cs
index b4b5bb1f..b4b5bb1f 100644
--- a/Ryujinx.HLE/HOS/Services/Ns/Aoc/IAddOnContentManager.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Ns/Aoc/IAddOnContentManager.cs
diff --git a/Ryujinx.HLE/HOS/Services/Ns/Aoc/IContentsServiceManager.cs b/src/Ryujinx.HLE/HOS/Services/Ns/Aoc/IContentsServiceManager.cs
index cb8903d4..cb8903d4 100644
--- a/Ryujinx.HLE/HOS/Services/Ns/Aoc/IContentsServiceManager.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Ns/Aoc/IContentsServiceManager.cs
diff --git a/Ryujinx.HLE/HOS/Services/Ns/Aoc/IPurchaseEventManager.cs b/src/Ryujinx.HLE/HOS/Services/Ns/Aoc/IPurchaseEventManager.cs
index 1673fafc..1673fafc 100644
--- a/Ryujinx.HLE/HOS/Services/Ns/Aoc/IPurchaseEventManager.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Ns/Aoc/IPurchaseEventManager.cs
diff --git a/Ryujinx.HLE/HOS/Services/Ns/Aoc/ResultCode.cs b/src/Ryujinx.HLE/HOS/Services/Ns/Aoc/ResultCode.cs
index 7602ecb3..7602ecb3 100644
--- a/Ryujinx.HLE/HOS/Services/Ns/Aoc/ResultCode.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Ns/Aoc/ResultCode.cs
diff --git a/Ryujinx.HLE/HOS/Services/Ns/IApplicationManagerInterface.cs b/src/Ryujinx.HLE/HOS/Services/Ns/IApplicationManagerInterface.cs
index 06e911f8..06e911f8 100644
--- a/Ryujinx.HLE/HOS/Services/Ns/IApplicationManagerInterface.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Ns/IApplicationManagerInterface.cs
diff --git a/Ryujinx.HLE/HOS/Services/Ns/IDevelopInterface.cs b/src/Ryujinx.HLE/HOS/Services/Ns/IDevelopInterface.cs
index c74ebd69..c74ebd69 100644
--- a/Ryujinx.HLE/HOS/Services/Ns/IDevelopInterface.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Ns/IDevelopInterface.cs
diff --git a/Ryujinx.HLE/HOS/Services/Ns/IReadOnlyApplicationControlDataInterface.cs b/src/Ryujinx.HLE/HOS/Services/Ns/IReadOnlyApplicationControlDataInterface.cs
index aa37a1e7..aa37a1e7 100644
--- a/Ryujinx.HLE/HOS/Services/Ns/IReadOnlyApplicationControlDataInterface.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Ns/IReadOnlyApplicationControlDataInterface.cs
diff --git a/Ryujinx.HLE/HOS/Services/Ns/IServiceGetterInterface.cs b/src/Ryujinx.HLE/HOS/Services/Ns/IServiceGetterInterface.cs
index 886bffdd..886bffdd 100644
--- a/Ryujinx.HLE/HOS/Services/Ns/IServiceGetterInterface.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Ns/IServiceGetterInterface.cs
diff --git a/Ryujinx.HLE/HOS/Services/Ns/ISystemUpdateInterface.cs b/src/Ryujinx.HLE/HOS/Services/Ns/ISystemUpdateInterface.cs
index 84ed3d0f..84ed3d0f 100644
--- a/Ryujinx.HLE/HOS/Services/Ns/ISystemUpdateInterface.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Ns/ISystemUpdateInterface.cs
diff --git a/Ryujinx.HLE/HOS/Services/Ns/IVulnerabilityManagerInterface.cs b/src/Ryujinx.HLE/HOS/Services/Ns/IVulnerabilityManagerInterface.cs
index 0b640992..0b640992 100644
--- a/Ryujinx.HLE/HOS/Services/Ns/IVulnerabilityManagerInterface.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Ns/IVulnerabilityManagerInterface.cs
diff --git a/Ryujinx.HLE/HOS/Services/Nv/Host1xContext.cs b/src/Ryujinx.HLE/HOS/Services/Nv/Host1xContext.cs
index bb609fa4..bb609fa4 100644
--- a/Ryujinx.HLE/HOS/Services/Nv/Host1xContext.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Nv/Host1xContext.cs
diff --git a/Ryujinx.HLE/HOS/Services/Nv/INvDrvDebugFSServices.cs b/src/Ryujinx.HLE/HOS/Services/Nv/INvDrvDebugFSServices.cs
index dffe8783..dffe8783 100644
--- a/Ryujinx.HLE/HOS/Services/Nv/INvDrvDebugFSServices.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Nv/INvDrvDebugFSServices.cs
diff --git a/Ryujinx.HLE/HOS/Services/Nv/INvDrvServices.cs b/src/Ryujinx.HLE/HOS/Services/Nv/INvDrvServices.cs
index 1d075d43..1d075d43 100644
--- a/Ryujinx.HLE/HOS/Services/Nv/INvDrvServices.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Nv/INvDrvServices.cs
diff --git a/Ryujinx.HLE/HOS/Services/Nv/INvGemControl.cs b/src/Ryujinx.HLE/HOS/Services/Nv/INvGemControl.cs
index 7bf99ed1..7bf99ed1 100644
--- a/Ryujinx.HLE/HOS/Services/Nv/INvGemControl.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Nv/INvGemControl.cs
diff --git a/Ryujinx.HLE/HOS/Services/Nv/INvGemCoreDump.cs b/src/Ryujinx.HLE/HOS/Services/Nv/INvGemCoreDump.cs
index ff3774da..ff3774da 100644
--- a/Ryujinx.HLE/HOS/Services/Nv/INvGemCoreDump.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Nv/INvGemCoreDump.cs
diff --git a/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvDeviceFile.cs b/src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvDeviceFile.cs
index 9568fc84..9568fc84 100644
--- a/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvDeviceFile.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvDeviceFile.cs
diff --git a/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostAsGpu/NvHostAsGpuDeviceFile.cs b/src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostAsGpu/NvHostAsGpuDeviceFile.cs
index 0e0fe7f2..0e0fe7f2 100644
--- a/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostAsGpu/NvHostAsGpuDeviceFile.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostAsGpu/NvHostAsGpuDeviceFile.cs
diff --git a/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostAsGpu/Types/AddressSpaceContext.cs b/src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostAsGpu/Types/AddressSpaceContext.cs
index ab9d798e..ab9d798e 100644
--- a/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostAsGpu/Types/AddressSpaceContext.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostAsGpu/Types/AddressSpaceContext.cs
diff --git a/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostAsGpu/Types/AddressSpaceFlags.cs b/src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostAsGpu/Types/AddressSpaceFlags.cs
index 611cf78b..611cf78b 100644
--- a/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostAsGpu/Types/AddressSpaceFlags.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostAsGpu/Types/AddressSpaceFlags.cs
diff --git a/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostAsGpu/Types/AllocSpaceArguments.cs b/src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostAsGpu/Types/AllocSpaceArguments.cs
index d6dbbc26..d6dbbc26 100644
--- a/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostAsGpu/Types/AllocSpaceArguments.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostAsGpu/Types/AllocSpaceArguments.cs
diff --git a/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostAsGpu/Types/BindChannelArguments.cs b/src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostAsGpu/Types/BindChannelArguments.cs
index 9c6568a3..9c6568a3 100644
--- a/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostAsGpu/Types/BindChannelArguments.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostAsGpu/Types/BindChannelArguments.cs
diff --git a/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostAsGpu/Types/FreeSpaceArguments.cs b/src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostAsGpu/Types/FreeSpaceArguments.cs
index b25d295a..b25d295a 100644
--- a/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostAsGpu/Types/FreeSpaceArguments.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostAsGpu/Types/FreeSpaceArguments.cs
diff --git a/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostAsGpu/Types/GetVaRegionsArguments.cs b/src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostAsGpu/Types/GetVaRegionsArguments.cs
index dcb5b49e..dcb5b49e 100644
--- a/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostAsGpu/Types/GetVaRegionsArguments.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostAsGpu/Types/GetVaRegionsArguments.cs
diff --git a/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostAsGpu/Types/InitializeExArguments.cs b/src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostAsGpu/Types/InitializeExArguments.cs
index 882bda59..882bda59 100644
--- a/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostAsGpu/Types/InitializeExArguments.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostAsGpu/Types/InitializeExArguments.cs
diff --git a/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostAsGpu/Types/MapBufferExArguments.cs b/src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostAsGpu/Types/MapBufferExArguments.cs
index 278793a0..278793a0 100644
--- a/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostAsGpu/Types/MapBufferExArguments.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostAsGpu/Types/MapBufferExArguments.cs
diff --git a/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostAsGpu/Types/RemapArguments.cs b/src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostAsGpu/Types/RemapArguments.cs
index bc149d42..bc149d42 100644
--- a/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostAsGpu/Types/RemapArguments.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostAsGpu/Types/RemapArguments.cs
diff --git a/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostAsGpu/Types/UnmapBufferArguments.cs b/src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostAsGpu/Types/UnmapBufferArguments.cs
index 8fc4646e..8fc4646e 100644
--- a/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostAsGpu/Types/UnmapBufferArguments.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostAsGpu/Types/UnmapBufferArguments.cs
diff --git a/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostChannel/ChannelInitialization.cs b/src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostChannel/ChannelInitialization.cs
index 87a06bd3..87a06bd3 100644
--- a/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostChannel/ChannelInitialization.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostChannel/ChannelInitialization.cs
diff --git a/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostChannel/NvHostChannelDeviceFile.cs b/src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostChannel/NvHostChannelDeviceFile.cs
index 9f16a280..9f16a280 100644
--- a/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostChannel/NvHostChannelDeviceFile.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostChannel/NvHostChannelDeviceFile.cs
diff --git a/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostChannel/NvHostGpuDeviceFile.cs b/src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostChannel/NvHostGpuDeviceFile.cs
index f33cc460..f33cc460 100644
--- a/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostChannel/NvHostGpuDeviceFile.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostChannel/NvHostGpuDeviceFile.cs
diff --git a/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostChannel/Types/AllocGpfifoExArguments.cs b/src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostChannel/Types/AllocGpfifoExArguments.cs
index 8e5a1523..8e5a1523 100644
--- a/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostChannel/Types/AllocGpfifoExArguments.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostChannel/Types/AllocGpfifoExArguments.cs
diff --git a/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostChannel/Types/AllocObjCtxArguments.cs b/src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostChannel/Types/AllocObjCtxArguments.cs
index fae91622..fae91622 100644
--- a/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostChannel/Types/AllocObjCtxArguments.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostChannel/Types/AllocObjCtxArguments.cs
diff --git a/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostChannel/Types/GetParameterArguments.cs b/src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostChannel/Types/GetParameterArguments.cs
index 425e665f..425e665f 100644
--- a/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostChannel/Types/GetParameterArguments.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostChannel/Types/GetParameterArguments.cs
diff --git a/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostChannel/Types/MapCommandBufferArguments.cs b/src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostChannel/Types/MapCommandBufferArguments.cs
index 6a7e3da8..6a7e3da8 100644
--- a/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostChannel/Types/MapCommandBufferArguments.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostChannel/Types/MapCommandBufferArguments.cs
diff --git a/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostChannel/Types/NvChannel.cs b/src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostChannel/Types/NvChannel.cs
index 8e2c6ca3..8e2c6ca3 100644
--- a/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostChannel/Types/NvChannel.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostChannel/Types/NvChannel.cs
diff --git a/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostChannel/Types/NvChannelPriority.cs b/src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostChannel/Types/NvChannelPriority.cs
index 4112a9fc..4112a9fc 100644
--- a/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostChannel/Types/NvChannelPriority.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostChannel/Types/NvChannelPriority.cs
diff --git a/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostChannel/Types/SetErrorNotifierArguments.cs b/src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostChannel/Types/SetErrorNotifierArguments.cs
index 1aba53ca..1aba53ca 100644
--- a/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostChannel/Types/SetErrorNotifierArguments.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostChannel/Types/SetErrorNotifierArguments.cs
diff --git a/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostChannel/Types/SubmitArguments.cs b/src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostChannel/Types/SubmitArguments.cs
index 05c4280c..05c4280c 100644
--- a/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostChannel/Types/SubmitArguments.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostChannel/Types/SubmitArguments.cs
diff --git a/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostChannel/Types/SubmitGpfifoArguments.cs b/src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostChannel/Types/SubmitGpfifoArguments.cs
index a10abd4b..a10abd4b 100644
--- a/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostChannel/Types/SubmitGpfifoArguments.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostChannel/Types/SubmitGpfifoArguments.cs
diff --git a/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostChannel/Types/SubmitGpfifoFlags.cs b/src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostChannel/Types/SubmitGpfifoFlags.cs
index d81fd386..d81fd386 100644
--- a/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostChannel/Types/SubmitGpfifoFlags.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostChannel/Types/SubmitGpfifoFlags.cs
diff --git a/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostChannel/Types/ZcullBindArguments.cs b/src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostChannel/Types/ZcullBindArguments.cs
index 19a997f4..19a997f4 100644
--- a/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostChannel/Types/ZcullBindArguments.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostChannel/Types/ZcullBindArguments.cs
diff --git a/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostCtrl/NvHostCtrlDeviceFile.cs b/src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostCtrl/NvHostCtrlDeviceFile.cs
index f130c455..f130c455 100644
--- a/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostCtrl/NvHostCtrlDeviceFile.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostCtrl/NvHostCtrlDeviceFile.cs
diff --git a/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostCtrl/Types/EventWaitArguments.cs b/src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostCtrl/Types/EventWaitArguments.cs
index 16f970e8..16f970e8 100644
--- a/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostCtrl/Types/EventWaitArguments.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostCtrl/Types/EventWaitArguments.cs
diff --git a/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostCtrl/Types/GetConfigurationArguments.cs b/src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostCtrl/Types/GetConfigurationArguments.cs
index 3ee318a3..3ee318a3 100644
--- a/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostCtrl/Types/GetConfigurationArguments.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostCtrl/Types/GetConfigurationArguments.cs
diff --git a/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostCtrl/Types/NvHostEvent.cs b/src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostCtrl/Types/NvHostEvent.cs
index ac5512ed..ac5512ed 100644
--- a/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostCtrl/Types/NvHostEvent.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostCtrl/Types/NvHostEvent.cs
diff --git a/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostCtrl/Types/NvHostEventState.cs b/src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostCtrl/Types/NvHostEventState.cs
index c7b4bc9f..c7b4bc9f 100644
--- a/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostCtrl/Types/NvHostEventState.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostCtrl/Types/NvHostEventState.cs
diff --git a/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostCtrl/Types/NvHostSyncPt.cs b/src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostCtrl/Types/NvHostSyncPt.cs
index 27dd1bd1..27dd1bd1 100644
--- a/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostCtrl/Types/NvHostSyncPt.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostCtrl/Types/NvHostSyncPt.cs
diff --git a/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostCtrl/Types/SyncptWaitArguments.cs b/src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostCtrl/Types/SyncptWaitArguments.cs
index cda97f18..cda97f18 100644
--- a/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostCtrl/Types/SyncptWaitArguments.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostCtrl/Types/SyncptWaitArguments.cs
diff --git a/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostCtrl/Types/SyncptWaitExArguments.cs b/src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostCtrl/Types/SyncptWaitExArguments.cs
index f2279c3d..f2279c3d 100644
--- a/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostCtrl/Types/SyncptWaitExArguments.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostCtrl/Types/SyncptWaitExArguments.cs
diff --git a/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostCtrlGpu/NvHostCtrlGpuDeviceFile.cs b/src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostCtrlGpu/NvHostCtrlGpuDeviceFile.cs
index d6a8e29f..d6a8e29f 100644
--- a/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostCtrlGpu/NvHostCtrlGpuDeviceFile.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostCtrlGpu/NvHostCtrlGpuDeviceFile.cs
diff --git a/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostCtrlGpu/Types/GetActiveSlotMaskArguments.cs b/src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostCtrlGpu/Types/GetActiveSlotMaskArguments.cs
index fd73be9e..fd73be9e 100644
--- a/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostCtrlGpu/Types/GetActiveSlotMaskArguments.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostCtrlGpu/Types/GetActiveSlotMaskArguments.cs
diff --git a/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostCtrlGpu/Types/GetCharacteristicsArguments.cs b/src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostCtrlGpu/Types/GetCharacteristicsArguments.cs
index d6648178..d6648178 100644
--- a/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostCtrlGpu/Types/GetCharacteristicsArguments.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostCtrlGpu/Types/GetCharacteristicsArguments.cs
diff --git a/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostCtrlGpu/Types/GetGpuTimeArguments.cs b/src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostCtrlGpu/Types/GetGpuTimeArguments.cs
index 084ef71f..084ef71f 100644
--- a/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostCtrlGpu/Types/GetGpuTimeArguments.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostCtrlGpu/Types/GetGpuTimeArguments.cs
diff --git a/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostCtrlGpu/Types/GetTpcMasksArguments.cs b/src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostCtrlGpu/Types/GetTpcMasksArguments.cs
index 16ef2d6e..16ef2d6e 100644
--- a/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostCtrlGpu/Types/GetTpcMasksArguments.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostCtrlGpu/Types/GetTpcMasksArguments.cs
diff --git a/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostCtrlGpu/Types/ZbcSetTableArguments.cs b/src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostCtrlGpu/Types/ZbcSetTableArguments.cs
index ed74cc26..ed74cc26 100644
--- a/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostCtrlGpu/Types/ZbcSetTableArguments.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostCtrlGpu/Types/ZbcSetTableArguments.cs
diff --git a/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostCtrlGpu/Types/ZcullGetCtxSizeArguments.cs b/src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostCtrlGpu/Types/ZcullGetCtxSizeArguments.cs
index 1e668f86..1e668f86 100644
--- a/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostCtrlGpu/Types/ZcullGetCtxSizeArguments.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostCtrlGpu/Types/ZcullGetCtxSizeArguments.cs
diff --git a/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostCtrlGpu/Types/ZcullGetInfoArguments.cs b/src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostCtrlGpu/Types/ZcullGetInfoArguments.cs
index d0d152a3..d0d152a3 100644
--- a/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostCtrlGpu/Types/ZcullGetInfoArguments.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostCtrlGpu/Types/ZcullGetInfoArguments.cs
diff --git a/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostDbgGpu/NvHostDbgGpuDeviceFile.cs b/src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostDbgGpu/NvHostDbgGpuDeviceFile.cs
index fe302b98..fe302b98 100644
--- a/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostDbgGpu/NvHostDbgGpuDeviceFile.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostDbgGpu/NvHostDbgGpuDeviceFile.cs
diff --git a/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostProfGpu/NvHostProfGpuDeviceFile.cs b/src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostProfGpu/NvHostProfGpuDeviceFile.cs
index 0a2087ed..0a2087ed 100644
--- a/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostProfGpu/NvHostProfGpuDeviceFile.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostProfGpu/NvHostProfGpuDeviceFile.cs
diff --git a/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvInternalResult.cs b/src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvInternalResult.cs
index 9345baeb..9345baeb 100644
--- a/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvInternalResult.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvInternalResult.cs
diff --git a/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvMap/NvMapDeviceFile.cs b/src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvMap/NvMapDeviceFile.cs
index a52b36a2..a52b36a2 100644
--- a/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvMap/NvMapDeviceFile.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvMap/NvMapDeviceFile.cs
diff --git a/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvMap/Types/NvMapAlloc.cs b/src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvMap/Types/NvMapAlloc.cs
index 2ec75fc9..2ec75fc9 100644
--- a/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvMap/Types/NvMapAlloc.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvMap/Types/NvMapAlloc.cs
diff --git a/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvMap/Types/NvMapCreate.cs b/src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvMap/Types/NvMapCreate.cs
index b47e4629..b47e4629 100644
--- a/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvMap/Types/NvMapCreate.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvMap/Types/NvMapCreate.cs
diff --git a/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvMap/Types/NvMapFree.cs b/src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvMap/Types/NvMapFree.cs
index 34bcbc64..34bcbc64 100644
--- a/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvMap/Types/NvMapFree.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvMap/Types/NvMapFree.cs
diff --git a/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvMap/Types/NvMapFromId.cs b/src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvMap/Types/NvMapFromId.cs
index 2e559534..2e559534 100644
--- a/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvMap/Types/NvMapFromId.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvMap/Types/NvMapFromId.cs
diff --git a/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvMap/Types/NvMapGetId.cs b/src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvMap/Types/NvMapGetId.cs
index fe574eea..fe574eea 100644
--- a/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvMap/Types/NvMapGetId.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvMap/Types/NvMapGetId.cs
diff --git a/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvMap/Types/NvMapHandle.cs b/src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvMap/Types/NvMapHandle.cs
index c97cee49..c97cee49 100644
--- a/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvMap/Types/NvMapHandle.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvMap/Types/NvMapHandle.cs
diff --git a/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvMap/Types/NvMapHandleParam.cs b/src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvMap/Types/NvMapHandleParam.cs
index 61b73cba..61b73cba 100644
--- a/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvMap/Types/NvMapHandleParam.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvMap/Types/NvMapHandleParam.cs
diff --git a/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvMap/Types/NvMapIdDictionary.cs b/src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvMap/Types/NvMapIdDictionary.cs
index c4733e94..c4733e94 100644
--- a/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvMap/Types/NvMapIdDictionary.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvMap/Types/NvMapIdDictionary.cs
diff --git a/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvMap/Types/NvMapParam.cs b/src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvMap/Types/NvMapParam.cs
index de5bab77..de5bab77 100644
--- a/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvMap/Types/NvMapParam.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvMap/Types/NvMapParam.cs
diff --git a/Ryujinx.HLE/HOS/Services/Nv/NvIoctl.cs b/src/Ryujinx.HLE/HOS/Services/Nv/NvIoctl.cs
index 05858694..05858694 100644
--- a/Ryujinx.HLE/HOS/Services/Nv/NvIoctl.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Nv/NvIoctl.cs
diff --git a/Ryujinx.HLE/HOS/Services/Nv/NvMemoryAllocator.cs b/src/Ryujinx.HLE/HOS/Services/Nv/NvMemoryAllocator.cs
index 341b5e57..341b5e57 100644
--- a/Ryujinx.HLE/HOS/Services/Nv/NvMemoryAllocator.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Nv/NvMemoryAllocator.cs
diff --git a/Ryujinx.HLE/HOS/Services/Nv/Types/NvFence.cs b/src/Ryujinx.HLE/HOS/Services/Nv/Types/NvFence.cs
index 664610a4..664610a4 100644
--- a/Ryujinx.HLE/HOS/Services/Nv/Types/NvFence.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Nv/Types/NvFence.cs
diff --git a/Ryujinx.HLE/HOS/Services/Nv/Types/NvIoctlNotImplementedException.cs b/src/Ryujinx.HLE/HOS/Services/Nv/Types/NvIoctlNotImplementedException.cs
index 9404c18c..9404c18c 100644
--- a/Ryujinx.HLE/HOS/Services/Nv/Types/NvIoctlNotImplementedException.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Nv/Types/NvIoctlNotImplementedException.cs
diff --git a/Ryujinx.HLE/HOS/Services/Nv/Types/NvQueryEventNotImplementedException.cs b/src/Ryujinx.HLE/HOS/Services/Nv/Types/NvQueryEventNotImplementedException.cs
index b7a72eba..b7a72eba 100644
--- a/Ryujinx.HLE/HOS/Services/Nv/Types/NvQueryEventNotImplementedException.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Nv/Types/NvQueryEventNotImplementedException.cs
diff --git a/Ryujinx.HLE/HOS/Services/Nv/Types/NvResult.cs b/src/Ryujinx.HLE/HOS/Services/Nv/Types/NvResult.cs
index 1c9cae8c..1c9cae8c 100644
--- a/Ryujinx.HLE/HOS/Services/Nv/Types/NvResult.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Nv/Types/NvResult.cs
diff --git a/Ryujinx.HLE/HOS/Services/Nv/Types/NvStatus.cs b/src/Ryujinx.HLE/HOS/Services/Nv/Types/NvStatus.cs
index d5c35265..d5c35265 100644
--- a/Ryujinx.HLE/HOS/Services/Nv/Types/NvStatus.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Nv/Types/NvStatus.cs
diff --git a/Ryujinx.HLE/HOS/Services/Olsc/IOlscServiceForApplication.cs b/src/Ryujinx.HLE/HOS/Services/Olsc/IOlscServiceForApplication.cs
index 89fe0c3a..89fe0c3a 100644
--- a/Ryujinx.HLE/HOS/Services/Olsc/IOlscServiceForApplication.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Olsc/IOlscServiceForApplication.cs
diff --git a/Ryujinx.HLE/HOS/Services/Olsc/IOlscServiceForSystemService.cs b/src/Ryujinx.HLE/HOS/Services/Olsc/IOlscServiceForSystemService.cs
index 52f74da9..52f74da9 100644
--- a/Ryujinx.HLE/HOS/Services/Olsc/IOlscServiceForSystemService.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Olsc/IOlscServiceForSystemService.cs
diff --git a/Ryujinx.HLE/HOS/Services/Olsc/ResultCode.cs b/src/Ryujinx.HLE/HOS/Services/Olsc/ResultCode.cs
index 141d1ae9..141d1ae9 100644
--- a/Ryujinx.HLE/HOS/Services/Olsc/ResultCode.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Olsc/ResultCode.cs
diff --git a/Ryujinx.HLE/HOS/Services/Ovln/IReceiverService.cs b/src/Ryujinx.HLE/HOS/Services/Ovln/IReceiverService.cs
index 67b82e42..67b82e42 100644
--- a/Ryujinx.HLE/HOS/Services/Ovln/IReceiverService.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Ovln/IReceiverService.cs
diff --git a/Ryujinx.HLE/HOS/Services/Ovln/ISenderService.cs b/src/Ryujinx.HLE/HOS/Services/Ovln/ISenderService.cs
index 70c860e1..70c860e1 100644
--- a/Ryujinx.HLE/HOS/Services/Ovln/ISenderService.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Ovln/ISenderService.cs
diff --git a/Ryujinx.HLE/HOS/Services/Pcie/ILogManager.cs b/src/Ryujinx.HLE/HOS/Services/Pcie/ILogManager.cs
index 9c6387e1..9c6387e1 100644
--- a/Ryujinx.HLE/HOS/Services/Pcie/ILogManager.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Pcie/ILogManager.cs
diff --git a/Ryujinx.HLE/HOS/Services/Pcie/IManager.cs b/src/Ryujinx.HLE/HOS/Services/Pcie/IManager.cs
index f189dc8c..f189dc8c 100644
--- a/Ryujinx.HLE/HOS/Services/Pcie/IManager.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Pcie/IManager.cs
diff --git a/Ryujinx.HLE/HOS/Services/Pctl/IParentalControlServiceFactory.cs b/src/Ryujinx.HLE/HOS/Services/Pctl/IParentalControlServiceFactory.cs
index 990aef09..990aef09 100644
--- a/Ryujinx.HLE/HOS/Services/Pctl/IParentalControlServiceFactory.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Pctl/IParentalControlServiceFactory.cs
diff --git a/Ryujinx.HLE/HOS/Services/Pctl/ParentalControlServiceFactory/IParentalControlService.cs b/src/Ryujinx.HLE/HOS/Services/Pctl/ParentalControlServiceFactory/IParentalControlService.cs
index 594ee4e0..594ee4e0 100644
--- a/Ryujinx.HLE/HOS/Services/Pctl/ParentalControlServiceFactory/IParentalControlService.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Pctl/ParentalControlServiceFactory/IParentalControlService.cs
diff --git a/Ryujinx.HLE/HOS/Services/Pctl/ResultCode.cs b/src/Ryujinx.HLE/HOS/Services/Pctl/ResultCode.cs
index fcf06ee9..fcf06ee9 100644
--- a/Ryujinx.HLE/HOS/Services/Pctl/ResultCode.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Pctl/ResultCode.cs
diff --git a/Ryujinx.HLE/HOS/Services/Pcv/Bpc/IBoardPowerControlManager.cs b/src/Ryujinx.HLE/HOS/Services/Pcv/Bpc/IBoardPowerControlManager.cs
index 7d0222d5..7d0222d5 100644
--- a/Ryujinx.HLE/HOS/Services/Pcv/Bpc/IBoardPowerControlManager.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Pcv/Bpc/IBoardPowerControlManager.cs
diff --git a/Ryujinx.HLE/HOS/Services/Pcv/Bpc/IRtcManager.cs b/src/Ryujinx.HLE/HOS/Services/Pcv/Bpc/IRtcManager.cs
index e185c478..e185c478 100644
--- a/Ryujinx.HLE/HOS/Services/Pcv/Bpc/IRtcManager.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Pcv/Bpc/IRtcManager.cs
diff --git a/Ryujinx.HLE/HOS/Services/Pcv/Clkrst/ClkrstManager/IClkrstSession.cs b/src/Ryujinx.HLE/HOS/Services/Pcv/Clkrst/ClkrstManager/IClkrstSession.cs
index b81e7fee..b81e7fee 100644
--- a/Ryujinx.HLE/HOS/Services/Pcv/Clkrst/ClkrstManager/IClkrstSession.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Pcv/Clkrst/ClkrstManager/IClkrstSession.cs
diff --git a/Ryujinx.HLE/HOS/Services/Pcv/Clkrst/IArbitrationManager.cs b/src/Ryujinx.HLE/HOS/Services/Pcv/Clkrst/IArbitrationManager.cs
index 6f1e5d25..6f1e5d25 100644
--- a/Ryujinx.HLE/HOS/Services/Pcv/Clkrst/IArbitrationManager.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Pcv/Clkrst/IArbitrationManager.cs
diff --git a/Ryujinx.HLE/HOS/Services/Pcv/Clkrst/IClkrstManager.cs b/src/Ryujinx.HLE/HOS/Services/Pcv/Clkrst/IClkrstManager.cs
index 4ba2f094..4ba2f094 100644
--- a/Ryujinx.HLE/HOS/Services/Pcv/Clkrst/IClkrstManager.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Pcv/Clkrst/IClkrstManager.cs
diff --git a/Ryujinx.HLE/HOS/Services/Pcv/IPcvService.cs b/src/Ryujinx.HLE/HOS/Services/Pcv/IPcvService.cs
index 0e74dc3e..0e74dc3e 100644
--- a/Ryujinx.HLE/HOS/Services/Pcv/IPcvService.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Pcv/IPcvService.cs
diff --git a/Ryujinx.HLE/HOS/Services/Pcv/ResultCode.cs b/src/Ryujinx.HLE/HOS/Services/Pcv/ResultCode.cs
index 2041e423..2041e423 100644
--- a/Ryujinx.HLE/HOS/Services/Pcv/ResultCode.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Pcv/ResultCode.cs
diff --git a/Ryujinx.HLE/HOS/Services/Pcv/Rgltr/IRegulatorManager.cs b/src/Ryujinx.HLE/HOS/Services/Pcv/Rgltr/IRegulatorManager.cs
index f7834777..f7834777 100644
--- a/Ryujinx.HLE/HOS/Services/Pcv/Rgltr/IRegulatorManager.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Pcv/Rgltr/IRegulatorManager.cs
diff --git a/Ryujinx.HLE/HOS/Services/Pcv/Rtc/IRtcManager.cs b/src/Ryujinx.HLE/HOS/Services/Pcv/Rtc/IRtcManager.cs
index 2b4a1239..2b4a1239 100644
--- a/Ryujinx.HLE/HOS/Services/Pcv/Rtc/IRtcManager.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Pcv/Rtc/IRtcManager.cs
diff --git a/Ryujinx.HLE/HOS/Services/Pcv/Types/DeviceCode.cs b/src/Ryujinx.HLE/HOS/Services/Pcv/Types/DeviceCode.cs
index 5380d82f..5380d82f 100644
--- a/Ryujinx.HLE/HOS/Services/Pcv/Types/DeviceCode.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Pcv/Types/DeviceCode.cs
diff --git a/Ryujinx.HLE/HOS/Services/Pm/IBootModeInterface.cs b/src/Ryujinx.HLE/HOS/Services/Pm/IBootModeInterface.cs
index 45771db6..45771db6 100644
--- a/Ryujinx.HLE/HOS/Services/Pm/IBootModeInterface.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Pm/IBootModeInterface.cs
diff --git a/Ryujinx.HLE/HOS/Services/Pm/IDebugMonitorInterface.cs b/src/Ryujinx.HLE/HOS/Services/Pm/IDebugMonitorInterface.cs
index cce2967a..cce2967a 100644
--- a/Ryujinx.HLE/HOS/Services/Pm/IDebugMonitorInterface.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Pm/IDebugMonitorInterface.cs
diff --git a/Ryujinx.HLE/HOS/Services/Pm/IInformationInterface.cs b/src/Ryujinx.HLE/HOS/Services/Pm/IInformationInterface.cs
index b3b5595f..b3b5595f 100644
--- a/Ryujinx.HLE/HOS/Services/Pm/IInformationInterface.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Pm/IInformationInterface.cs
diff --git a/Ryujinx.HLE/HOS/Services/Pm/IShellInterface.cs b/src/Ryujinx.HLE/HOS/Services/Pm/IShellInterface.cs
index 96202326..96202326 100644
--- a/Ryujinx.HLE/HOS/Services/Pm/IShellInterface.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Pm/IShellInterface.cs
diff --git a/Ryujinx.HLE/HOS/Services/Pm/ResultCode.cs b/src/Ryujinx.HLE/HOS/Services/Pm/ResultCode.cs
index 92b5925e..92b5925e 100644
--- a/Ryujinx.HLE/HOS/Services/Pm/ResultCode.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Pm/ResultCode.cs
diff --git a/Ryujinx.HLE/HOS/Services/Psc/IPmControl.cs b/src/Ryujinx.HLE/HOS/Services/Psc/IPmControl.cs
index 3810c282..3810c282 100644
--- a/Ryujinx.HLE/HOS/Services/Psc/IPmControl.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Psc/IPmControl.cs
diff --git a/Ryujinx.HLE/HOS/Services/Psc/IPmService.cs b/src/Ryujinx.HLE/HOS/Services/Psc/IPmService.cs
index c8dfb32e..c8dfb32e 100644
--- a/Ryujinx.HLE/HOS/Services/Psc/IPmService.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Psc/IPmService.cs
diff --git a/Ryujinx.HLE/HOS/Services/Psc/IPmUnknown.cs b/src/Ryujinx.HLE/HOS/Services/Psc/IPmUnknown.cs
index ef48fa41..ef48fa41 100644
--- a/Ryujinx.HLE/HOS/Services/Psc/IPmUnknown.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Psc/IPmUnknown.cs
diff --git a/Ryujinx.HLE/HOS/Services/Ptm/Fan/IManager.cs b/src/Ryujinx.HLE/HOS/Services/Ptm/Fan/IManager.cs
index e2fe2235..e2fe2235 100644
--- a/Ryujinx.HLE/HOS/Services/Ptm/Fan/IManager.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Ptm/Fan/IManager.cs
diff --git a/Ryujinx.HLE/HOS/Services/Ptm/Fgm/IDebugger.cs b/src/Ryujinx.HLE/HOS/Services/Ptm/Fgm/IDebugger.cs
index a93f5283..a93f5283 100644
--- a/Ryujinx.HLE/HOS/Services/Ptm/Fgm/IDebugger.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Ptm/Fgm/IDebugger.cs
diff --git a/Ryujinx.HLE/HOS/Services/Ptm/Fgm/ISession.cs b/src/Ryujinx.HLE/HOS/Services/Ptm/Fgm/ISession.cs
index 0e3f965b..0e3f965b 100644
--- a/Ryujinx.HLE/HOS/Services/Ptm/Fgm/ISession.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Ptm/Fgm/ISession.cs
diff --git a/Ryujinx.HLE/HOS/Services/Ptm/Pcm/IManager.cs b/src/Ryujinx.HLE/HOS/Services/Ptm/Pcm/IManager.cs
index 0bec45fa..0bec45fa 100644
--- a/Ryujinx.HLE/HOS/Services/Ptm/Pcm/IManager.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Ptm/Pcm/IManager.cs
diff --git a/Ryujinx.HLE/HOS/Services/Ptm/Psm/IPsmServer.cs b/src/Ryujinx.HLE/HOS/Services/Ptm/Psm/IPsmServer.cs
index 4e3d3e8e..4e3d3e8e 100644
--- a/Ryujinx.HLE/HOS/Services/Ptm/Psm/IPsmServer.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Ptm/Psm/IPsmServer.cs
diff --git a/Ryujinx.HLE/HOS/Services/Ptm/Psm/IPsmSession.cs b/src/Ryujinx.HLE/HOS/Services/Ptm/Psm/IPsmSession.cs
index 5d11f227..5d11f227 100644
--- a/Ryujinx.HLE/HOS/Services/Ptm/Psm/IPsmSession.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Ptm/Psm/IPsmSession.cs
diff --git a/Ryujinx.HLE/HOS/Services/Ptm/Psm/Types/ChargerType.cs b/src/Ryujinx.HLE/HOS/Services/Ptm/Psm/Types/ChargerType.cs
index 3e239711..3e239711 100644
--- a/Ryujinx.HLE/HOS/Services/Ptm/Psm/Types/ChargerType.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Ptm/Psm/Types/ChargerType.cs
diff --git a/Ryujinx.HLE/HOS/Services/Ptm/Tc/IManager.cs b/src/Ryujinx.HLE/HOS/Services/Ptm/Tc/IManager.cs
index 1daa4f5e..1daa4f5e 100644
--- a/Ryujinx.HLE/HOS/Services/Ptm/Tc/IManager.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Ptm/Tc/IManager.cs
diff --git a/Ryujinx.HLE/HOS/Services/Ptm/Ts/IMeasurementServer.cs b/src/Ryujinx.HLE/HOS/Services/Ptm/Ts/IMeasurementServer.cs
index 6ddc0aef..6ddc0aef 100644
--- a/Ryujinx.HLE/HOS/Services/Ptm/Ts/IMeasurementServer.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Ptm/Ts/IMeasurementServer.cs
diff --git a/Ryujinx.HLE/HOS/Services/Ptm/Ts/Types/Location.cs b/src/Ryujinx.HLE/HOS/Services/Ptm/Ts/Types/Location.cs
index e72491d5..e72491d5 100644
--- a/Ryujinx.HLE/HOS/Services/Ptm/Ts/Types/Location.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Ptm/Ts/Types/Location.cs
diff --git a/Ryujinx.HLE/HOS/Services/Ro/IRoInterface.cs b/src/Ryujinx.HLE/HOS/Services/Ro/IRoInterface.cs
index 966adcff..966adcff 100644
--- a/Ryujinx.HLE/HOS/Services/Ro/IRoInterface.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Ro/IRoInterface.cs
diff --git a/Ryujinx.HLE/HOS/Services/Ro/ResultCode.cs b/src/Ryujinx.HLE/HOS/Services/Ro/ResultCode.cs
index 92bb5502..92bb5502 100644
--- a/Ryujinx.HLE/HOS/Services/Ro/ResultCode.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Ro/ResultCode.cs
diff --git a/Ryujinx.HLE/HOS/Services/Ro/Types/NRRCertification.cs b/src/Ryujinx.HLE/HOS/Services/Ro/Types/NRRCertification.cs
index 8c56adb9..8c56adb9 100644
--- a/Ryujinx.HLE/HOS/Services/Ro/Types/NRRCertification.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Ro/Types/NRRCertification.cs
diff --git a/Ryujinx.HLE/HOS/Services/Ro/Types/NroInfo.cs b/src/Ryujinx.HLE/HOS/Services/Ro/Types/NroInfo.cs
index 45daf1bd..45daf1bd 100644
--- a/Ryujinx.HLE/HOS/Services/Ro/Types/NroInfo.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Ro/Types/NroInfo.cs
diff --git a/Ryujinx.HLE/HOS/Services/Ro/Types/NrrHeader.cs b/src/Ryujinx.HLE/HOS/Services/Ro/Types/NrrHeader.cs
index dbbcb151..dbbcb151 100644
--- a/Ryujinx.HLE/HOS/Services/Ro/Types/NrrHeader.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Ro/Types/NrrHeader.cs
diff --git a/Ryujinx.HLE/HOS/Services/Ro/Types/NrrInfo.cs b/src/Ryujinx.HLE/HOS/Services/Ro/Types/NrrInfo.cs
index 45c34f1c..45c34f1c 100644
--- a/Ryujinx.HLE/HOS/Services/Ro/Types/NrrInfo.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Ro/Types/NrrInfo.cs
diff --git a/Ryujinx.HLE/HOS/Services/Sdb/Avm/IAvmService.cs b/src/Ryujinx.HLE/HOS/Services/Sdb/Avm/IAvmService.cs
index d65c8bba..d65c8bba 100644
--- a/Ryujinx.HLE/HOS/Services/Sdb/Avm/IAvmService.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Sdb/Avm/IAvmService.cs
diff --git a/Ryujinx.HLE/HOS/Services/Sdb/Pdm/INotifyService.cs b/src/Ryujinx.HLE/HOS/Services/Sdb/Pdm/INotifyService.cs
index 5247a238..5247a238 100644
--- a/Ryujinx.HLE/HOS/Services/Sdb/Pdm/INotifyService.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Sdb/Pdm/INotifyService.cs
diff --git a/Ryujinx.HLE/HOS/Services/Sdb/Pdm/IQueryService.cs b/src/Ryujinx.HLE/HOS/Services/Sdb/Pdm/IQueryService.cs
index 1f66ff9d..1f66ff9d 100644
--- a/Ryujinx.HLE/HOS/Services/Sdb/Pdm/IQueryService.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Sdb/Pdm/IQueryService.cs
diff --git a/Ryujinx.HLE/HOS/Services/Sdb/Pdm/QueryService/QueryPlayStatisticsManager.cs b/src/Ryujinx.HLE/HOS/Services/Sdb/Pdm/QueryService/QueryPlayStatisticsManager.cs
index 52a07d46..52a07d46 100644
--- a/Ryujinx.HLE/HOS/Services/Sdb/Pdm/QueryService/QueryPlayStatisticsManager.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Sdb/Pdm/QueryService/QueryPlayStatisticsManager.cs
diff --git a/Ryujinx.HLE/HOS/Services/Sdb/Pdm/QueryService/Types/ApplicationPlayStatistics.cs b/src/Ryujinx.HLE/HOS/Services/Sdb/Pdm/QueryService/Types/ApplicationPlayStatistics.cs
index c28d757e..c28d757e 100644
--- a/Ryujinx.HLE/HOS/Services/Sdb/Pdm/QueryService/Types/ApplicationPlayStatistics.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Sdb/Pdm/QueryService/Types/ApplicationPlayStatistics.cs
diff --git a/Ryujinx.HLE/HOS/Services/Sdb/Pdm/QueryService/Types/PlayLogQueryCapability.cs b/src/Ryujinx.HLE/HOS/Services/Sdb/Pdm/QueryService/Types/PlayLogQueryCapability.cs
index 9e4b85de..9e4b85de 100644
--- a/Ryujinx.HLE/HOS/Services/Sdb/Pdm/QueryService/Types/PlayLogQueryCapability.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Sdb/Pdm/QueryService/Types/PlayLogQueryCapability.cs
diff --git a/Ryujinx.HLE/HOS/Services/Sdb/Pdm/ResultCode.cs b/src/Ryujinx.HLE/HOS/Services/Sdb/Pdm/ResultCode.cs
index c337051b..c337051b 100644
--- a/Ryujinx.HLE/HOS/Services/Sdb/Pdm/ResultCode.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Sdb/Pdm/ResultCode.cs
diff --git a/Ryujinx.HLE/HOS/Services/Sdb/Pl/ISharedFontManager.cs b/src/Ryujinx.HLE/HOS/Services/Sdb/Pl/ISharedFontManager.cs
index 9e2f7a4e..9e2f7a4e 100644
--- a/Ryujinx.HLE/HOS/Services/Sdb/Pl/ISharedFontManager.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Sdb/Pl/ISharedFontManager.cs
diff --git a/Ryujinx.HLE/HOS/Services/Sdb/Pl/SharedFontManager.cs b/src/Ryujinx.HLE/HOS/Services/Sdb/Pl/SharedFontManager.cs
index fef82cbc..fef82cbc 100644
--- a/Ryujinx.HLE/HOS/Services/Sdb/Pl/SharedFontManager.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Sdb/Pl/SharedFontManager.cs
diff --git a/Ryujinx.HLE/HOS/Services/Sdb/Pl/Types/SharedFontType.cs b/src/Ryujinx.HLE/HOS/Services/Sdb/Pl/Types/SharedFontType.cs
index 90ee4f03..90ee4f03 100644
--- a/Ryujinx.HLE/HOS/Services/Sdb/Pl/Types/SharedFontType.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Sdb/Pl/Types/SharedFontType.cs
diff --git a/Ryujinx.HLE/HOS/Services/ServerBase.cs b/src/Ryujinx.HLE/HOS/Services/ServerBase.cs
index b994679a..b994679a 100644
--- a/Ryujinx.HLE/HOS/Services/ServerBase.cs
+++ b/src/Ryujinx.HLE/HOS/Services/ServerBase.cs
diff --git a/Ryujinx.HLE/HOS/Services/ServiceAttributes.cs b/src/Ryujinx.HLE/HOS/Services/ServiceAttributes.cs
index 1b896a27..1b896a27 100644
--- a/Ryujinx.HLE/HOS/Services/ServiceAttributes.cs
+++ b/src/Ryujinx.HLE/HOS/Services/ServiceAttributes.cs
diff --git a/Ryujinx.HLE/HOS/Services/Settings/IFactorySettingsServer.cs b/src/Ryujinx.HLE/HOS/Services/Settings/IFactorySettingsServer.cs
index 4dd344f8..4dd344f8 100644
--- a/Ryujinx.HLE/HOS/Services/Settings/IFactorySettingsServer.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Settings/IFactorySettingsServer.cs
diff --git a/Ryujinx.HLE/HOS/Services/Settings/IFirmwareDebugSettingsServer.cs b/src/Ryujinx.HLE/HOS/Services/Settings/IFirmwareDebugSettingsServer.cs
index 3b7e1af2..3b7e1af2 100644
--- a/Ryujinx.HLE/HOS/Services/Settings/IFirmwareDebugSettingsServer.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Settings/IFirmwareDebugSettingsServer.cs
diff --git a/Ryujinx.HLE/HOS/Services/Settings/ISettingsServer.cs b/src/Ryujinx.HLE/HOS/Services/Settings/ISettingsServer.cs
index 17e9ec68..17e9ec68 100644
--- a/Ryujinx.HLE/HOS/Services/Settings/ISettingsServer.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Settings/ISettingsServer.cs
diff --git a/Ryujinx.HLE/HOS/Services/Settings/ISystemSettingsServer.cs b/src/Ryujinx.HLE/HOS/Services/Settings/ISystemSettingsServer.cs
index ef95fa5c..ef95fa5c 100644
--- a/Ryujinx.HLE/HOS/Services/Settings/ISystemSettingsServer.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Settings/ISystemSettingsServer.cs
diff --git a/Ryujinx.HLE/HOS/Services/Settings/KeyCodeMaps.cs b/src/Ryujinx.HLE/HOS/Services/Settings/KeyCodeMaps.cs
index 67d1ac92..67d1ac92 100644
--- a/Ryujinx.HLE/HOS/Services/Settings/KeyCodeMaps.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Settings/KeyCodeMaps.cs
diff --git a/Ryujinx.HLE/HOS/Services/Settings/NxSettings.cs b/src/Ryujinx.HLE/HOS/Services/Settings/NxSettings.cs
index e5f218a6..e5f218a6 100644
--- a/Ryujinx.HLE/HOS/Services/Settings/NxSettings.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Settings/NxSettings.cs
diff --git a/Ryujinx.HLE/HOS/Services/Settings/ResultCode.cs b/src/Ryujinx.HLE/HOS/Services/Settings/ResultCode.cs
index 8b0fde6c..8b0fde6c 100644
--- a/Ryujinx.HLE/HOS/Services/Settings/ResultCode.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Settings/ResultCode.cs
diff --git a/Ryujinx.HLE/HOS/Services/Settings/Types/PlatformRegion.cs b/src/Ryujinx.HLE/HOS/Services/Settings/Types/PlatformRegion.cs
index b8ef8e8e..b8ef8e8e 100644
--- a/Ryujinx.HLE/HOS/Services/Settings/Types/PlatformRegion.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Settings/Types/PlatformRegion.cs
diff --git a/Ryujinx.HLE/HOS/Services/Sm/IManagerInterface.cs b/src/Ryujinx.HLE/HOS/Services/Sm/IManagerInterface.cs
index f867f23a..f867f23a 100644
--- a/Ryujinx.HLE/HOS/Services/Sm/IManagerInterface.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Sm/IManagerInterface.cs
diff --git a/Ryujinx.HLE/HOS/Services/Sm/IUserInterface.cs b/src/Ryujinx.HLE/HOS/Services/Sm/IUserInterface.cs
index 005ec32d..005ec32d 100644
--- a/Ryujinx.HLE/HOS/Services/Sm/IUserInterface.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Sm/IUserInterface.cs
diff --git a/Ryujinx.HLE/HOS/Services/Sm/ResultCode.cs b/src/Ryujinx.HLE/HOS/Services/Sm/ResultCode.cs
index f72bf010..f72bf010 100644
--- a/Ryujinx.HLE/HOS/Services/Sm/ResultCode.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Sm/ResultCode.cs
diff --git a/Ryujinx.HLE/HOS/Services/Sm/SmRegistry.cs b/src/Ryujinx.HLE/HOS/Services/Sm/SmRegistry.cs
index e62e0eb5..e62e0eb5 100644
--- a/Ryujinx.HLE/HOS/Services/Sm/SmRegistry.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Sm/SmRegistry.cs
diff --git a/Ryujinx.HLE/HOS/Services/Sockets/Bsd/BsdContext.cs b/src/Ryujinx.HLE/HOS/Services/Sockets/Bsd/BsdContext.cs
index a93f176a..a93f176a 100644
--- a/Ryujinx.HLE/HOS/Services/Sockets/Bsd/BsdContext.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Sockets/Bsd/BsdContext.cs
diff --git a/Ryujinx.HLE/HOS/Services/Sockets/Bsd/IClient.cs b/src/Ryujinx.HLE/HOS/Services/Sockets/Bsd/IClient.cs
index b63864c9..b63864c9 100644
--- a/Ryujinx.HLE/HOS/Services/Sockets/Bsd/IClient.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Sockets/Bsd/IClient.cs
diff --git a/Ryujinx.HLE/HOS/Services/Sockets/Bsd/IFileDescriptor.cs b/src/Ryujinx.HLE/HOS/Services/Sockets/Bsd/IFileDescriptor.cs
index 9d4f81ce..9d4f81ce 100644
--- a/Ryujinx.HLE/HOS/Services/Sockets/Bsd/IFileDescriptor.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Sockets/Bsd/IFileDescriptor.cs
diff --git a/Ryujinx.HLE/HOS/Services/Sockets/Bsd/ISocket.cs b/src/Ryujinx.HLE/HOS/Services/Sockets/Bsd/ISocket.cs
index 05874868..05874868 100644
--- a/Ryujinx.HLE/HOS/Services/Sockets/Bsd/ISocket.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Sockets/Bsd/ISocket.cs
diff --git a/Ryujinx.HLE/HOS/Services/Sockets/Bsd/Impl/EventFileDescriptor.cs b/src/Ryujinx.HLE/HOS/Services/Sockets/Bsd/Impl/EventFileDescriptor.cs
index 6514d485..6514d485 100644
--- a/Ryujinx.HLE/HOS/Services/Sockets/Bsd/Impl/EventFileDescriptor.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Sockets/Bsd/Impl/EventFileDescriptor.cs
diff --git a/Ryujinx.HLE/HOS/Services/Sockets/Bsd/Impl/EventFileDescriptorPollManager.cs b/src/Ryujinx.HLE/HOS/Services/Sockets/Bsd/Impl/EventFileDescriptorPollManager.cs
index e0ab68c6..e0ab68c6 100644
--- a/Ryujinx.HLE/HOS/Services/Sockets/Bsd/Impl/EventFileDescriptorPollManager.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Sockets/Bsd/Impl/EventFileDescriptorPollManager.cs
diff --git a/Ryujinx.HLE/HOS/Services/Sockets/Bsd/Impl/ManagedSocket.cs b/src/Ryujinx.HLE/HOS/Services/Sockets/Bsd/Impl/ManagedSocket.cs
index 75efc49a..75efc49a 100644
--- a/Ryujinx.HLE/HOS/Services/Sockets/Bsd/Impl/ManagedSocket.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Sockets/Bsd/Impl/ManagedSocket.cs
diff --git a/Ryujinx.HLE/HOS/Services/Sockets/Bsd/Impl/ManagedSocketPollManager.cs b/src/Ryujinx.HLE/HOS/Services/Sockets/Bsd/Impl/ManagedSocketPollManager.cs
index 1b305dfb..1b305dfb 100644
--- a/Ryujinx.HLE/HOS/Services/Sockets/Bsd/Impl/ManagedSocketPollManager.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Sockets/Bsd/Impl/ManagedSocketPollManager.cs
diff --git a/Ryujinx.HLE/HOS/Services/Sockets/Bsd/Impl/WSAError.cs b/src/Ryujinx.HLE/HOS/Services/Sockets/Bsd/Impl/WSAError.cs
index 0f24a57f..0f24a57f 100644
--- a/Ryujinx.HLE/HOS/Services/Sockets/Bsd/Impl/WSAError.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Sockets/Bsd/Impl/WSAError.cs
diff --git a/Ryujinx.HLE/HOS/Services/Sockets/Bsd/Impl/WinSockHelper.cs b/src/Ryujinx.HLE/HOS/Services/Sockets/Bsd/Impl/WinSockHelper.cs
index 5668d30b..5668d30b 100644
--- a/Ryujinx.HLE/HOS/Services/Sockets/Bsd/Impl/WinSockHelper.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Sockets/Bsd/Impl/WinSockHelper.cs
diff --git a/Ryujinx.HLE/HOS/Services/Sockets/Bsd/ServerInterface.cs b/src/Ryujinx.HLE/HOS/Services/Sockets/Bsd/ServerInterface.cs
index 798fc015..798fc015 100644
--- a/Ryujinx.HLE/HOS/Services/Sockets/Bsd/ServerInterface.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Sockets/Bsd/ServerInterface.cs
diff --git a/Ryujinx.HLE/HOS/Services/Sockets/Bsd/Types/BsdAddressFamily.cs b/src/Ryujinx.HLE/HOS/Services/Sockets/Bsd/Types/BsdAddressFamily.cs
index 37461bb2..37461bb2 100644
--- a/Ryujinx.HLE/HOS/Services/Sockets/Bsd/Types/BsdAddressFamily.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Sockets/Bsd/Types/BsdAddressFamily.cs
diff --git a/Ryujinx.HLE/HOS/Services/Sockets/Bsd/Types/BsdIoctl.cs b/src/Ryujinx.HLE/HOS/Services/Sockets/Bsd/Types/BsdIoctl.cs
index 1dfa5a5f..1dfa5a5f 100644
--- a/Ryujinx.HLE/HOS/Services/Sockets/Bsd/Types/BsdIoctl.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Sockets/Bsd/Types/BsdIoctl.cs
diff --git a/Ryujinx.HLE/HOS/Services/Sockets/Bsd/Types/BsdMMsgHdr.cs b/src/Ryujinx.HLE/HOS/Services/Sockets/Bsd/Types/BsdMMsgHdr.cs
index f97b8f5b..f97b8f5b 100644
--- a/Ryujinx.HLE/HOS/Services/Sockets/Bsd/Types/BsdMMsgHdr.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Sockets/Bsd/Types/BsdMMsgHdr.cs
diff --git a/Ryujinx.HLE/HOS/Services/Sockets/Bsd/Types/BsdMsgHdr.cs b/src/Ryujinx.HLE/HOS/Services/Sockets/Bsd/Types/BsdMsgHdr.cs
index 07c97182..07c97182 100644
--- a/Ryujinx.HLE/HOS/Services/Sockets/Bsd/Types/BsdMsgHdr.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Sockets/Bsd/Types/BsdMsgHdr.cs
diff --git a/Ryujinx.HLE/HOS/Services/Sockets/Bsd/Types/BsdSockAddr.cs b/src/Ryujinx.HLE/HOS/Services/Sockets/Bsd/Types/BsdSockAddr.cs
index 67c11e54..67c11e54 100644
--- a/Ryujinx.HLE/HOS/Services/Sockets/Bsd/Types/BsdSockAddr.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Sockets/Bsd/Types/BsdSockAddr.cs
diff --git a/Ryujinx.HLE/HOS/Services/Sockets/Bsd/Types/BsdSocketCreationFlags.cs b/src/Ryujinx.HLE/HOS/Services/Sockets/Bsd/Types/BsdSocketCreationFlags.cs
index be5991ff..be5991ff 100644
--- a/Ryujinx.HLE/HOS/Services/Sockets/Bsd/Types/BsdSocketCreationFlags.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Sockets/Bsd/Types/BsdSocketCreationFlags.cs
diff --git a/Ryujinx.HLE/HOS/Services/Sockets/Bsd/Types/BsdSocketFlags.cs b/src/Ryujinx.HLE/HOS/Services/Sockets/Bsd/Types/BsdSocketFlags.cs
index 4408c89a..4408c89a 100644
--- a/Ryujinx.HLE/HOS/Services/Sockets/Bsd/Types/BsdSocketFlags.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Sockets/Bsd/Types/BsdSocketFlags.cs
diff --git a/Ryujinx.HLE/HOS/Services/Sockets/Bsd/Types/BsdSocketOption.cs b/src/Ryujinx.HLE/HOS/Services/Sockets/Bsd/Types/BsdSocketOption.cs
index 4d0d1dcf..4d0d1dcf 100644
--- a/Ryujinx.HLE/HOS/Services/Sockets/Bsd/Types/BsdSocketOption.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Sockets/Bsd/Types/BsdSocketOption.cs
diff --git a/Ryujinx.HLE/HOS/Services/Sockets/Bsd/Types/BsdSocketShutdownFlags.cs b/src/Ryujinx.HLE/HOS/Services/Sockets/Bsd/Types/BsdSocketShutdownFlags.cs
index 13230ac3..13230ac3 100644
--- a/Ryujinx.HLE/HOS/Services/Sockets/Bsd/Types/BsdSocketShutdownFlags.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Sockets/Bsd/Types/BsdSocketShutdownFlags.cs
diff --git a/Ryujinx.HLE/HOS/Services/Sockets/Bsd/Types/BsdSocketType.cs b/src/Ryujinx.HLE/HOS/Services/Sockets/Bsd/Types/BsdSocketType.cs
index b54c7886..b54c7886 100644
--- a/Ryujinx.HLE/HOS/Services/Sockets/Bsd/Types/BsdSocketType.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Sockets/Bsd/Types/BsdSocketType.cs
diff --git a/Ryujinx.HLE/HOS/Services/Sockets/Bsd/Types/EventFdFlags.cs b/src/Ryujinx.HLE/HOS/Services/Sockets/Bsd/Types/EventFdFlags.cs
index e01d8226..e01d8226 100644
--- a/Ryujinx.HLE/HOS/Services/Sockets/Bsd/Types/EventFdFlags.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Sockets/Bsd/Types/EventFdFlags.cs
diff --git a/Ryujinx.HLE/HOS/Services/Sockets/Bsd/Types/IPollManager.cs b/src/Ryujinx.HLE/HOS/Services/Sockets/Bsd/Types/IPollManager.cs
index d3663878..d3663878 100644
--- a/Ryujinx.HLE/HOS/Services/Sockets/Bsd/Types/IPollManager.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Sockets/Bsd/Types/IPollManager.cs
diff --git a/Ryujinx.HLE/HOS/Services/Sockets/Bsd/Types/LinuxError.cs b/src/Ryujinx.HLE/HOS/Services/Sockets/Bsd/Types/LinuxError.cs
index 96602830..96602830 100644
--- a/Ryujinx.HLE/HOS/Services/Sockets/Bsd/Types/LinuxError.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Sockets/Bsd/Types/LinuxError.cs
diff --git a/Ryujinx.HLE/HOS/Services/Sockets/Bsd/Types/PollEvent.cs b/src/Ryujinx.HLE/HOS/Services/Sockets/Bsd/Types/PollEvent.cs
index 8b77a6c2..8b77a6c2 100644
--- a/Ryujinx.HLE/HOS/Services/Sockets/Bsd/Types/PollEvent.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Sockets/Bsd/Types/PollEvent.cs
diff --git a/Ryujinx.HLE/HOS/Services/Sockets/Bsd/Types/PollEventData.cs b/src/Ryujinx.HLE/HOS/Services/Sockets/Bsd/Types/PollEventData.cs
index 546b738e..546b738e 100644
--- a/Ryujinx.HLE/HOS/Services/Sockets/Bsd/Types/PollEventData.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Sockets/Bsd/Types/PollEventData.cs
diff --git a/Ryujinx.HLE/HOS/Services/Sockets/Bsd/Types/PollEventTypeMask.cs b/src/Ryujinx.HLE/HOS/Services/Sockets/Bsd/Types/PollEventTypeMask.cs
index f434fa03..f434fa03 100644
--- a/Ryujinx.HLE/HOS/Services/Sockets/Bsd/Types/PollEventTypeMask.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Sockets/Bsd/Types/PollEventTypeMask.cs
diff --git a/Ryujinx.HLE/HOS/Services/Sockets/Bsd/Types/TimeVal.cs b/src/Ryujinx.HLE/HOS/Services/Sockets/Bsd/Types/TimeVal.cs
index 690a63ae..690a63ae 100644
--- a/Ryujinx.HLE/HOS/Services/Sockets/Bsd/Types/TimeVal.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Sockets/Bsd/Types/TimeVal.cs
diff --git a/Ryujinx.HLE/HOS/Services/Sockets/Ethc/IEthInterface.cs b/src/Ryujinx.HLE/HOS/Services/Sockets/Ethc/IEthInterface.cs
index f5877697..f5877697 100644
--- a/Ryujinx.HLE/HOS/Services/Sockets/Ethc/IEthInterface.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Sockets/Ethc/IEthInterface.cs
diff --git a/Ryujinx.HLE/HOS/Services/Sockets/Ethc/IEthInterfaceGroup.cs b/src/Ryujinx.HLE/HOS/Services/Sockets/Ethc/IEthInterfaceGroup.cs
index 9832e448..9832e448 100644
--- a/Ryujinx.HLE/HOS/Services/Sockets/Ethc/IEthInterfaceGroup.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Sockets/Ethc/IEthInterfaceGroup.cs
diff --git a/Ryujinx.HLE/HOS/Services/Sockets/Nsd/IManager.cs b/src/Ryujinx.HLE/HOS/Services/Sockets/Nsd/IManager.cs
index 0b7adff4..0b7adff4 100644
--- a/Ryujinx.HLE/HOS/Services/Sockets/Nsd/IManager.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Sockets/Nsd/IManager.cs
diff --git a/Ryujinx.HLE/HOS/Services/Sockets/Nsd/Manager/FqdnResolver.cs b/src/Ryujinx.HLE/HOS/Services/Sockets/Nsd/Manager/FqdnResolver.cs
index 4096e431..4096e431 100644
--- a/Ryujinx.HLE/HOS/Services/Sockets/Nsd/Manager/FqdnResolver.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Sockets/Nsd/Manager/FqdnResolver.cs
diff --git a/Ryujinx.HLE/HOS/Services/Sockets/Nsd/ResultCode.cs b/src/Ryujinx.HLE/HOS/Services/Sockets/Nsd/ResultCode.cs
index 993fbe8a..993fbe8a 100644
--- a/Ryujinx.HLE/HOS/Services/Sockets/Nsd/ResultCode.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Sockets/Nsd/ResultCode.cs
diff --git a/Ryujinx.HLE/HOS/Services/Sockets/Nsd/Types/ApplicationServerEnvironmentType.cs b/src/Ryujinx.HLE/HOS/Services/Sockets/Nsd/Types/ApplicationServerEnvironmentType.cs
index 150bdab4..150bdab4 100644
--- a/Ryujinx.HLE/HOS/Services/Sockets/Nsd/Types/ApplicationServerEnvironmentType.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Sockets/Nsd/Types/ApplicationServerEnvironmentType.cs
diff --git a/Ryujinx.HLE/HOS/Services/Sockets/Nsd/Types/NsdSettings.cs b/src/Ryujinx.HLE/HOS/Services/Sockets/Nsd/Types/NsdSettings.cs
index 0a72fa87..0a72fa87 100644
--- a/Ryujinx.HLE/HOS/Services/Sockets/Nsd/Types/NsdSettings.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Sockets/Nsd/Types/NsdSettings.cs
diff --git a/Ryujinx.HLE/HOS/Services/Sockets/Sfdnsres/IResolver.cs b/src/Ryujinx.HLE/HOS/Services/Sockets/Sfdnsres/IResolver.cs
index 64c3acbb..64c3acbb 100644
--- a/Ryujinx.HLE/HOS/Services/Sockets/Sfdnsres/IResolver.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Sockets/Sfdnsres/IResolver.cs
diff --git a/Ryujinx.HLE/HOS/Services/Sockets/Sfdnsres/Proxy/DnsBlacklist.cs b/src/Ryujinx.HLE/HOS/Services/Sockets/Sfdnsres/Proxy/DnsBlacklist.cs
index 776a6f7c..776a6f7c 100644
--- a/Ryujinx.HLE/HOS/Services/Sockets/Sfdnsres/Proxy/DnsBlacklist.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Sockets/Sfdnsres/Proxy/DnsBlacklist.cs
diff --git a/Ryujinx.HLE/HOS/Services/Sockets/Sfdnsres/Proxy/DnsMitmResolver.cs b/src/Ryujinx.HLE/HOS/Services/Sockets/Sfdnsres/Proxy/DnsMitmResolver.cs
index 8eece5ea..8eece5ea 100644
--- a/Ryujinx.HLE/HOS/Services/Sockets/Sfdnsres/Proxy/DnsMitmResolver.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Sockets/Sfdnsres/Proxy/DnsMitmResolver.cs
diff --git a/Ryujinx.HLE/HOS/Services/Sockets/Sfdnsres/Types/AddrInfo4.cs b/src/Ryujinx.HLE/HOS/Services/Sockets/Sfdnsres/Types/AddrInfo4.cs
index 0a20e057..0a20e057 100644
--- a/Ryujinx.HLE/HOS/Services/Sockets/Sfdnsres/Types/AddrInfo4.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Sockets/Sfdnsres/Types/AddrInfo4.cs
diff --git a/Ryujinx.HLE/HOS/Services/Sockets/Sfdnsres/Types/AddrInfoSerialized.cs b/src/Ryujinx.HLE/HOS/Services/Sockets/Sfdnsres/Types/AddrInfoSerialized.cs
index a0613d7b..a0613d7b 100644
--- a/Ryujinx.HLE/HOS/Services/Sockets/Sfdnsres/Types/AddrInfoSerialized.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Sockets/Sfdnsres/Types/AddrInfoSerialized.cs
diff --git a/Ryujinx.HLE/HOS/Services/Sockets/Sfdnsres/Types/AddrInfoSerializedHeader.cs b/src/Ryujinx.HLE/HOS/Services/Sockets/Sfdnsres/Types/AddrInfoSerializedHeader.cs
index 8e304dfa..8e304dfa 100644
--- a/Ryujinx.HLE/HOS/Services/Sockets/Sfdnsres/Types/AddrInfoSerializedHeader.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Sockets/Sfdnsres/Types/AddrInfoSerializedHeader.cs
diff --git a/Ryujinx.HLE/HOS/Services/Sockets/Sfdnsres/Types/GaiError.cs b/src/Ryujinx.HLE/HOS/Services/Sockets/Sfdnsres/Types/GaiError.cs
index f9f28b44..f9f28b44 100644
--- a/Ryujinx.HLE/HOS/Services/Sockets/Sfdnsres/Types/GaiError.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Sockets/Sfdnsres/Types/GaiError.cs
diff --git a/Ryujinx.HLE/HOS/Services/Sockets/Sfdnsres/Types/NetDBError.cs b/src/Ryujinx.HLE/HOS/Services/Sockets/Sfdnsres/Types/NetDBError.cs
index 3c04c049..3c04c049 100644
--- a/Ryujinx.HLE/HOS/Services/Sockets/Sfdnsres/Types/NetDBError.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Sockets/Sfdnsres/Types/NetDBError.cs
diff --git a/Ryujinx.HLE/HOS/Services/Sockets/Sfdnsres/Types/SfdnsresContants.cs b/src/Ryujinx.HLE/HOS/Services/Sockets/Sfdnsres/Types/SfdnsresContants.cs
index d194a3c6..d194a3c6 100644
--- a/Ryujinx.HLE/HOS/Services/Sockets/Sfdnsres/Types/SfdnsresContants.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Sockets/Sfdnsres/Types/SfdnsresContants.cs
diff --git a/Ryujinx.HLE/HOS/Services/Spl/IGeneralInterface.cs b/src/Ryujinx.HLE/HOS/Services/Spl/IGeneralInterface.cs
index aa350b73..aa350b73 100644
--- a/Ryujinx.HLE/HOS/Services/Spl/IGeneralInterface.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Spl/IGeneralInterface.cs
diff --git a/Ryujinx.HLE/HOS/Services/Spl/IRandomInterface.cs b/src/Ryujinx.HLE/HOS/Services/Spl/IRandomInterface.cs
index c911f434..c911f434 100644
--- a/Ryujinx.HLE/HOS/Services/Spl/IRandomInterface.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Spl/IRandomInterface.cs
diff --git a/Ryujinx.HLE/HOS/Services/Spl/ResultCode.cs b/src/Ryujinx.HLE/HOS/Services/Spl/ResultCode.cs
index 4f61998a..4f61998a 100644
--- a/Ryujinx.HLE/HOS/Services/Spl/ResultCode.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Spl/ResultCode.cs
diff --git a/Ryujinx.HLE/HOS/Services/Spl/Types/ConfigItem.cs b/src/Ryujinx.HLE/HOS/Services/Spl/Types/ConfigItem.cs
index f08bbeaa..f08bbeaa 100644
--- a/Ryujinx.HLE/HOS/Services/Spl/Types/ConfigItem.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Spl/Types/ConfigItem.cs
diff --git a/Ryujinx.HLE/HOS/Services/Spl/Types/DramId.cs b/src/Ryujinx.HLE/HOS/Services/Spl/Types/DramId.cs
index 422c8d69..422c8d69 100644
--- a/Ryujinx.HLE/HOS/Services/Spl/Types/DramId.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Spl/Types/DramId.cs
diff --git a/Ryujinx.HLE/HOS/Services/Spl/Types/HardwareState.cs b/src/Ryujinx.HLE/HOS/Services/Spl/Types/HardwareState.cs
index 414d0f11..414d0f11 100644
--- a/Ryujinx.HLE/HOS/Services/Spl/Types/HardwareState.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Spl/Types/HardwareState.cs
diff --git a/Ryujinx.HLE/HOS/Services/Spl/Types/HardwareType.cs b/src/Ryujinx.HLE/HOS/Services/Spl/Types/HardwareType.cs
index 491eb943..491eb943 100644
--- a/Ryujinx.HLE/HOS/Services/Spl/Types/HardwareType.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Spl/Types/HardwareType.cs
diff --git a/Ryujinx.HLE/HOS/Services/Spl/Types/SmcResult.cs b/src/Ryujinx.HLE/HOS/Services/Spl/Types/SmcResult.cs
index d5f424a6..d5f424a6 100644
--- a/Ryujinx.HLE/HOS/Services/Spl/Types/SmcResult.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Spl/Types/SmcResult.cs
diff --git a/Ryujinx.HLE/HOS/Services/Srepo/ISrepoService.cs b/src/Ryujinx.HLE/HOS/Services/Srepo/ISrepoService.cs
index 167dea67..167dea67 100644
--- a/Ryujinx.HLE/HOS/Services/Srepo/ISrepoService.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Srepo/ISrepoService.cs
diff --git a/Ryujinx.HLE/HOS/Services/Ssl/BuiltInCertificateManager.cs b/src/Ryujinx.HLE/HOS/Services/Ssl/BuiltInCertificateManager.cs
index abbc1354..abbc1354 100644
--- a/Ryujinx.HLE/HOS/Services/Ssl/BuiltInCertificateManager.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Ssl/BuiltInCertificateManager.cs
diff --git a/Ryujinx.HLE/HOS/Services/Ssl/ISslService.cs b/src/Ryujinx.HLE/HOS/Services/Ssl/ISslService.cs
index 7741ef7e..7741ef7e 100644
--- a/Ryujinx.HLE/HOS/Services/Ssl/ISslService.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Ssl/ISslService.cs
diff --git a/Ryujinx.HLE/HOS/Services/Ssl/ResultCode.cs b/src/Ryujinx.HLE/HOS/Services/Ssl/ResultCode.cs
index 862c79cd..862c79cd 100644
--- a/Ryujinx.HLE/HOS/Services/Ssl/ResultCode.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Ssl/ResultCode.cs
diff --git a/Ryujinx.HLE/HOS/Services/Ssl/SslService/ISslConnection.cs b/src/Ryujinx.HLE/HOS/Services/Ssl/SslService/ISslConnection.cs
index b9087f40..b9087f40 100644
--- a/Ryujinx.HLE/HOS/Services/Ssl/SslService/ISslConnection.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Ssl/SslService/ISslConnection.cs
diff --git a/Ryujinx.HLE/HOS/Services/Ssl/SslService/ISslConnectionBase.cs b/src/Ryujinx.HLE/HOS/Services/Ssl/SslService/ISslConnectionBase.cs
index 18e03e49..18e03e49 100644
--- a/Ryujinx.HLE/HOS/Services/Ssl/SslService/ISslConnectionBase.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Ssl/SslService/ISslConnectionBase.cs
diff --git a/Ryujinx.HLE/HOS/Services/Ssl/SslService/ISslContext.cs b/src/Ryujinx.HLE/HOS/Services/Ssl/SslService/ISslContext.cs
index b38ff921..b38ff921 100644
--- a/Ryujinx.HLE/HOS/Services/Ssl/SslService/ISslContext.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Ssl/SslService/ISslContext.cs
diff --git a/Ryujinx.HLE/HOS/Services/Ssl/SslService/SslManagedSocketConnection.cs b/src/Ryujinx.HLE/HOS/Services/Ssl/SslService/SslManagedSocketConnection.cs
index 47d3eddb..47d3eddb 100644
--- a/Ryujinx.HLE/HOS/Services/Ssl/SslService/SslManagedSocketConnection.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Ssl/SslService/SslManagedSocketConnection.cs
diff --git a/Ryujinx.HLE/HOS/Services/Ssl/Types/BuiltInCertificateInfo.cs b/src/Ryujinx.HLE/HOS/Services/Ssl/Types/BuiltInCertificateInfo.cs
index 313220e1..313220e1 100644
--- a/Ryujinx.HLE/HOS/Services/Ssl/Types/BuiltInCertificateInfo.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Ssl/Types/BuiltInCertificateInfo.cs
diff --git a/Ryujinx.HLE/HOS/Services/Ssl/Types/CaCertificateId.cs b/src/Ryujinx.HLE/HOS/Services/Ssl/Types/CaCertificateId.cs
index 5c84579a..5c84579a 100644
--- a/Ryujinx.HLE/HOS/Services/Ssl/Types/CaCertificateId.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Ssl/Types/CaCertificateId.cs
diff --git a/Ryujinx.HLE/HOS/Services/Ssl/Types/CertificateFormat.cs b/src/Ryujinx.HLE/HOS/Services/Ssl/Types/CertificateFormat.cs
index 1d80f739..1d80f739 100644
--- a/Ryujinx.HLE/HOS/Services/Ssl/Types/CertificateFormat.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Ssl/Types/CertificateFormat.cs
diff --git a/Ryujinx.HLE/HOS/Services/Ssl/Types/IoMode.cs b/src/Ryujinx.HLE/HOS/Services/Ssl/Types/IoMode.cs
index 1cd06d6d..1cd06d6d 100644
--- a/Ryujinx.HLE/HOS/Services/Ssl/Types/IoMode.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Ssl/Types/IoMode.cs
diff --git a/Ryujinx.HLE/HOS/Services/Ssl/Types/OptionType.cs b/src/Ryujinx.HLE/HOS/Services/Ssl/Types/OptionType.cs
index 3673200a..3673200a 100644
--- a/Ryujinx.HLE/HOS/Services/Ssl/Types/OptionType.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Ssl/Types/OptionType.cs
diff --git a/Ryujinx.HLE/HOS/Services/Ssl/Types/SessionCacheMode.cs b/src/Ryujinx.HLE/HOS/Services/Ssl/Types/SessionCacheMode.cs
index cec7b745..cec7b745 100644
--- a/Ryujinx.HLE/HOS/Services/Ssl/Types/SessionCacheMode.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Ssl/Types/SessionCacheMode.cs
diff --git a/Ryujinx.HLE/HOS/Services/Ssl/Types/SslVersion.cs b/src/Ryujinx.HLE/HOS/Services/Ssl/Types/SslVersion.cs
index 7110fd85..7110fd85 100644
--- a/Ryujinx.HLE/HOS/Services/Ssl/Types/SslVersion.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Ssl/Types/SslVersion.cs
diff --git a/Ryujinx.HLE/HOS/Services/Ssl/Types/TrustedCertStatus.cs b/src/Ryujinx.HLE/HOS/Services/Ssl/Types/TrustedCertStatus.cs
index 7fd5efd6..7fd5efd6 100644
--- a/Ryujinx.HLE/HOS/Services/Ssl/Types/TrustedCertStatus.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Ssl/Types/TrustedCertStatus.cs
diff --git a/Ryujinx.HLE/HOS/Services/Ssl/Types/VerifyOption.cs b/src/Ryujinx.HLE/HOS/Services/Ssl/Types/VerifyOption.cs
index d25bb6c3..d25bb6c3 100644
--- a/Ryujinx.HLE/HOS/Services/Ssl/Types/VerifyOption.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Ssl/Types/VerifyOption.cs
diff --git a/Ryujinx.HLE/HOS/Services/SurfaceFlinger/BufferItemConsumer.cs b/src/Ryujinx.HLE/HOS/Services/SurfaceFlinger/BufferItemConsumer.cs
index 3b33bf8b..3b33bf8b 100644
--- a/Ryujinx.HLE/HOS/Services/SurfaceFlinger/BufferItemConsumer.cs
+++ b/src/Ryujinx.HLE/HOS/Services/SurfaceFlinger/BufferItemConsumer.cs
diff --git a/Ryujinx.HLE/HOS/Services/SurfaceFlinger/BufferQueue.cs b/src/Ryujinx.HLE/HOS/Services/SurfaceFlinger/BufferQueue.cs
index bc0901ab..bc0901ab 100644
--- a/Ryujinx.HLE/HOS/Services/SurfaceFlinger/BufferQueue.cs
+++ b/src/Ryujinx.HLE/HOS/Services/SurfaceFlinger/BufferQueue.cs
diff --git a/Ryujinx.HLE/HOS/Services/SurfaceFlinger/BufferQueueConsumer.cs b/src/Ryujinx.HLE/HOS/Services/SurfaceFlinger/BufferQueueConsumer.cs
index c9bb0a65..c9bb0a65 100644
--- a/Ryujinx.HLE/HOS/Services/SurfaceFlinger/BufferQueueConsumer.cs
+++ b/src/Ryujinx.HLE/HOS/Services/SurfaceFlinger/BufferQueueConsumer.cs
diff --git a/Ryujinx.HLE/HOS/Services/SurfaceFlinger/BufferQueueCore.cs b/src/Ryujinx.HLE/HOS/Services/SurfaceFlinger/BufferQueueCore.cs
index 1efd37f4..1efd37f4 100644
--- a/Ryujinx.HLE/HOS/Services/SurfaceFlinger/BufferQueueCore.cs
+++ b/src/Ryujinx.HLE/HOS/Services/SurfaceFlinger/BufferQueueCore.cs
diff --git a/Ryujinx.HLE/HOS/Services/SurfaceFlinger/BufferQueueProducer.cs b/src/Ryujinx.HLE/HOS/Services/SurfaceFlinger/BufferQueueProducer.cs
index 833bc26e..833bc26e 100644
--- a/Ryujinx.HLE/HOS/Services/SurfaceFlinger/BufferQueueProducer.cs
+++ b/src/Ryujinx.HLE/HOS/Services/SurfaceFlinger/BufferQueueProducer.cs
diff --git a/Ryujinx.HLE/HOS/Services/SurfaceFlinger/BufferSlot.cs b/src/Ryujinx.HLE/HOS/Services/SurfaceFlinger/BufferSlot.cs
index fb84934a..fb84934a 100644
--- a/Ryujinx.HLE/HOS/Services/SurfaceFlinger/BufferSlot.cs
+++ b/src/Ryujinx.HLE/HOS/Services/SurfaceFlinger/BufferSlot.cs
diff --git a/Ryujinx.HLE/HOS/Services/SurfaceFlinger/BufferSlotArray.cs b/src/Ryujinx.HLE/HOS/Services/SurfaceFlinger/BufferSlotArray.cs
index d2404c58..d2404c58 100644
--- a/Ryujinx.HLE/HOS/Services/SurfaceFlinger/BufferSlotArray.cs
+++ b/src/Ryujinx.HLE/HOS/Services/SurfaceFlinger/BufferSlotArray.cs
diff --git a/Ryujinx.HLE/HOS/Services/SurfaceFlinger/ConsumerBase.cs b/src/Ryujinx.HLE/HOS/Services/SurfaceFlinger/ConsumerBase.cs
index 49fceed9..49fceed9 100644
--- a/Ryujinx.HLE/HOS/Services/SurfaceFlinger/ConsumerBase.cs
+++ b/src/Ryujinx.HLE/HOS/Services/SurfaceFlinger/ConsumerBase.cs
diff --git a/Ryujinx.HLE/HOS/Services/SurfaceFlinger/HOSBinderDriverServer.cs b/src/Ryujinx.HLE/HOS/Services/SurfaceFlinger/HOSBinderDriverServer.cs
index d6c98be1..d6c98be1 100644
--- a/Ryujinx.HLE/HOS/Services/SurfaceFlinger/HOSBinderDriverServer.cs
+++ b/src/Ryujinx.HLE/HOS/Services/SurfaceFlinger/HOSBinderDriverServer.cs
diff --git a/Ryujinx.HLE/HOS/Services/SurfaceFlinger/IBinder.cs b/src/Ryujinx.HLE/HOS/Services/SurfaceFlinger/IBinder.cs
index 9003201b..9003201b 100644
--- a/Ryujinx.HLE/HOS/Services/SurfaceFlinger/IBinder.cs
+++ b/src/Ryujinx.HLE/HOS/Services/SurfaceFlinger/IBinder.cs
diff --git a/Ryujinx.HLE/HOS/Services/SurfaceFlinger/IConsumerListener.cs b/src/Ryujinx.HLE/HOS/Services/SurfaceFlinger/IConsumerListener.cs
index 78f9c2e7..78f9c2e7 100644
--- a/Ryujinx.HLE/HOS/Services/SurfaceFlinger/IConsumerListener.cs
+++ b/src/Ryujinx.HLE/HOS/Services/SurfaceFlinger/IConsumerListener.cs
diff --git a/Ryujinx.HLE/HOS/Services/SurfaceFlinger/IFlattenable.cs b/src/Ryujinx.HLE/HOS/Services/SurfaceFlinger/IFlattenable.cs
index bfb76952..bfb76952 100644
--- a/Ryujinx.HLE/HOS/Services/SurfaceFlinger/IFlattenable.cs
+++ b/src/Ryujinx.HLE/HOS/Services/SurfaceFlinger/IFlattenable.cs
diff --git a/Ryujinx.HLE/HOS/Services/SurfaceFlinger/IGraphicBufferProducer.cs b/src/Ryujinx.HLE/HOS/Services/SurfaceFlinger/IGraphicBufferProducer.cs
index f0b393a0..f0b393a0 100644
--- a/Ryujinx.HLE/HOS/Services/SurfaceFlinger/IGraphicBufferProducer.cs
+++ b/src/Ryujinx.HLE/HOS/Services/SurfaceFlinger/IGraphicBufferProducer.cs
diff --git a/Ryujinx.HLE/HOS/Services/SurfaceFlinger/IHOSBinderDriver.cs b/src/Ryujinx.HLE/HOS/Services/SurfaceFlinger/IHOSBinderDriver.cs
index 42fc2761..42fc2761 100644
--- a/Ryujinx.HLE/HOS/Services/SurfaceFlinger/IHOSBinderDriver.cs
+++ b/src/Ryujinx.HLE/HOS/Services/SurfaceFlinger/IHOSBinderDriver.cs
diff --git a/Ryujinx.HLE/HOS/Services/SurfaceFlinger/IProducerListener.cs b/src/Ryujinx.HLE/HOS/Services/SurfaceFlinger/IProducerListener.cs
index 43d2101e..43d2101e 100644
--- a/Ryujinx.HLE/HOS/Services/SurfaceFlinger/IProducerListener.cs
+++ b/src/Ryujinx.HLE/HOS/Services/SurfaceFlinger/IProducerListener.cs
diff --git a/Ryujinx.HLE/HOS/Services/SurfaceFlinger/LayerState.cs b/src/Ryujinx.HLE/HOS/Services/SurfaceFlinger/LayerState.cs
index 5f014e13..5f014e13 100644
--- a/Ryujinx.HLE/HOS/Services/SurfaceFlinger/LayerState.cs
+++ b/src/Ryujinx.HLE/HOS/Services/SurfaceFlinger/LayerState.cs
diff --git a/Ryujinx.HLE/HOS/Services/SurfaceFlinger/NativeWindowApi.cs b/src/Ryujinx.HLE/HOS/Services/SurfaceFlinger/NativeWindowApi.cs
index 1ae2732f..1ae2732f 100644
--- a/Ryujinx.HLE/HOS/Services/SurfaceFlinger/NativeWindowApi.cs
+++ b/src/Ryujinx.HLE/HOS/Services/SurfaceFlinger/NativeWindowApi.cs
diff --git a/Ryujinx.HLE/HOS/Services/SurfaceFlinger/NativeWindowAttribute.cs b/src/Ryujinx.HLE/HOS/Services/SurfaceFlinger/NativeWindowAttribute.cs
index c40b4fa1..c40b4fa1 100644
--- a/Ryujinx.HLE/HOS/Services/SurfaceFlinger/NativeWindowAttribute.cs
+++ b/src/Ryujinx.HLE/HOS/Services/SurfaceFlinger/NativeWindowAttribute.cs
diff --git a/Ryujinx.HLE/HOS/Services/SurfaceFlinger/NativeWindowScalingMode.cs b/src/Ryujinx.HLE/HOS/Services/SurfaceFlinger/NativeWindowScalingMode.cs
index 4194c915..4194c915 100644
--- a/Ryujinx.HLE/HOS/Services/SurfaceFlinger/NativeWindowScalingMode.cs
+++ b/src/Ryujinx.HLE/HOS/Services/SurfaceFlinger/NativeWindowScalingMode.cs
diff --git a/Ryujinx.HLE/HOS/Services/SurfaceFlinger/NativeWindowTransform.cs b/src/Ryujinx.HLE/HOS/Services/SurfaceFlinger/NativeWindowTransform.cs
index 66482b12..66482b12 100644
--- a/Ryujinx.HLE/HOS/Services/SurfaceFlinger/NativeWindowTransform.cs
+++ b/src/Ryujinx.HLE/HOS/Services/SurfaceFlinger/NativeWindowTransform.cs
diff --git a/Ryujinx.HLE/HOS/Services/SurfaceFlinger/Parcel.cs b/src/Ryujinx.HLE/HOS/Services/SurfaceFlinger/Parcel.cs
index 19b22157..19b22157 100644
--- a/Ryujinx.HLE/HOS/Services/SurfaceFlinger/Parcel.cs
+++ b/src/Ryujinx.HLE/HOS/Services/SurfaceFlinger/Parcel.cs
diff --git a/Ryujinx.HLE/HOS/Services/SurfaceFlinger/ParcelHeader.cs b/src/Ryujinx.HLE/HOS/Services/SurfaceFlinger/ParcelHeader.cs
index 27068af2..27068af2 100644
--- a/Ryujinx.HLE/HOS/Services/SurfaceFlinger/ParcelHeader.cs
+++ b/src/Ryujinx.HLE/HOS/Services/SurfaceFlinger/ParcelHeader.cs
diff --git a/Ryujinx.HLE/HOS/Services/SurfaceFlinger/PixelFormat.cs b/src/Ryujinx.HLE/HOS/Services/SurfaceFlinger/PixelFormat.cs
index c0ddea10..c0ddea10 100644
--- a/Ryujinx.HLE/HOS/Services/SurfaceFlinger/PixelFormat.cs
+++ b/src/Ryujinx.HLE/HOS/Services/SurfaceFlinger/PixelFormat.cs
diff --git a/Ryujinx.HLE/HOS/Services/SurfaceFlinger/Status.cs b/src/Ryujinx.HLE/HOS/Services/SurfaceFlinger/Status.cs
index 5a151902..5a151902 100644
--- a/Ryujinx.HLE/HOS/Services/SurfaceFlinger/Status.cs
+++ b/src/Ryujinx.HLE/HOS/Services/SurfaceFlinger/Status.cs
diff --git a/Ryujinx.HLE/HOS/Services/SurfaceFlinger/SurfaceFlinger.cs b/src/Ryujinx.HLE/HOS/Services/SurfaceFlinger/SurfaceFlinger.cs
index c7cddf10..c7cddf10 100644
--- a/Ryujinx.HLE/HOS/Services/SurfaceFlinger/SurfaceFlinger.cs
+++ b/src/Ryujinx.HLE/HOS/Services/SurfaceFlinger/SurfaceFlinger.cs
diff --git a/Ryujinx.HLE/HOS/Services/SurfaceFlinger/Types/AndroidFence.cs b/src/Ryujinx.HLE/HOS/Services/SurfaceFlinger/Types/AndroidFence.cs
index 5b72e257..5b72e257 100644
--- a/Ryujinx.HLE/HOS/Services/SurfaceFlinger/Types/AndroidFence.cs
+++ b/src/Ryujinx.HLE/HOS/Services/SurfaceFlinger/Types/AndroidFence.cs
diff --git a/Ryujinx.HLE/HOS/Services/SurfaceFlinger/Types/AndroidStrongPointer.cs b/src/Ryujinx.HLE/HOS/Services/SurfaceFlinger/Types/AndroidStrongPointer.cs
index c356671b..c356671b 100644
--- a/Ryujinx.HLE/HOS/Services/SurfaceFlinger/Types/AndroidStrongPointer.cs
+++ b/src/Ryujinx.HLE/HOS/Services/SurfaceFlinger/Types/AndroidStrongPointer.cs
diff --git a/Ryujinx.HLE/HOS/Services/SurfaceFlinger/Types/BufferInfo.cs b/src/Ryujinx.HLE/HOS/Services/SurfaceFlinger/Types/BufferInfo.cs
index 12c41b0d..12c41b0d 100644
--- a/Ryujinx.HLE/HOS/Services/SurfaceFlinger/Types/BufferInfo.cs
+++ b/src/Ryujinx.HLE/HOS/Services/SurfaceFlinger/Types/BufferInfo.cs
diff --git a/Ryujinx.HLE/HOS/Services/SurfaceFlinger/Types/BufferItem.cs b/src/Ryujinx.HLE/HOS/Services/SurfaceFlinger/Types/BufferItem.cs
index 19fc7900..19fc7900 100644
--- a/Ryujinx.HLE/HOS/Services/SurfaceFlinger/Types/BufferItem.cs
+++ b/src/Ryujinx.HLE/HOS/Services/SurfaceFlinger/Types/BufferItem.cs
diff --git a/Ryujinx.HLE/HOS/Services/SurfaceFlinger/Types/BufferState.cs b/src/Ryujinx.HLE/HOS/Services/SurfaceFlinger/Types/BufferState.cs
index 1787f5a6..1787f5a6 100644
--- a/Ryujinx.HLE/HOS/Services/SurfaceFlinger/Types/BufferState.cs
+++ b/src/Ryujinx.HLE/HOS/Services/SurfaceFlinger/Types/BufferState.cs
diff --git a/Ryujinx.HLE/HOS/Services/SurfaceFlinger/Types/Color/ColorBytePerPixel.cs b/src/Ryujinx.HLE/HOS/Services/SurfaceFlinger/Types/Color/ColorBytePerPixel.cs
index b47d35b4..b47d35b4 100644
--- a/Ryujinx.HLE/HOS/Services/SurfaceFlinger/Types/Color/ColorBytePerPixel.cs
+++ b/src/Ryujinx.HLE/HOS/Services/SurfaceFlinger/Types/Color/ColorBytePerPixel.cs
diff --git a/Ryujinx.HLE/HOS/Services/SurfaceFlinger/Types/Color/ColorComponent.cs b/src/Ryujinx.HLE/HOS/Services/SurfaceFlinger/Types/Color/ColorComponent.cs
index e9669f12..e9669f12 100644
--- a/Ryujinx.HLE/HOS/Services/SurfaceFlinger/Types/Color/ColorComponent.cs
+++ b/src/Ryujinx.HLE/HOS/Services/SurfaceFlinger/Types/Color/ColorComponent.cs
diff --git a/Ryujinx.HLE/HOS/Services/SurfaceFlinger/Types/Color/ColorDataType.cs b/src/Ryujinx.HLE/HOS/Services/SurfaceFlinger/Types/Color/ColorDataType.cs
index cfa3b018..cfa3b018 100644
--- a/Ryujinx.HLE/HOS/Services/SurfaceFlinger/Types/Color/ColorDataType.cs
+++ b/src/Ryujinx.HLE/HOS/Services/SurfaceFlinger/Types/Color/ColorDataType.cs
diff --git a/Ryujinx.HLE/HOS/Services/SurfaceFlinger/Types/Color/ColorFormat.cs b/src/Ryujinx.HLE/HOS/Services/SurfaceFlinger/Types/Color/ColorFormat.cs
index 227d648a..227d648a 100644
--- a/Ryujinx.HLE/HOS/Services/SurfaceFlinger/Types/Color/ColorFormat.cs
+++ b/src/Ryujinx.HLE/HOS/Services/SurfaceFlinger/Types/Color/ColorFormat.cs
diff --git a/Ryujinx.HLE/HOS/Services/SurfaceFlinger/Types/Color/ColorShift.cs b/src/Ryujinx.HLE/HOS/Services/SurfaceFlinger/Types/Color/ColorShift.cs
index 3ad216a8..3ad216a8 100644
--- a/Ryujinx.HLE/HOS/Services/SurfaceFlinger/Types/Color/ColorShift.cs
+++ b/src/Ryujinx.HLE/HOS/Services/SurfaceFlinger/Types/Color/ColorShift.cs
diff --git a/Ryujinx.HLE/HOS/Services/SurfaceFlinger/Types/Color/ColorSpace.cs b/src/Ryujinx.HLE/HOS/Services/SurfaceFlinger/Types/Color/ColorSpace.cs
index 9003a00b..9003a00b 100644
--- a/Ryujinx.HLE/HOS/Services/SurfaceFlinger/Types/Color/ColorSpace.cs
+++ b/src/Ryujinx.HLE/HOS/Services/SurfaceFlinger/Types/Color/ColorSpace.cs
diff --git a/Ryujinx.HLE/HOS/Services/SurfaceFlinger/Types/Color/ColorSwizzle.cs b/src/Ryujinx.HLE/HOS/Services/SurfaceFlinger/Types/Color/ColorSwizzle.cs
index 4c1370c7..4c1370c7 100644
--- a/Ryujinx.HLE/HOS/Services/SurfaceFlinger/Types/Color/ColorSwizzle.cs
+++ b/src/Ryujinx.HLE/HOS/Services/SurfaceFlinger/Types/Color/ColorSwizzle.cs
diff --git a/Ryujinx.HLE/HOS/Services/SurfaceFlinger/Types/GraphicBuffer.cs b/src/Ryujinx.HLE/HOS/Services/SurfaceFlinger/Types/GraphicBuffer.cs
index d1143225..d1143225 100644
--- a/Ryujinx.HLE/HOS/Services/SurfaceFlinger/Types/GraphicBuffer.cs
+++ b/src/Ryujinx.HLE/HOS/Services/SurfaceFlinger/Types/GraphicBuffer.cs
diff --git a/Ryujinx.HLE/HOS/Services/SurfaceFlinger/Types/GraphicBufferHeader.cs b/src/Ryujinx.HLE/HOS/Services/SurfaceFlinger/Types/GraphicBufferHeader.cs
index 77495922..77495922 100644
--- a/Ryujinx.HLE/HOS/Services/SurfaceFlinger/Types/GraphicBufferHeader.cs
+++ b/src/Ryujinx.HLE/HOS/Services/SurfaceFlinger/Types/GraphicBufferHeader.cs
diff --git a/Ryujinx.HLE/HOS/Services/SurfaceFlinger/Types/NvGraphicBuffer.cs b/src/Ryujinx.HLE/HOS/Services/SurfaceFlinger/Types/NvGraphicBuffer.cs
index 6bb47dcc..6bb47dcc 100644
--- a/Ryujinx.HLE/HOS/Services/SurfaceFlinger/Types/NvGraphicBuffer.cs
+++ b/src/Ryujinx.HLE/HOS/Services/SurfaceFlinger/Types/NvGraphicBuffer.cs
diff --git a/Ryujinx.HLE/HOS/Services/SurfaceFlinger/Types/NvGraphicBufferSurface.cs b/src/Ryujinx.HLE/HOS/Services/SurfaceFlinger/Types/NvGraphicBufferSurface.cs
index e084bc73..e084bc73 100644
--- a/Ryujinx.HLE/HOS/Services/SurfaceFlinger/Types/NvGraphicBufferSurface.cs
+++ b/src/Ryujinx.HLE/HOS/Services/SurfaceFlinger/Types/NvGraphicBufferSurface.cs
diff --git a/Ryujinx.HLE/HOS/Services/SurfaceFlinger/Types/NvGraphicBufferSurfaceArray.cs b/src/Ryujinx.HLE/HOS/Services/SurfaceFlinger/Types/NvGraphicBufferSurfaceArray.cs
index 51ac98f8..51ac98f8 100644
--- a/Ryujinx.HLE/HOS/Services/SurfaceFlinger/Types/NvGraphicBufferSurfaceArray.cs
+++ b/src/Ryujinx.HLE/HOS/Services/SurfaceFlinger/Types/NvGraphicBufferSurfaceArray.cs
diff --git a/Ryujinx.HLE/HOS/Services/SurfaceFlinger/Types/Rect.cs b/src/Ryujinx.HLE/HOS/Services/SurfaceFlinger/Types/Rect.cs
index a5dec969..a5dec969 100644
--- a/Ryujinx.HLE/HOS/Services/SurfaceFlinger/Types/Rect.cs
+++ b/src/Ryujinx.HLE/HOS/Services/SurfaceFlinger/Types/Rect.cs
diff --git a/Ryujinx.HLE/HOS/Services/Time/Clock/EphemeralNetworkSystemClockContextWriter.cs b/src/Ryujinx.HLE/HOS/Services/Time/Clock/EphemeralNetworkSystemClockContextWriter.cs
index 14d3cb24..14d3cb24 100644
--- a/Ryujinx.HLE/HOS/Services/Time/Clock/EphemeralNetworkSystemClockContextWriter.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Time/Clock/EphemeralNetworkSystemClockContextWriter.cs
diff --git a/Ryujinx.HLE/HOS/Services/Time/Clock/EphemeralNetworkSystemClockCore.cs b/src/Ryujinx.HLE/HOS/Services/Time/Clock/EphemeralNetworkSystemClockCore.cs
index 003863e4..003863e4 100644
--- a/Ryujinx.HLE/HOS/Services/Time/Clock/EphemeralNetworkSystemClockCore.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Time/Clock/EphemeralNetworkSystemClockCore.cs
diff --git a/Ryujinx.HLE/HOS/Services/Time/Clock/LocalSystemClockContextWriter.cs b/src/Ryujinx.HLE/HOS/Services/Time/Clock/LocalSystemClockContextWriter.cs
index fb7ebdc5..fb7ebdc5 100644
--- a/Ryujinx.HLE/HOS/Services/Time/Clock/LocalSystemClockContextWriter.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Time/Clock/LocalSystemClockContextWriter.cs
diff --git a/Ryujinx.HLE/HOS/Services/Time/Clock/NetworkSystemClockContextWriter.cs b/src/Ryujinx.HLE/HOS/Services/Time/Clock/NetworkSystemClockContextWriter.cs
index 36468ec1..36468ec1 100644
--- a/Ryujinx.HLE/HOS/Services/Time/Clock/NetworkSystemClockContextWriter.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Time/Clock/NetworkSystemClockContextWriter.cs
diff --git a/Ryujinx.HLE/HOS/Services/Time/Clock/StandardLocalSystemClockCore.cs b/src/Ryujinx.HLE/HOS/Services/Time/Clock/StandardLocalSystemClockCore.cs
index 20c334e8..20c334e8 100644
--- a/Ryujinx.HLE/HOS/Services/Time/Clock/StandardLocalSystemClockCore.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Time/Clock/StandardLocalSystemClockCore.cs
diff --git a/Ryujinx.HLE/HOS/Services/Time/Clock/StandardNetworkSystemClockCore.cs b/src/Ryujinx.HLE/HOS/Services/Time/Clock/StandardNetworkSystemClockCore.cs
index aec03485..aec03485 100644
--- a/Ryujinx.HLE/HOS/Services/Time/Clock/StandardNetworkSystemClockCore.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Time/Clock/StandardNetworkSystemClockCore.cs
diff --git a/Ryujinx.HLE/HOS/Services/Time/Clock/StandardSteadyClockCore.cs b/src/Ryujinx.HLE/HOS/Services/Time/Clock/StandardSteadyClockCore.cs
index 8392c4b5..8392c4b5 100644
--- a/Ryujinx.HLE/HOS/Services/Time/Clock/StandardSteadyClockCore.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Time/Clock/StandardSteadyClockCore.cs
diff --git a/Ryujinx.HLE/HOS/Services/Time/Clock/StandardUserSystemClockCore.cs b/src/Ryujinx.HLE/HOS/Services/Time/Clock/StandardUserSystemClockCore.cs
index fa485437..fa485437 100644
--- a/Ryujinx.HLE/HOS/Services/Time/Clock/StandardUserSystemClockCore.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Time/Clock/StandardUserSystemClockCore.cs
diff --git a/Ryujinx.HLE/HOS/Services/Time/Clock/SteadyClockCore.cs b/src/Ryujinx.HLE/HOS/Services/Time/Clock/SteadyClockCore.cs
index 18da4ed3..18da4ed3 100644
--- a/Ryujinx.HLE/HOS/Services/Time/Clock/SteadyClockCore.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Time/Clock/SteadyClockCore.cs
diff --git a/Ryujinx.HLE/HOS/Services/Time/Clock/SystemClockContextUpdateCallback.cs b/src/Ryujinx.HLE/HOS/Services/Time/Clock/SystemClockContextUpdateCallback.cs
index 6229f5ed..6229f5ed 100644
--- a/Ryujinx.HLE/HOS/Services/Time/Clock/SystemClockContextUpdateCallback.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Time/Clock/SystemClockContextUpdateCallback.cs
diff --git a/Ryujinx.HLE/HOS/Services/Time/Clock/SystemClockCore.cs b/src/Ryujinx.HLE/HOS/Services/Time/Clock/SystemClockCore.cs
index f4bbaa60..f4bbaa60 100644
--- a/Ryujinx.HLE/HOS/Services/Time/Clock/SystemClockCore.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Time/Clock/SystemClockCore.cs
diff --git a/Ryujinx.HLE/HOS/Services/Time/Clock/TickBasedSteadyClockCore.cs b/src/Ryujinx.HLE/HOS/Services/Time/Clock/TickBasedSteadyClockCore.cs
index fe74da7e..fe74da7e 100644
--- a/Ryujinx.HLE/HOS/Services/Time/Clock/TickBasedSteadyClockCore.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Time/Clock/TickBasedSteadyClockCore.cs
diff --git a/Ryujinx.HLE/HOS/Services/Time/Clock/Types/ClockSnapshot.cs b/src/Ryujinx.HLE/HOS/Services/Time/Clock/Types/ClockSnapshot.cs
index 07c1b405..07c1b405 100644
--- a/Ryujinx.HLE/HOS/Services/Time/Clock/Types/ClockSnapshot.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Time/Clock/Types/ClockSnapshot.cs
diff --git a/Ryujinx.HLE/HOS/Services/Time/Clock/Types/SteadyClockTimePoint.cs b/src/Ryujinx.HLE/HOS/Services/Time/Clock/Types/SteadyClockTimePoint.cs
index 729e11b6..729e11b6 100644
--- a/Ryujinx.HLE/HOS/Services/Time/Clock/Types/SteadyClockTimePoint.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Time/Clock/Types/SteadyClockTimePoint.cs
diff --git a/Ryujinx.HLE/HOS/Services/Time/Clock/Types/SystemClockContext.cs b/src/Ryujinx.HLE/HOS/Services/Time/Clock/Types/SystemClockContext.cs
index 6b589c28..6b589c28 100644
--- a/Ryujinx.HLE/HOS/Services/Time/Clock/Types/SystemClockContext.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Time/Clock/Types/SystemClockContext.cs
diff --git a/Ryujinx.HLE/HOS/Services/Time/Clock/Types/TimeSpanType.cs b/src/Ryujinx.HLE/HOS/Services/Time/Clock/Types/TimeSpanType.cs
index 0070193f..0070193f 100644
--- a/Ryujinx.HLE/HOS/Services/Time/Clock/Types/TimeSpanType.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Time/Clock/Types/TimeSpanType.cs
diff --git a/Ryujinx.HLE/HOS/Services/Time/IAlarmService.cs b/src/Ryujinx.HLE/HOS/Services/Time/IAlarmService.cs
index 092fa8ce..092fa8ce 100644
--- a/Ryujinx.HLE/HOS/Services/Time/IAlarmService.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Time/IAlarmService.cs
diff --git a/Ryujinx.HLE/HOS/Services/Time/IPowerStateRequestHandler.cs b/src/Ryujinx.HLE/HOS/Services/Time/IPowerStateRequestHandler.cs
index 8ec55c15..8ec55c15 100644
--- a/Ryujinx.HLE/HOS/Services/Time/IPowerStateRequestHandler.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Time/IPowerStateRequestHandler.cs
diff --git a/Ryujinx.HLE/HOS/Services/Time/IStaticServiceForGlue.cs b/src/Ryujinx.HLE/HOS/Services/Time/IStaticServiceForGlue.cs
index 31548b80..31548b80 100644
--- a/Ryujinx.HLE/HOS/Services/Time/IStaticServiceForGlue.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Time/IStaticServiceForGlue.cs
diff --git a/Ryujinx.HLE/HOS/Services/Time/IStaticServiceForPsc.cs b/src/Ryujinx.HLE/HOS/Services/Time/IStaticServiceForPsc.cs
index 145d4e3b..145d4e3b 100644
--- a/Ryujinx.HLE/HOS/Services/Time/IStaticServiceForPsc.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Time/IStaticServiceForPsc.cs
diff --git a/Ryujinx.HLE/HOS/Services/Time/ITimeServiceManager.cs b/src/Ryujinx.HLE/HOS/Services/Time/ITimeServiceManager.cs
index 6c9c15f1..6c9c15f1 100644
--- a/Ryujinx.HLE/HOS/Services/Time/ITimeServiceManager.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Time/ITimeServiceManager.cs
diff --git a/Ryujinx.HLE/HOS/Services/Time/ResultCode.cs b/src/Ryujinx.HLE/HOS/Services/Time/ResultCode.cs
index 3b042ec0..3b042ec0 100644
--- a/Ryujinx.HLE/HOS/Services/Time/ResultCode.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Time/ResultCode.cs
diff --git a/Ryujinx.HLE/HOS/Services/Time/StaticService/ISteadyClock.cs b/src/Ryujinx.HLE/HOS/Services/Time/StaticService/ISteadyClock.cs
index 97d7884e..97d7884e 100644
--- a/Ryujinx.HLE/HOS/Services/Time/StaticService/ISteadyClock.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Time/StaticService/ISteadyClock.cs
diff --git a/Ryujinx.HLE/HOS/Services/Time/StaticService/ISystemClock.cs b/src/Ryujinx.HLE/HOS/Services/Time/StaticService/ISystemClock.cs
index 3cd0a4a6..3cd0a4a6 100644
--- a/Ryujinx.HLE/HOS/Services/Time/StaticService/ISystemClock.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Time/StaticService/ISystemClock.cs
diff --git a/Ryujinx.HLE/HOS/Services/Time/StaticService/ITimeZoneServiceForGlue.cs b/src/Ryujinx.HLE/HOS/Services/Time/StaticService/ITimeZoneServiceForGlue.cs
index 96a7e604..96a7e604 100644
--- a/Ryujinx.HLE/HOS/Services/Time/StaticService/ITimeZoneServiceForGlue.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Time/StaticService/ITimeZoneServiceForGlue.cs
diff --git a/Ryujinx.HLE/HOS/Services/Time/StaticService/ITimeZoneServiceForPsc.cs b/src/Ryujinx.HLE/HOS/Services/Time/StaticService/ITimeZoneServiceForPsc.cs
index 3c9ac71f..3c9ac71f 100644
--- a/Ryujinx.HLE/HOS/Services/Time/StaticService/ITimeZoneServiceForPsc.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Time/StaticService/ITimeZoneServiceForPsc.cs
diff --git a/Ryujinx.HLE/HOS/Services/Time/TimeManager.cs b/src/Ryujinx.HLE/HOS/Services/Time/TimeManager.cs
index e3b65f2a..e3b65f2a 100644
--- a/Ryujinx.HLE/HOS/Services/Time/TimeManager.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Time/TimeManager.cs
diff --git a/Ryujinx.HLE/HOS/Services/Time/TimeSharedMemory.cs b/src/Ryujinx.HLE/HOS/Services/Time/TimeSharedMemory.cs
index 7063290b..7063290b 100644
--- a/Ryujinx.HLE/HOS/Services/Time/TimeSharedMemory.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Time/TimeSharedMemory.cs
diff --git a/Ryujinx.HLE/HOS/Services/Time/TimeZone/TimeZone.cs b/src/Ryujinx.HLE/HOS/Services/Time/TimeZone/TimeZone.cs
index f7477e97..f7477e97 100644
--- a/Ryujinx.HLE/HOS/Services/Time/TimeZone/TimeZone.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Time/TimeZone/TimeZone.cs
diff --git a/Ryujinx.HLE/HOS/Services/Time/TimeZone/TimeZoneContentManager.cs b/src/Ryujinx.HLE/HOS/Services/Time/TimeZone/TimeZoneContentManager.cs
index 9367024e..9367024e 100644
--- a/Ryujinx.HLE/HOS/Services/Time/TimeZone/TimeZoneContentManager.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Time/TimeZone/TimeZoneContentManager.cs
diff --git a/Ryujinx.HLE/HOS/Services/Time/TimeZone/TimeZoneManager.cs b/src/Ryujinx.HLE/HOS/Services/Time/TimeZone/TimeZoneManager.cs
index ef4b7b39..ef4b7b39 100644
--- a/Ryujinx.HLE/HOS/Services/Time/TimeZone/TimeZoneManager.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Time/TimeZone/TimeZoneManager.cs
diff --git a/Ryujinx.HLE/HOS/Services/Time/TimeZone/Types/CalendarAdditionalInfo.cs b/src/Ryujinx.HLE/HOS/Services/Time/TimeZone/Types/CalendarAdditionalInfo.cs
index a84a2785..a84a2785 100644
--- a/Ryujinx.HLE/HOS/Services/Time/TimeZone/Types/CalendarAdditionalInfo.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Time/TimeZone/Types/CalendarAdditionalInfo.cs
diff --git a/Ryujinx.HLE/HOS/Services/Time/TimeZone/Types/CalendarInfo.cs b/src/Ryujinx.HLE/HOS/Services/Time/TimeZone/Types/CalendarInfo.cs
index 68e6245b..68e6245b 100644
--- a/Ryujinx.HLE/HOS/Services/Time/TimeZone/Types/CalendarInfo.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Time/TimeZone/Types/CalendarInfo.cs
diff --git a/Ryujinx.HLE/HOS/Services/Time/TimeZone/Types/CalendarTime.cs b/src/Ryujinx.HLE/HOS/Services/Time/TimeZone/Types/CalendarTime.cs
index d594223d..d594223d 100644
--- a/Ryujinx.HLE/HOS/Services/Time/TimeZone/Types/CalendarTime.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Time/TimeZone/Types/CalendarTime.cs
diff --git a/Ryujinx.HLE/HOS/Services/Time/TimeZone/Types/TimeTypeInfo.cs b/src/Ryujinx.HLE/HOS/Services/Time/TimeZone/Types/TimeTypeInfo.cs
index b8b3d917..b8b3d917 100644
--- a/Ryujinx.HLE/HOS/Services/Time/TimeZone/Types/TimeTypeInfo.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Time/TimeZone/Types/TimeTypeInfo.cs
diff --git a/Ryujinx.HLE/HOS/Services/Time/TimeZone/Types/TimeZoneRule.cs b/src/Ryujinx.HLE/HOS/Services/Time/TimeZone/Types/TimeZoneRule.cs
index 67237f3d..67237f3d 100644
--- a/Ryujinx.HLE/HOS/Services/Time/TimeZone/Types/TimeZoneRule.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Time/TimeZone/Types/TimeZoneRule.cs
diff --git a/Ryujinx.HLE/HOS/Services/Time/TimeZone/Types/TzifHeader.cs b/src/Ryujinx.HLE/HOS/Services/Time/TimeZone/Types/TzifHeader.cs
index 022c34a9..022c34a9 100644
--- a/Ryujinx.HLE/HOS/Services/Time/TimeZone/Types/TzifHeader.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Time/TimeZone/Types/TzifHeader.cs
diff --git a/Ryujinx.HLE/HOS/Services/Time/Types/SteadyClockContext.cs b/src/Ryujinx.HLE/HOS/Services/Time/Types/SteadyClockContext.cs
index 38d37055..38d37055 100644
--- a/Ryujinx.HLE/HOS/Services/Time/Types/SteadyClockContext.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Time/Types/SteadyClockContext.cs
diff --git a/Ryujinx.HLE/HOS/Services/Time/Types/TimePermissions.cs b/src/Ryujinx.HLE/HOS/Services/Time/Types/TimePermissions.cs
index 3fcd3a14..3fcd3a14 100644
--- a/Ryujinx.HLE/HOS/Services/Time/Types/TimePermissions.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Time/Types/TimePermissions.cs
diff --git a/Ryujinx.HLE/HOS/Services/Usb/IClientRootSession.cs b/src/Ryujinx.HLE/HOS/Services/Usb/IClientRootSession.cs
index 56b12af0..56b12af0 100644
--- a/Ryujinx.HLE/HOS/Services/Usb/IClientRootSession.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Usb/IClientRootSession.cs
diff --git a/Ryujinx.HLE/HOS/Services/Usb/IDsService.cs b/src/Ryujinx.HLE/HOS/Services/Usb/IDsService.cs
index 4dbb6fc1..4dbb6fc1 100644
--- a/Ryujinx.HLE/HOS/Services/Usb/IDsService.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Usb/IDsService.cs
diff --git a/Ryujinx.HLE/HOS/Services/Usb/IPdCradleManager.cs b/src/Ryujinx.HLE/HOS/Services/Usb/IPdCradleManager.cs
index cecdbc31..cecdbc31 100644
--- a/Ryujinx.HLE/HOS/Services/Usb/IPdCradleManager.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Usb/IPdCradleManager.cs
diff --git a/Ryujinx.HLE/HOS/Services/Usb/IPdManager.cs b/src/Ryujinx.HLE/HOS/Services/Usb/IPdManager.cs
index 1fb574d2..1fb574d2 100644
--- a/Ryujinx.HLE/HOS/Services/Usb/IPdManager.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Usb/IPdManager.cs
diff --git a/Ryujinx.HLE/HOS/Services/Usb/IPmService.cs b/src/Ryujinx.HLE/HOS/Services/Usb/IPmService.cs
index 38beee07..38beee07 100644
--- a/Ryujinx.HLE/HOS/Services/Usb/IPmService.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Usb/IPmService.cs
diff --git a/Ryujinx.HLE/HOS/Services/Usb/IUnknown1.cs b/src/Ryujinx.HLE/HOS/Services/Usb/IUnknown1.cs
index 0981e4ff..0981e4ff 100644
--- a/Ryujinx.HLE/HOS/Services/Usb/IUnknown1.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Usb/IUnknown1.cs
diff --git a/Ryujinx.HLE/HOS/Services/Usb/IUnknown2.cs b/src/Ryujinx.HLE/HOS/Services/Usb/IUnknown2.cs
index 563696bb..563696bb 100644
--- a/Ryujinx.HLE/HOS/Services/Usb/IUnknown2.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Usb/IUnknown2.cs
diff --git a/Ryujinx.HLE/HOS/Services/Vi/IApplicationRootService.cs b/src/Ryujinx.HLE/HOS/Services/Vi/IApplicationRootService.cs
index 526cecf8..526cecf8 100644
--- a/Ryujinx.HLE/HOS/Services/Vi/IApplicationRootService.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Vi/IApplicationRootService.cs
diff --git a/Ryujinx.HLE/HOS/Services/Vi/IManagerRootService.cs b/src/Ryujinx.HLE/HOS/Services/Vi/IManagerRootService.cs
index d564dabe..d564dabe 100644
--- a/Ryujinx.HLE/HOS/Services/Vi/IManagerRootService.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Vi/IManagerRootService.cs
diff --git a/Ryujinx.HLE/HOS/Services/Vi/ISystemRootService.cs b/src/Ryujinx.HLE/HOS/Services/Vi/ISystemRootService.cs
index 0dfd84f5..0dfd84f5 100644
--- a/Ryujinx.HLE/HOS/Services/Vi/ISystemRootService.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Vi/ISystemRootService.cs
diff --git a/Ryujinx.HLE/HOS/Services/Vi/ResultCode.cs b/src/Ryujinx.HLE/HOS/Services/Vi/ResultCode.cs
index c64339c9..c64339c9 100644
--- a/Ryujinx.HLE/HOS/Services/Vi/ResultCode.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Vi/ResultCode.cs
diff --git a/Ryujinx.HLE/HOS/Services/Vi/RootService/ApplicationDisplayService/AndroidSurfaceComposerClient.cs b/src/Ryujinx.HLE/HOS/Services/Vi/RootService/ApplicationDisplayService/AndroidSurfaceComposerClient.cs
index 1fa99e65..1fa99e65 100644
--- a/Ryujinx.HLE/HOS/Services/Vi/RootService/ApplicationDisplayService/AndroidSurfaceComposerClient.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Vi/RootService/ApplicationDisplayService/AndroidSurfaceComposerClient.cs
diff --git a/Ryujinx.HLE/HOS/Services/Vi/RootService/ApplicationDisplayService/IManagerDisplayService.cs b/src/Ryujinx.HLE/HOS/Services/Vi/RootService/ApplicationDisplayService/IManagerDisplayService.cs
index 6093381c..6093381c 100644
--- a/Ryujinx.HLE/HOS/Services/Vi/RootService/ApplicationDisplayService/IManagerDisplayService.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Vi/RootService/ApplicationDisplayService/IManagerDisplayService.cs
diff --git a/Ryujinx.HLE/HOS/Services/Vi/RootService/ApplicationDisplayService/ISystemDisplayService.cs b/src/Ryujinx.HLE/HOS/Services/Vi/RootService/ApplicationDisplayService/ISystemDisplayService.cs
index a24aa079..a24aa079 100644
--- a/Ryujinx.HLE/HOS/Services/Vi/RootService/ApplicationDisplayService/ISystemDisplayService.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Vi/RootService/ApplicationDisplayService/ISystemDisplayService.cs
diff --git a/Ryujinx.HLE/HOS/Services/Vi/RootService/ApplicationDisplayService/Types/DestinationScalingMode.cs b/src/Ryujinx.HLE/HOS/Services/Vi/RootService/ApplicationDisplayService/Types/DestinationScalingMode.cs
index cf459cb2..cf459cb2 100644
--- a/Ryujinx.HLE/HOS/Services/Vi/RootService/ApplicationDisplayService/Types/DestinationScalingMode.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Vi/RootService/ApplicationDisplayService/Types/DestinationScalingMode.cs
diff --git a/Ryujinx.HLE/HOS/Services/Vi/RootService/ApplicationDisplayService/Types/DisplayInfo.cs b/src/Ryujinx.HLE/HOS/Services/Vi/RootService/ApplicationDisplayService/Types/DisplayInfo.cs
index d46206d4..d46206d4 100644
--- a/Ryujinx.HLE/HOS/Services/Vi/RootService/ApplicationDisplayService/Types/DisplayInfo.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Vi/RootService/ApplicationDisplayService/Types/DisplayInfo.cs
diff --git a/Ryujinx.HLE/HOS/Services/Vi/RootService/ApplicationDisplayService/Types/SourceScalingMode.cs b/src/Ryujinx.HLE/HOS/Services/Vi/RootService/ApplicationDisplayService/Types/SourceScalingMode.cs
index ac8c3e02..ac8c3e02 100644
--- a/Ryujinx.HLE/HOS/Services/Vi/RootService/ApplicationDisplayService/Types/SourceScalingMode.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Vi/RootService/ApplicationDisplayService/Types/SourceScalingMode.cs
diff --git a/Ryujinx.HLE/HOS/Services/Vi/RootService/IApplicationDisplayService.cs b/src/Ryujinx.HLE/HOS/Services/Vi/RootService/IApplicationDisplayService.cs
index 52ed5222..52ed5222 100644
--- a/Ryujinx.HLE/HOS/Services/Vi/RootService/IApplicationDisplayService.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Vi/RootService/IApplicationDisplayService.cs
diff --git a/Ryujinx.HLE/HOS/Services/Vi/Types/ViServiceType.cs b/src/Ryujinx.HLE/HOS/Services/Vi/Types/ViServiceType.cs
index ba6f8e5f..ba6f8e5f 100644
--- a/Ryujinx.HLE/HOS/Services/Vi/Types/ViServiceType.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Vi/Types/ViServiceType.cs
diff --git a/Ryujinx.HLE/HOS/Services/Wlan/IInfraManager.cs b/src/Ryujinx.HLE/HOS/Services/Wlan/IInfraManager.cs
index 0416868a..0416868a 100644
--- a/Ryujinx.HLE/HOS/Services/Wlan/IInfraManager.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Wlan/IInfraManager.cs
diff --git a/Ryujinx.HLE/HOS/Services/Wlan/ILocalGetActionFrame.cs b/src/Ryujinx.HLE/HOS/Services/Wlan/ILocalGetActionFrame.cs
index 6c2e20a4..6c2e20a4 100644
--- a/Ryujinx.HLE/HOS/Services/Wlan/ILocalGetActionFrame.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Wlan/ILocalGetActionFrame.cs
diff --git a/Ryujinx.HLE/HOS/Services/Wlan/ILocalGetFrame.cs b/src/Ryujinx.HLE/HOS/Services/Wlan/ILocalGetFrame.cs
index a224a192..a224a192 100644
--- a/Ryujinx.HLE/HOS/Services/Wlan/ILocalGetFrame.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Wlan/ILocalGetFrame.cs
diff --git a/Ryujinx.HLE/HOS/Services/Wlan/ILocalManager.cs b/src/Ryujinx.HLE/HOS/Services/Wlan/ILocalManager.cs
index 4cc2c4b2..4cc2c4b2 100644
--- a/Ryujinx.HLE/HOS/Services/Wlan/ILocalManager.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Wlan/ILocalManager.cs
diff --git a/Ryujinx.HLE/HOS/Services/Wlan/ISocketGetFrame.cs b/src/Ryujinx.HLE/HOS/Services/Wlan/ISocketGetFrame.cs
index ab5b2193..ab5b2193 100644
--- a/Ryujinx.HLE/HOS/Services/Wlan/ISocketGetFrame.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Wlan/ISocketGetFrame.cs
diff --git a/Ryujinx.HLE/HOS/Services/Wlan/ISocketManager.cs b/src/Ryujinx.HLE/HOS/Services/Wlan/ISocketManager.cs
index afa1bede..afa1bede 100644
--- a/Ryujinx.HLE/HOS/Services/Wlan/ISocketManager.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Wlan/ISocketManager.cs
diff --git a/Ryujinx.HLE/HOS/Services/Wlan/IUnknown1.cs b/src/Ryujinx.HLE/HOS/Services/Wlan/IUnknown1.cs
index dfae18e5..dfae18e5 100644
--- a/Ryujinx.HLE/HOS/Services/Wlan/IUnknown1.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Wlan/IUnknown1.cs
diff --git a/Ryujinx.HLE/HOS/SystemState/AppletStateMgr.cs b/src/Ryujinx.HLE/HOS/SystemState/AppletStateMgr.cs
index 5704ef4b..5704ef4b 100644
--- a/Ryujinx.HLE/HOS/SystemState/AppletStateMgr.cs
+++ b/src/Ryujinx.HLE/HOS/SystemState/AppletStateMgr.cs
diff --git a/Ryujinx.HLE/HOS/SystemState/ColorSet.cs b/src/Ryujinx.HLE/HOS/SystemState/ColorSet.cs
index 4d7a7e2f..4d7a7e2f 100644
--- a/Ryujinx.HLE/HOS/SystemState/ColorSet.cs
+++ b/src/Ryujinx.HLE/HOS/SystemState/ColorSet.cs
diff --git a/Ryujinx.HLE/HOS/SystemState/KeyboardLayout.cs b/src/Ryujinx.HLE/HOS/SystemState/KeyboardLayout.cs
index ba35ea6b..ba35ea6b 100644
--- a/Ryujinx.HLE/HOS/SystemState/KeyboardLayout.cs
+++ b/src/Ryujinx.HLE/HOS/SystemState/KeyboardLayout.cs
diff --git a/Ryujinx.HLE/HOS/SystemState/RegionCode.cs b/src/Ryujinx.HLE/HOS/SystemState/RegionCode.cs
index dd6ed8fa..dd6ed8fa 100644
--- a/Ryujinx.HLE/HOS/SystemState/RegionCode.cs
+++ b/src/Ryujinx.HLE/HOS/SystemState/RegionCode.cs
diff --git a/Ryujinx.HLE/HOS/SystemState/SystemLanguage.cs b/src/Ryujinx.HLE/HOS/SystemState/SystemLanguage.cs
index 3f755105..3f755105 100644
--- a/Ryujinx.HLE/HOS/SystemState/SystemLanguage.cs
+++ b/src/Ryujinx.HLE/HOS/SystemState/SystemLanguage.cs
diff --git a/Ryujinx.HLE/HOS/SystemState/SystemStateMgr.cs b/src/Ryujinx.HLE/HOS/SystemState/SystemStateMgr.cs
index 6627700f..6627700f 100644
--- a/Ryujinx.HLE/HOS/SystemState/SystemStateMgr.cs
+++ b/src/Ryujinx.HLE/HOS/SystemState/SystemStateMgr.cs
diff --git a/Ryujinx.HLE/HOS/SystemState/TitleLanguage.cs b/src/Ryujinx.HLE/HOS/SystemState/TitleLanguage.cs
index c612259b..c612259b 100644
--- a/Ryujinx.HLE/HOS/SystemState/TitleLanguage.cs
+++ b/src/Ryujinx.HLE/HOS/SystemState/TitleLanguage.cs
diff --git a/Ryujinx.HLE/HOS/Tamper/AtmosphereCompiler.cs b/src/Ryujinx.HLE/HOS/Tamper/AtmosphereCompiler.cs
index 7d7af208..7d7af208 100644
--- a/Ryujinx.HLE/HOS/Tamper/AtmosphereCompiler.cs
+++ b/src/Ryujinx.HLE/HOS/Tamper/AtmosphereCompiler.cs
diff --git a/Ryujinx.HLE/HOS/Tamper/AtmosphereProgram.cs b/src/Ryujinx.HLE/HOS/Tamper/AtmosphereProgram.cs
index a2aa73a4..a2aa73a4 100644
--- a/Ryujinx.HLE/HOS/Tamper/AtmosphereProgram.cs
+++ b/src/Ryujinx.HLE/HOS/Tamper/AtmosphereProgram.cs
diff --git a/Ryujinx.HLE/HOS/Tamper/CodeEmitters/Arithmetic.cs b/src/Ryujinx.HLE/HOS/Tamper/CodeEmitters/Arithmetic.cs
index b7d46d3a..b7d46d3a 100644
--- a/Ryujinx.HLE/HOS/Tamper/CodeEmitters/Arithmetic.cs
+++ b/src/Ryujinx.HLE/HOS/Tamper/CodeEmitters/Arithmetic.cs
diff --git a/Ryujinx.HLE/HOS/Tamper/CodeEmitters/BeginConditionalBlock.cs b/src/Ryujinx.HLE/HOS/Tamper/CodeEmitters/BeginConditionalBlock.cs
index 5439821c..5439821c 100644
--- a/Ryujinx.HLE/HOS/Tamper/CodeEmitters/BeginConditionalBlock.cs
+++ b/src/Ryujinx.HLE/HOS/Tamper/CodeEmitters/BeginConditionalBlock.cs
diff --git a/Ryujinx.HLE/HOS/Tamper/CodeEmitters/DebugLog.cs b/src/Ryujinx.HLE/HOS/Tamper/CodeEmitters/DebugLog.cs
index 533b362a..533b362a 100644
--- a/Ryujinx.HLE/HOS/Tamper/CodeEmitters/DebugLog.cs
+++ b/src/Ryujinx.HLE/HOS/Tamper/CodeEmitters/DebugLog.cs
diff --git a/Ryujinx.HLE/HOS/Tamper/CodeEmitters/EndConditionalBlock.cs b/src/Ryujinx.HLE/HOS/Tamper/CodeEmitters/EndConditionalBlock.cs
index a25dddde..a25dddde 100644
--- a/Ryujinx.HLE/HOS/Tamper/CodeEmitters/EndConditionalBlock.cs
+++ b/src/Ryujinx.HLE/HOS/Tamper/CodeEmitters/EndConditionalBlock.cs
diff --git a/Ryujinx.HLE/HOS/Tamper/CodeEmitters/KeyPressConditional.cs b/src/Ryujinx.HLE/HOS/Tamper/CodeEmitters/KeyPressConditional.cs
index a1758665..a1758665 100644
--- a/Ryujinx.HLE/HOS/Tamper/CodeEmitters/KeyPressConditional.cs
+++ b/src/Ryujinx.HLE/HOS/Tamper/CodeEmitters/KeyPressConditional.cs
diff --git a/Ryujinx.HLE/HOS/Tamper/CodeEmitters/LegacyArithmetic.cs b/src/Ryujinx.HLE/HOS/Tamper/CodeEmitters/LegacyArithmetic.cs
index 479c80ec..479c80ec 100644
--- a/Ryujinx.HLE/HOS/Tamper/CodeEmitters/LegacyArithmetic.cs
+++ b/src/Ryujinx.HLE/HOS/Tamper/CodeEmitters/LegacyArithmetic.cs
diff --git a/Ryujinx.HLE/HOS/Tamper/CodeEmitters/LoadRegisterWithConstant.cs b/src/Ryujinx.HLE/HOS/Tamper/CodeEmitters/LoadRegisterWithConstant.cs
index e4a86d7b..e4a86d7b 100644
--- a/Ryujinx.HLE/HOS/Tamper/CodeEmitters/LoadRegisterWithConstant.cs
+++ b/src/Ryujinx.HLE/HOS/Tamper/CodeEmitters/LoadRegisterWithConstant.cs
diff --git a/Ryujinx.HLE/HOS/Tamper/CodeEmitters/LoadRegisterWithMemory.cs b/src/Ryujinx.HLE/HOS/Tamper/CodeEmitters/LoadRegisterWithMemory.cs
index 87b37a1e..87b37a1e 100644
--- a/Ryujinx.HLE/HOS/Tamper/CodeEmitters/LoadRegisterWithMemory.cs
+++ b/src/Ryujinx.HLE/HOS/Tamper/CodeEmitters/LoadRegisterWithMemory.cs
diff --git a/Ryujinx.HLE/HOS/Tamper/CodeEmitters/MemoryConditional.cs b/src/Ryujinx.HLE/HOS/Tamper/CodeEmitters/MemoryConditional.cs
index 2048a67b..2048a67b 100644
--- a/Ryujinx.HLE/HOS/Tamper/CodeEmitters/MemoryConditional.cs
+++ b/src/Ryujinx.HLE/HOS/Tamper/CodeEmitters/MemoryConditional.cs
diff --git a/Ryujinx.HLE/HOS/Tamper/CodeEmitters/PauseProcess.cs b/src/Ryujinx.HLE/HOS/Tamper/CodeEmitters/PauseProcess.cs
index 14f99394..14f99394 100644
--- a/Ryujinx.HLE/HOS/Tamper/CodeEmitters/PauseProcess.cs
+++ b/src/Ryujinx.HLE/HOS/Tamper/CodeEmitters/PauseProcess.cs
diff --git a/Ryujinx.HLE/HOS/Tamper/CodeEmitters/ReadOrWriteStaticRegister.cs b/src/Ryujinx.HLE/HOS/Tamper/CodeEmitters/ReadOrWriteStaticRegister.cs
index 67775df7..67775df7 100644
--- a/Ryujinx.HLE/HOS/Tamper/CodeEmitters/ReadOrWriteStaticRegister.cs
+++ b/src/Ryujinx.HLE/HOS/Tamper/CodeEmitters/ReadOrWriteStaticRegister.cs
diff --git a/Ryujinx.HLE/HOS/Tamper/CodeEmitters/RegisterConditional.cs b/src/Ryujinx.HLE/HOS/Tamper/CodeEmitters/RegisterConditional.cs
index fcd3a9eb..fcd3a9eb 100644
--- a/Ryujinx.HLE/HOS/Tamper/CodeEmitters/RegisterConditional.cs
+++ b/src/Ryujinx.HLE/HOS/Tamper/CodeEmitters/RegisterConditional.cs
diff --git a/Ryujinx.HLE/HOS/Tamper/CodeEmitters/ResumeProcess.cs b/src/Ryujinx.HLE/HOS/Tamper/CodeEmitters/ResumeProcess.cs
index 02f76e22..02f76e22 100644
--- a/Ryujinx.HLE/HOS/Tamper/CodeEmitters/ResumeProcess.cs
+++ b/src/Ryujinx.HLE/HOS/Tamper/CodeEmitters/ResumeProcess.cs
diff --git a/Ryujinx.HLE/HOS/Tamper/CodeEmitters/SaveOrRestoreRegister.cs b/src/Ryujinx.HLE/HOS/Tamper/CodeEmitters/SaveOrRestoreRegister.cs
index d2e13311..d2e13311 100644
--- a/Ryujinx.HLE/HOS/Tamper/CodeEmitters/SaveOrRestoreRegister.cs
+++ b/src/Ryujinx.HLE/HOS/Tamper/CodeEmitters/SaveOrRestoreRegister.cs
diff --git a/Ryujinx.HLE/HOS/Tamper/CodeEmitters/SaveOrRestoreRegisterWithMask.cs b/src/Ryujinx.HLE/HOS/Tamper/CodeEmitters/SaveOrRestoreRegisterWithMask.cs
index 2264e9d1..2264e9d1 100644
--- a/Ryujinx.HLE/HOS/Tamper/CodeEmitters/SaveOrRestoreRegisterWithMask.cs
+++ b/src/Ryujinx.HLE/HOS/Tamper/CodeEmitters/SaveOrRestoreRegisterWithMask.cs
diff --git a/Ryujinx.HLE/HOS/Tamper/CodeEmitters/StartEndLoop.cs b/src/Ryujinx.HLE/HOS/Tamper/CodeEmitters/StartEndLoop.cs
index 1e399b59..1e399b59 100644
--- a/Ryujinx.HLE/HOS/Tamper/CodeEmitters/StartEndLoop.cs
+++ b/src/Ryujinx.HLE/HOS/Tamper/CodeEmitters/StartEndLoop.cs
diff --git a/Ryujinx.HLE/HOS/Tamper/CodeEmitters/StoreConstantToAddress.cs b/src/Ryujinx.HLE/HOS/Tamper/CodeEmitters/StoreConstantToAddress.cs
index 933646bd..933646bd 100644
--- a/Ryujinx.HLE/HOS/Tamper/CodeEmitters/StoreConstantToAddress.cs
+++ b/src/Ryujinx.HLE/HOS/Tamper/CodeEmitters/StoreConstantToAddress.cs
diff --git a/Ryujinx.HLE/HOS/Tamper/CodeEmitters/StoreConstantToMemory.cs b/src/Ryujinx.HLE/HOS/Tamper/CodeEmitters/StoreConstantToMemory.cs
index 5f036969..5f036969 100644
--- a/Ryujinx.HLE/HOS/Tamper/CodeEmitters/StoreConstantToMemory.cs
+++ b/src/Ryujinx.HLE/HOS/Tamper/CodeEmitters/StoreConstantToMemory.cs
diff --git a/Ryujinx.HLE/HOS/Tamper/CodeEmitters/StoreRegisterToMemory.cs b/src/Ryujinx.HLE/HOS/Tamper/CodeEmitters/StoreRegisterToMemory.cs
index 422ff298..422ff298 100644
--- a/Ryujinx.HLE/HOS/Tamper/CodeEmitters/StoreRegisterToMemory.cs
+++ b/src/Ryujinx.HLE/HOS/Tamper/CodeEmitters/StoreRegisterToMemory.cs
diff --git a/Ryujinx.HLE/HOS/Tamper/CodeType.cs b/src/Ryujinx.HLE/HOS/Tamper/CodeType.cs
index 7c4f2286..7c4f2286 100644
--- a/Ryujinx.HLE/HOS/Tamper/CodeType.cs
+++ b/src/Ryujinx.HLE/HOS/Tamper/CodeType.cs
diff --git a/Ryujinx.HLE/HOS/Tamper/Comparison.cs b/src/Ryujinx.HLE/HOS/Tamper/Comparison.cs
index cd162b1c..cd162b1c 100644
--- a/Ryujinx.HLE/HOS/Tamper/Comparison.cs
+++ b/src/Ryujinx.HLE/HOS/Tamper/Comparison.cs
diff --git a/Ryujinx.HLE/HOS/Tamper/CompilationContext.cs b/src/Ryujinx.HLE/HOS/Tamper/CompilationContext.cs
index 45a47f44..45a47f44 100644
--- a/Ryujinx.HLE/HOS/Tamper/CompilationContext.cs
+++ b/src/Ryujinx.HLE/HOS/Tamper/CompilationContext.cs
diff --git a/Ryujinx.HLE/HOS/Tamper/Conditions/CondEQ.cs b/src/Ryujinx.HLE/HOS/Tamper/Conditions/CondEQ.cs
index ad5bd223..ad5bd223 100644
--- a/Ryujinx.HLE/HOS/Tamper/Conditions/CondEQ.cs
+++ b/src/Ryujinx.HLE/HOS/Tamper/Conditions/CondEQ.cs
diff --git a/Ryujinx.HLE/HOS/Tamper/Conditions/CondGE.cs b/src/Ryujinx.HLE/HOS/Tamper/Conditions/CondGE.cs
index d9ad6d81..d9ad6d81 100644
--- a/Ryujinx.HLE/HOS/Tamper/Conditions/CondGE.cs
+++ b/src/Ryujinx.HLE/HOS/Tamper/Conditions/CondGE.cs
diff --git a/Ryujinx.HLE/HOS/Tamper/Conditions/CondGT.cs b/src/Ryujinx.HLE/HOS/Tamper/Conditions/CondGT.cs
index 262457da..262457da 100644
--- a/Ryujinx.HLE/HOS/Tamper/Conditions/CondGT.cs
+++ b/src/Ryujinx.HLE/HOS/Tamper/Conditions/CondGT.cs
diff --git a/Ryujinx.HLE/HOS/Tamper/Conditions/CondLE.cs b/src/Ryujinx.HLE/HOS/Tamper/Conditions/CondLE.cs
index fd488bc1..fd488bc1 100644
--- a/Ryujinx.HLE/HOS/Tamper/Conditions/CondLE.cs
+++ b/src/Ryujinx.HLE/HOS/Tamper/Conditions/CondLE.cs
diff --git a/Ryujinx.HLE/HOS/Tamper/Conditions/CondLT.cs b/src/Ryujinx.HLE/HOS/Tamper/Conditions/CondLT.cs
index 744eb5dc..744eb5dc 100644
--- a/Ryujinx.HLE/HOS/Tamper/Conditions/CondLT.cs
+++ b/src/Ryujinx.HLE/HOS/Tamper/Conditions/CondLT.cs
diff --git a/Ryujinx.HLE/HOS/Tamper/Conditions/CondNE.cs b/src/Ryujinx.HLE/HOS/Tamper/Conditions/CondNE.cs
index 2709ad92..2709ad92 100644
--- a/Ryujinx.HLE/HOS/Tamper/Conditions/CondNE.cs
+++ b/src/Ryujinx.HLE/HOS/Tamper/Conditions/CondNE.cs
diff --git a/Ryujinx.HLE/HOS/Tamper/Conditions/ICondition.cs b/src/Ryujinx.HLE/HOS/Tamper/Conditions/ICondition.cs
index f15ceffe..f15ceffe 100644
--- a/Ryujinx.HLE/HOS/Tamper/Conditions/ICondition.cs
+++ b/src/Ryujinx.HLE/HOS/Tamper/Conditions/ICondition.cs
diff --git a/Ryujinx.HLE/HOS/Tamper/Conditions/InputMask.cs b/src/Ryujinx.HLE/HOS/Tamper/Conditions/InputMask.cs
index 8d75a0e1..8d75a0e1 100644
--- a/Ryujinx.HLE/HOS/Tamper/Conditions/InputMask.cs
+++ b/src/Ryujinx.HLE/HOS/Tamper/Conditions/InputMask.cs
diff --git a/Ryujinx.HLE/HOS/Tamper/ITamperProgram.cs b/src/Ryujinx.HLE/HOS/Tamper/ITamperProgram.cs
index 8458d95d..8458d95d 100644
--- a/Ryujinx.HLE/HOS/Tamper/ITamperProgram.cs
+++ b/src/Ryujinx.HLE/HOS/Tamper/ITamperProgram.cs
diff --git a/Ryujinx.HLE/HOS/Tamper/ITamperedProcess.cs b/src/Ryujinx.HLE/HOS/Tamper/ITamperedProcess.cs
index c86e1021..c86e1021 100644
--- a/Ryujinx.HLE/HOS/Tamper/ITamperedProcess.cs
+++ b/src/Ryujinx.HLE/HOS/Tamper/ITamperedProcess.cs
diff --git a/Ryujinx.HLE/HOS/Tamper/InstructionHelper.cs b/src/Ryujinx.HLE/HOS/Tamper/InstructionHelper.cs
index e85d99c7..e85d99c7 100644
--- a/Ryujinx.HLE/HOS/Tamper/InstructionHelper.cs
+++ b/src/Ryujinx.HLE/HOS/Tamper/InstructionHelper.cs
diff --git a/Ryujinx.HLE/HOS/Tamper/MemoryHelper.cs b/src/Ryujinx.HLE/HOS/Tamper/MemoryHelper.cs
index 1260ed9a..1260ed9a 100644
--- a/Ryujinx.HLE/HOS/Tamper/MemoryHelper.cs
+++ b/src/Ryujinx.HLE/HOS/Tamper/MemoryHelper.cs
diff --git a/Ryujinx.HLE/HOS/Tamper/MemoryRegion.cs b/src/Ryujinx.HLE/HOS/Tamper/MemoryRegion.cs
index 766e3eed..766e3eed 100644
--- a/Ryujinx.HLE/HOS/Tamper/MemoryRegion.cs
+++ b/src/Ryujinx.HLE/HOS/Tamper/MemoryRegion.cs
diff --git a/Ryujinx.HLE/HOS/Tamper/OperationBlock.cs b/src/Ryujinx.HLE/HOS/Tamper/OperationBlock.cs
index c16c2812..c16c2812 100644
--- a/Ryujinx.HLE/HOS/Tamper/OperationBlock.cs
+++ b/src/Ryujinx.HLE/HOS/Tamper/OperationBlock.cs
diff --git a/Ryujinx.HLE/HOS/Tamper/Operations/Block.cs b/src/Ryujinx.HLE/HOS/Tamper/Operations/Block.cs
index d81daa90..d81daa90 100644
--- a/Ryujinx.HLE/HOS/Tamper/Operations/Block.cs
+++ b/src/Ryujinx.HLE/HOS/Tamper/Operations/Block.cs
diff --git a/Ryujinx.HLE/HOS/Tamper/Operations/ForBlock.cs b/src/Ryujinx.HLE/HOS/Tamper/Operations/ForBlock.cs
index ef95fa2b..ef95fa2b 100644
--- a/Ryujinx.HLE/HOS/Tamper/Operations/ForBlock.cs
+++ b/src/Ryujinx.HLE/HOS/Tamper/Operations/ForBlock.cs
diff --git a/Ryujinx.HLE/HOS/Tamper/Operations/IOperand.cs b/src/Ryujinx.HLE/HOS/Tamper/Operations/IOperand.cs
index 1aadda0b..1aadda0b 100644
--- a/Ryujinx.HLE/HOS/Tamper/Operations/IOperand.cs
+++ b/src/Ryujinx.HLE/HOS/Tamper/Operations/IOperand.cs
diff --git a/Ryujinx.HLE/HOS/Tamper/Operations/IOperation.cs b/src/Ryujinx.HLE/HOS/Tamper/Operations/IOperation.cs
index a4474979..a4474979 100644
--- a/Ryujinx.HLE/HOS/Tamper/Operations/IOperation.cs
+++ b/src/Ryujinx.HLE/HOS/Tamper/Operations/IOperation.cs
diff --git a/Ryujinx.HLE/HOS/Tamper/Operations/IfBlock.cs b/src/Ryujinx.HLE/HOS/Tamper/Operations/IfBlock.cs
index b7c5684e..b7c5684e 100644
--- a/Ryujinx.HLE/HOS/Tamper/Operations/IfBlock.cs
+++ b/src/Ryujinx.HLE/HOS/Tamper/Operations/IfBlock.cs
diff --git a/Ryujinx.HLE/HOS/Tamper/Operations/OpAdd.cs b/src/Ryujinx.HLE/HOS/Tamper/Operations/OpAdd.cs
index 214518d7..214518d7 100644
--- a/Ryujinx.HLE/HOS/Tamper/Operations/OpAdd.cs
+++ b/src/Ryujinx.HLE/HOS/Tamper/Operations/OpAdd.cs
diff --git a/Ryujinx.HLE/HOS/Tamper/Operations/OpAnd.cs b/src/Ryujinx.HLE/HOS/Tamper/Operations/OpAnd.cs
index 366a82b0..366a82b0 100644
--- a/Ryujinx.HLE/HOS/Tamper/Operations/OpAnd.cs
+++ b/src/Ryujinx.HLE/HOS/Tamper/Operations/OpAnd.cs
diff --git a/Ryujinx.HLE/HOS/Tamper/Operations/OpLog.cs b/src/Ryujinx.HLE/HOS/Tamper/Operations/OpLog.cs
index 49f8b41e..49f8b41e 100644
--- a/Ryujinx.HLE/HOS/Tamper/Operations/OpLog.cs
+++ b/src/Ryujinx.HLE/HOS/Tamper/Operations/OpLog.cs
diff --git a/Ryujinx.HLE/HOS/Tamper/Operations/OpLsh.cs b/src/Ryujinx.HLE/HOS/Tamper/Operations/OpLsh.cs
index 34e7c81a..34e7c81a 100644
--- a/Ryujinx.HLE/HOS/Tamper/Operations/OpLsh.cs
+++ b/src/Ryujinx.HLE/HOS/Tamper/Operations/OpLsh.cs
diff --git a/Ryujinx.HLE/HOS/Tamper/Operations/OpMov.cs b/src/Ryujinx.HLE/HOS/Tamper/Operations/OpMov.cs
index 5fad38f9..5fad38f9 100644
--- a/Ryujinx.HLE/HOS/Tamper/Operations/OpMov.cs
+++ b/src/Ryujinx.HLE/HOS/Tamper/Operations/OpMov.cs
diff --git a/Ryujinx.HLE/HOS/Tamper/Operations/OpMul.cs b/src/Ryujinx.HLE/HOS/Tamper/Operations/OpMul.cs
index 5aa0e34e..5aa0e34e 100644
--- a/Ryujinx.HLE/HOS/Tamper/Operations/OpMul.cs
+++ b/src/Ryujinx.HLE/HOS/Tamper/Operations/OpMul.cs
diff --git a/Ryujinx.HLE/HOS/Tamper/Operations/OpNot.cs b/src/Ryujinx.HLE/HOS/Tamper/Operations/OpNot.cs
index 8a97c3fe..8a97c3fe 100644
--- a/Ryujinx.HLE/HOS/Tamper/Operations/OpNot.cs
+++ b/src/Ryujinx.HLE/HOS/Tamper/Operations/OpNot.cs
diff --git a/Ryujinx.HLE/HOS/Tamper/Operations/OpOr.cs b/src/Ryujinx.HLE/HOS/Tamper/Operations/OpOr.cs
index d074de1c..d074de1c 100644
--- a/Ryujinx.HLE/HOS/Tamper/Operations/OpOr.cs
+++ b/src/Ryujinx.HLE/HOS/Tamper/Operations/OpOr.cs
diff --git a/Ryujinx.HLE/HOS/Tamper/Operations/OpProcCtrl.cs b/src/Ryujinx.HLE/HOS/Tamper/Operations/OpProcCtrl.cs
index 1b89f450..1b89f450 100644
--- a/Ryujinx.HLE/HOS/Tamper/Operations/OpProcCtrl.cs
+++ b/src/Ryujinx.HLE/HOS/Tamper/Operations/OpProcCtrl.cs
diff --git a/Ryujinx.HLE/HOS/Tamper/Operations/OpRsh.cs b/src/Ryujinx.HLE/HOS/Tamper/Operations/OpRsh.cs
index b08dd957..b08dd957 100644
--- a/Ryujinx.HLE/HOS/Tamper/Operations/OpRsh.cs
+++ b/src/Ryujinx.HLE/HOS/Tamper/Operations/OpRsh.cs
diff --git a/Ryujinx.HLE/HOS/Tamper/Operations/OpSub.cs b/src/Ryujinx.HLE/HOS/Tamper/Operations/OpSub.cs
index b9c67d04..b9c67d04 100644
--- a/Ryujinx.HLE/HOS/Tamper/Operations/OpSub.cs
+++ b/src/Ryujinx.HLE/HOS/Tamper/Operations/OpSub.cs
diff --git a/Ryujinx.HLE/HOS/Tamper/Operations/OpXor.cs b/src/Ryujinx.HLE/HOS/Tamper/Operations/OpXor.cs
index 3bbb76a1..3bbb76a1 100644
--- a/Ryujinx.HLE/HOS/Tamper/Operations/OpXor.cs
+++ b/src/Ryujinx.HLE/HOS/Tamper/Operations/OpXor.cs
diff --git a/Ryujinx.HLE/HOS/Tamper/Parameter.cs b/src/Ryujinx.HLE/HOS/Tamper/Parameter.cs
index 824c62fe..824c62fe 100644
--- a/Ryujinx.HLE/HOS/Tamper/Parameter.cs
+++ b/src/Ryujinx.HLE/HOS/Tamper/Parameter.cs
diff --git a/Ryujinx.HLE/HOS/Tamper/Pointer.cs b/src/Ryujinx.HLE/HOS/Tamper/Pointer.cs
index 22acf4d5..22acf4d5 100644
--- a/Ryujinx.HLE/HOS/Tamper/Pointer.cs
+++ b/src/Ryujinx.HLE/HOS/Tamper/Pointer.cs
diff --git a/Ryujinx.HLE/HOS/Tamper/Register.cs b/src/Ryujinx.HLE/HOS/Tamper/Register.cs
index 01af20de..01af20de 100644
--- a/Ryujinx.HLE/HOS/Tamper/Register.cs
+++ b/src/Ryujinx.HLE/HOS/Tamper/Register.cs
diff --git a/Ryujinx.HLE/HOS/Tamper/TamperedKProcess.cs b/src/Ryujinx.HLE/HOS/Tamper/TamperedKProcess.cs
index be51264a..be51264a 100644
--- a/Ryujinx.HLE/HOS/Tamper/TamperedKProcess.cs
+++ b/src/Ryujinx.HLE/HOS/Tamper/TamperedKProcess.cs
diff --git a/Ryujinx.HLE/HOS/Tamper/Value.cs b/src/Ryujinx.HLE/HOS/Tamper/Value.cs
index 865f8e04..865f8e04 100644
--- a/Ryujinx.HLE/HOS/Tamper/Value.cs
+++ b/src/Ryujinx.HLE/HOS/Tamper/Value.cs
diff --git a/Ryujinx.HLE/HOS/TamperMachine.cs b/src/Ryujinx.HLE/HOS/TamperMachine.cs
index 596fc3ce..596fc3ce 100644
--- a/Ryujinx.HLE/HOS/TamperMachine.cs
+++ b/src/Ryujinx.HLE/HOS/TamperMachine.cs
diff --git a/Ryujinx.HLE/HOS/UserChannelPersistence.cs b/src/Ryujinx.HLE/HOS/UserChannelPersistence.cs
index 4b041ce8..4b041ce8 100644
--- a/Ryujinx.HLE/HOS/UserChannelPersistence.cs
+++ b/src/Ryujinx.HLE/HOS/UserChannelPersistence.cs
diff --git a/Ryujinx.HLE/Homebrew.npdm b/src/Ryujinx.HLE/Homebrew.npdm
index 81411614..81411614 100644
--- a/Ryujinx.HLE/Homebrew.npdm
+++ b/src/Ryujinx.HLE/Homebrew.npdm
Binary files differ
diff --git a/Ryujinx.HLE/Loaders/Elf/ElfDynamic.cs b/src/Ryujinx.HLE/Loaders/Elf/ElfDynamic.cs
index f489e85a..f489e85a 100644
--- a/Ryujinx.HLE/Loaders/Elf/ElfDynamic.cs
+++ b/src/Ryujinx.HLE/Loaders/Elf/ElfDynamic.cs
diff --git a/Ryujinx.HLE/Loaders/Elf/ElfDynamicTag.cs b/src/Ryujinx.HLE/Loaders/Elf/ElfDynamicTag.cs
index eb37d612..eb37d612 100644
--- a/Ryujinx.HLE/Loaders/Elf/ElfDynamicTag.cs
+++ b/src/Ryujinx.HLE/Loaders/Elf/ElfDynamicTag.cs
diff --git a/Ryujinx.HLE/Loaders/Elf/ElfSymbol.cs b/src/Ryujinx.HLE/Loaders/Elf/ElfSymbol.cs
index 1cfc0bdc..1cfc0bdc 100644
--- a/Ryujinx.HLE/Loaders/Elf/ElfSymbol.cs
+++ b/src/Ryujinx.HLE/Loaders/Elf/ElfSymbol.cs
diff --git a/Ryujinx.HLE/Loaders/Elf/ElfSymbol32.cs b/src/Ryujinx.HLE/Loaders/Elf/ElfSymbol32.cs
index 2f84796b..2f84796b 100644
--- a/Ryujinx.HLE/Loaders/Elf/ElfSymbol32.cs
+++ b/src/Ryujinx.HLE/Loaders/Elf/ElfSymbol32.cs
diff --git a/Ryujinx.HLE/Loaders/Elf/ElfSymbol64.cs b/src/Ryujinx.HLE/Loaders/Elf/ElfSymbol64.cs
index 665e65b0..665e65b0 100644
--- a/Ryujinx.HLE/Loaders/Elf/ElfSymbol64.cs
+++ b/src/Ryujinx.HLE/Loaders/Elf/ElfSymbol64.cs
diff --git a/Ryujinx.HLE/Loaders/Elf/ElfSymbolBinding.cs b/src/Ryujinx.HLE/Loaders/Elf/ElfSymbolBinding.cs
index 92274fde..92274fde 100644
--- a/Ryujinx.HLE/Loaders/Elf/ElfSymbolBinding.cs
+++ b/src/Ryujinx.HLE/Loaders/Elf/ElfSymbolBinding.cs
diff --git a/Ryujinx.HLE/Loaders/Elf/ElfSymbolType.cs b/src/Ryujinx.HLE/Loaders/Elf/ElfSymbolType.cs
index 4110d4c3..4110d4c3 100644
--- a/Ryujinx.HLE/Loaders/Elf/ElfSymbolType.cs
+++ b/src/Ryujinx.HLE/Loaders/Elf/ElfSymbolType.cs
diff --git a/Ryujinx.HLE/Loaders/Elf/ElfSymbolVisibility.cs b/src/Ryujinx.HLE/Loaders/Elf/ElfSymbolVisibility.cs
index f026fca8..f026fca8 100644
--- a/Ryujinx.HLE/Loaders/Elf/ElfSymbolVisibility.cs
+++ b/src/Ryujinx.HLE/Loaders/Elf/ElfSymbolVisibility.cs
diff --git a/Ryujinx.HLE/Loaders/Executables/IExecutable.cs b/src/Ryujinx.HLE/Loaders/Executables/IExecutable.cs
index 27479efe..27479efe 100644
--- a/Ryujinx.HLE/Loaders/Executables/IExecutable.cs
+++ b/src/Ryujinx.HLE/Loaders/Executables/IExecutable.cs
diff --git a/Ryujinx.HLE/Loaders/Executables/KipExecutable.cs b/src/Ryujinx.HLE/Loaders/Executables/KipExecutable.cs
index ad2b681c..ad2b681c 100644
--- a/Ryujinx.HLE/Loaders/Executables/KipExecutable.cs
+++ b/src/Ryujinx.HLE/Loaders/Executables/KipExecutable.cs
diff --git a/Ryujinx.HLE/Loaders/Executables/NroExecutable.cs b/src/Ryujinx.HLE/Loaders/Executables/NroExecutable.cs
index 621ab43b..621ab43b 100644
--- a/Ryujinx.HLE/Loaders/Executables/NroExecutable.cs
+++ b/src/Ryujinx.HLE/Loaders/Executables/NroExecutable.cs
diff --git a/Ryujinx.HLE/Loaders/Executables/NsoExecutable.cs b/src/Ryujinx.HLE/Loaders/Executables/NsoExecutable.cs
index d695449b..d695449b 100644
--- a/Ryujinx.HLE/Loaders/Executables/NsoExecutable.cs
+++ b/src/Ryujinx.HLE/Loaders/Executables/NsoExecutable.cs
diff --git a/Ryujinx.HLE/Loaders/Mods/IPSPatcher.cs b/src/Ryujinx.HLE/Loaders/Mods/IPSPatcher.cs
index 510fec05..510fec05 100644
--- a/Ryujinx.HLE/Loaders/Mods/IPSPatcher.cs
+++ b/src/Ryujinx.HLE/Loaders/Mods/IPSPatcher.cs
diff --git a/Ryujinx.HLE/Loaders/Mods/IPSwitchPatcher.cs b/src/Ryujinx.HLE/Loaders/Mods/IPSwitchPatcher.cs
index 416fc1b4..416fc1b4 100644
--- a/Ryujinx.HLE/Loaders/Mods/IPSwitchPatcher.cs
+++ b/src/Ryujinx.HLE/Loaders/Mods/IPSwitchPatcher.cs
diff --git a/Ryujinx.HLE/Loaders/Mods/MemPatch.cs b/src/Ryujinx.HLE/Loaders/Mods/MemPatch.cs
index f9db7c69..f9db7c69 100644
--- a/Ryujinx.HLE/Loaders/Mods/MemPatch.cs
+++ b/src/Ryujinx.HLE/Loaders/Mods/MemPatch.cs
diff --git a/Ryujinx.HLE/Loaders/Npdm/ACI0.cs b/src/Ryujinx.HLE/Loaders/Npdm/ACI0.cs
index 209e79d1..209e79d1 100644
--- a/Ryujinx.HLE/Loaders/Npdm/ACI0.cs
+++ b/src/Ryujinx.HLE/Loaders/Npdm/ACI0.cs
diff --git a/Ryujinx.HLE/Loaders/Npdm/ACID.cs b/src/Ryujinx.HLE/Loaders/Npdm/ACID.cs
index 365495c6..365495c6 100644
--- a/Ryujinx.HLE/Loaders/Npdm/ACID.cs
+++ b/src/Ryujinx.HLE/Loaders/Npdm/ACID.cs
diff --git a/Ryujinx.HLE/Loaders/Npdm/FsAccessControl.cs b/src/Ryujinx.HLE/Loaders/Npdm/FsAccessControl.cs
index d0f349ea..d0f349ea 100644
--- a/Ryujinx.HLE/Loaders/Npdm/FsAccessControl.cs
+++ b/src/Ryujinx.HLE/Loaders/Npdm/FsAccessControl.cs
diff --git a/Ryujinx.HLE/Loaders/Npdm/FsAccessHeader.cs b/src/Ryujinx.HLE/Loaders/Npdm/FsAccessHeader.cs
index 564b8dc3..564b8dc3 100644
--- a/Ryujinx.HLE/Loaders/Npdm/FsAccessHeader.cs
+++ b/src/Ryujinx.HLE/Loaders/Npdm/FsAccessHeader.cs
diff --git a/Ryujinx.HLE/Loaders/Npdm/KernelAccessControl.cs b/src/Ryujinx.HLE/Loaders/Npdm/KernelAccessControl.cs
index 39803642..39803642 100644
--- a/Ryujinx.HLE/Loaders/Npdm/KernelAccessControl.cs
+++ b/src/Ryujinx.HLE/Loaders/Npdm/KernelAccessControl.cs
diff --git a/Ryujinx.HLE/Loaders/Npdm/Npdm.cs b/src/Ryujinx.HLE/Loaders/Npdm/Npdm.cs
index 29a2b0fc..29a2b0fc 100644
--- a/Ryujinx.HLE/Loaders/Npdm/Npdm.cs
+++ b/src/Ryujinx.HLE/Loaders/Npdm/Npdm.cs
diff --git a/Ryujinx.HLE/Loaders/Npdm/ServiceAccessControl.cs b/src/Ryujinx.HLE/Loaders/Npdm/ServiceAccessControl.cs
index 54012b8a..54012b8a 100644
--- a/Ryujinx.HLE/Loaders/Npdm/ServiceAccessControl.cs
+++ b/src/Ryujinx.HLE/Loaders/Npdm/ServiceAccessControl.cs
diff --git a/Ryujinx.HLE/Loaders/Processes/Extensions/FileSystemExtensions.cs b/src/Ryujinx.HLE/Loaders/Processes/Extensions/FileSystemExtensions.cs
index 58759ddb..58759ddb 100644
--- a/Ryujinx.HLE/Loaders/Processes/Extensions/FileSystemExtensions.cs
+++ b/src/Ryujinx.HLE/Loaders/Processes/Extensions/FileSystemExtensions.cs
diff --git a/Ryujinx.HLE/Loaders/Processes/Extensions/LocalFileSystemExtensions.cs b/src/Ryujinx.HLE/Loaders/Processes/Extensions/LocalFileSystemExtensions.cs
index 28d90785..28d90785 100644
--- a/Ryujinx.HLE/Loaders/Processes/Extensions/LocalFileSystemExtensions.cs
+++ b/src/Ryujinx.HLE/Loaders/Processes/Extensions/LocalFileSystemExtensions.cs
diff --git a/Ryujinx.HLE/Loaders/Processes/Extensions/MetaLoaderExtensions.cs b/src/Ryujinx.HLE/Loaders/Processes/Extensions/MetaLoaderExtensions.cs
index c639ee52..c639ee52 100644
--- a/Ryujinx.HLE/Loaders/Processes/Extensions/MetaLoaderExtensions.cs
+++ b/src/Ryujinx.HLE/Loaders/Processes/Extensions/MetaLoaderExtensions.cs
diff --git a/Ryujinx.HLE/Loaders/Processes/Extensions/NcaExtensions.cs b/src/Ryujinx.HLE/Loaders/Processes/Extensions/NcaExtensions.cs
index 473f374d..473f374d 100644
--- a/Ryujinx.HLE/Loaders/Processes/Extensions/NcaExtensions.cs
+++ b/src/Ryujinx.HLE/Loaders/Processes/Extensions/NcaExtensions.cs
diff --git a/Ryujinx.HLE/Loaders/Processes/Extensions/PartitionFileSystemExtensions.cs b/src/Ryujinx.HLE/Loaders/Processes/Extensions/PartitionFileSystemExtensions.cs
index e93802ae..e93802ae 100644
--- a/Ryujinx.HLE/Loaders/Processes/Extensions/PartitionFileSystemExtensions.cs
+++ b/src/Ryujinx.HLE/Loaders/Processes/Extensions/PartitionFileSystemExtensions.cs
diff --git a/Ryujinx.HLE/Loaders/Processes/ProcessConst.cs b/src/Ryujinx.HLE/Loaders/Processes/ProcessConst.cs
index 42ae2e89..42ae2e89 100644
--- a/Ryujinx.HLE/Loaders/Processes/ProcessConst.cs
+++ b/src/Ryujinx.HLE/Loaders/Processes/ProcessConst.cs
diff --git a/Ryujinx.HLE/Loaders/Processes/ProcessLoader.cs b/src/Ryujinx.HLE/Loaders/Processes/ProcessLoader.cs
index 785db0e5..785db0e5 100644
--- a/Ryujinx.HLE/Loaders/Processes/ProcessLoader.cs
+++ b/src/Ryujinx.HLE/Loaders/Processes/ProcessLoader.cs
diff --git a/Ryujinx.HLE/Loaders/Processes/ProcessLoaderHelper.cs b/src/Ryujinx.HLE/Loaders/Processes/ProcessLoaderHelper.cs
index b802a642..b802a642 100644
--- a/Ryujinx.HLE/Loaders/Processes/ProcessLoaderHelper.cs
+++ b/src/Ryujinx.HLE/Loaders/Processes/ProcessLoaderHelper.cs
diff --git a/Ryujinx.HLE/Loaders/Processes/ProcessResult.cs b/src/Ryujinx.HLE/Loaders/Processes/ProcessResult.cs
index 2801e4e0..2801e4e0 100644
--- a/Ryujinx.HLE/Loaders/Processes/ProcessResult.cs
+++ b/src/Ryujinx.HLE/Loaders/Processes/ProcessResult.cs
diff --git a/Ryujinx.HLE/MemoryConfiguration.cs b/src/Ryujinx.HLE/MemoryConfiguration.cs
index 25044bb5..25044bb5 100644
--- a/Ryujinx.HLE/MemoryConfiguration.cs
+++ b/src/Ryujinx.HLE/MemoryConfiguration.cs
diff --git a/Ryujinx.HLE/PerformanceStatistics.cs b/src/Ryujinx.HLE/PerformanceStatistics.cs
index 95fc2abe..95fc2abe 100644
--- a/Ryujinx.HLE/PerformanceStatistics.cs
+++ b/src/Ryujinx.HLE/PerformanceStatistics.cs
diff --git a/Ryujinx.HLE/Ryujinx.HLE.csproj b/src/Ryujinx.HLE/Ryujinx.HLE.csproj
index 5e3aa0ea..5e3aa0ea 100644
--- a/Ryujinx.HLE/Ryujinx.HLE.csproj
+++ b/src/Ryujinx.HLE/Ryujinx.HLE.csproj
diff --git a/Ryujinx.HLE/Switch.cs b/src/Ryujinx.HLE/Switch.cs
index 62d14a54..62d14a54 100644
--- a/Ryujinx.HLE/Switch.cs
+++ b/src/Ryujinx.HLE/Switch.cs
diff --git a/Ryujinx.HLE/Ui/DynamicTextChangedHandler.cs b/src/Ryujinx.HLE/Ui/DynamicTextChangedHandler.cs
index c571fb68..c571fb68 100644
--- a/Ryujinx.HLE/Ui/DynamicTextChangedHandler.cs
+++ b/src/Ryujinx.HLE/Ui/DynamicTextChangedHandler.cs
diff --git a/Ryujinx.HLE/Ui/IDynamicTextInputHandler.cs b/src/Ryujinx.HLE/Ui/IDynamicTextInputHandler.cs
index 6e7b4c49..6e7b4c49 100644
--- a/Ryujinx.HLE/Ui/IDynamicTextInputHandler.cs
+++ b/src/Ryujinx.HLE/Ui/IDynamicTextInputHandler.cs
diff --git a/Ryujinx.HLE/Ui/IHostUiHandler.cs b/src/Ryujinx.HLE/Ui/IHostUiHandler.cs
index 91d8be85..91d8be85 100644
--- a/Ryujinx.HLE/Ui/IHostUiHandler.cs
+++ b/src/Ryujinx.HLE/Ui/IHostUiHandler.cs
diff --git a/Ryujinx.HLE/Ui/IHostUiTheme.cs b/src/Ryujinx.HLE/Ui/IHostUiTheme.cs
index 6404c80c..6404c80c 100644
--- a/Ryujinx.HLE/Ui/IHostUiTheme.cs
+++ b/src/Ryujinx.HLE/Ui/IHostUiTheme.cs
diff --git a/Ryujinx.HLE/Ui/Input/NpadButtonHandler.cs b/src/Ryujinx.HLE/Ui/Input/NpadButtonHandler.cs
index cd41f5c8..cd41f5c8 100644
--- a/Ryujinx.HLE/Ui/Input/NpadButtonHandler.cs
+++ b/src/Ryujinx.HLE/Ui/Input/NpadButtonHandler.cs
diff --git a/Ryujinx.HLE/Ui/Input/NpadReader.cs b/src/Ryujinx.HLE/Ui/Input/NpadReader.cs
index a0d78d03..a0d78d03 100644
--- a/Ryujinx.HLE/Ui/Input/NpadReader.cs
+++ b/src/Ryujinx.HLE/Ui/Input/NpadReader.cs
diff --git a/Ryujinx.HLE/Ui/KeyPressedHandler.cs b/src/Ryujinx.HLE/Ui/KeyPressedHandler.cs
index 096bf731..096bf731 100644
--- a/Ryujinx.HLE/Ui/KeyPressedHandler.cs
+++ b/src/Ryujinx.HLE/Ui/KeyPressedHandler.cs
diff --git a/Ryujinx.HLE/Ui/KeyReleasedHandler.cs b/src/Ryujinx.HLE/Ui/KeyReleasedHandler.cs
index 4faaa529..4faaa529 100644
--- a/Ryujinx.HLE/Ui/KeyReleasedHandler.cs
+++ b/src/Ryujinx.HLE/Ui/KeyReleasedHandler.cs
diff --git a/Ryujinx.HLE/Ui/RenderingSurfaceInfo.cs b/src/Ryujinx.HLE/Ui/RenderingSurfaceInfo.cs
index 0ba116ad..0ba116ad 100644
--- a/Ryujinx.HLE/Ui/RenderingSurfaceInfo.cs
+++ b/src/Ryujinx.HLE/Ui/RenderingSurfaceInfo.cs
diff --git a/Ryujinx.HLE/Ui/ThemeColor.cs b/src/Ryujinx.HLE/Ui/ThemeColor.cs
index c594c370..c594c370 100644
--- a/Ryujinx.HLE/Ui/ThemeColor.cs
+++ b/src/Ryujinx.HLE/Ui/ThemeColor.cs
diff --git a/Ryujinx.HLE/Utilities/StringUtils.cs b/src/Ryujinx.HLE/Utilities/StringUtils.cs
index 1810b1ad..1810b1ad 100644
--- a/Ryujinx.HLE/Utilities/StringUtils.cs
+++ b/src/Ryujinx.HLE/Utilities/StringUtils.cs
diff --git a/Ryujinx.Headless.SDL2/HeadlessDynamicTextInputHandler.cs b/src/Ryujinx.Headless.SDL2/HeadlessDynamicTextInputHandler.cs
index 7e624152..7e624152 100644
--- a/Ryujinx.Headless.SDL2/HeadlessDynamicTextInputHandler.cs
+++ b/src/Ryujinx.Headless.SDL2/HeadlessDynamicTextInputHandler.cs
diff --git a/Ryujinx.Headless.SDL2/HeadlessHostUiTheme.cs b/src/Ryujinx.Headless.SDL2/HeadlessHostUiTheme.cs
index 4ef00b3c..4ef00b3c 100644
--- a/Ryujinx.Headless.SDL2/HeadlessHostUiTheme.cs
+++ b/src/Ryujinx.Headless.SDL2/HeadlessHostUiTheme.cs
diff --git a/Ryujinx.Headless.SDL2/HideCursor.cs b/src/Ryujinx.Headless.SDL2/HideCursor.cs
index 2dc0bd6a..2dc0bd6a 100644
--- a/Ryujinx.Headless.SDL2/HideCursor.cs
+++ b/src/Ryujinx.Headless.SDL2/HideCursor.cs
diff --git a/Ryujinx.Headless.SDL2/OpenGL/OpenGLWindow.cs b/src/Ryujinx.Headless.SDL2/OpenGL/OpenGLWindow.cs
index 69b0f42f..69b0f42f 100644
--- a/Ryujinx.Headless.SDL2/OpenGL/OpenGLWindow.cs
+++ b/src/Ryujinx.Headless.SDL2/OpenGL/OpenGLWindow.cs
diff --git a/Ryujinx.Headless.SDL2/Options.cs b/src/Ryujinx.Headless.SDL2/Options.cs
index 982d0990..982d0990 100644
--- a/Ryujinx.Headless.SDL2/Options.cs
+++ b/src/Ryujinx.Headless.SDL2/Options.cs
diff --git a/Ryujinx.Headless.SDL2/Program.cs b/src/Ryujinx.Headless.SDL2/Program.cs
index b0bdb97f..b0bdb97f 100644
--- a/Ryujinx.Headless.SDL2/Program.cs
+++ b/src/Ryujinx.Headless.SDL2/Program.cs
diff --git a/Ryujinx.Headless.SDL2/Ryujinx.Headless.SDL2.csproj b/src/Ryujinx.Headless.SDL2/Ryujinx.Headless.SDL2.csproj
index ebb9c94c..fc912d32 100644
--- a/Ryujinx.Headless.SDL2/Ryujinx.Headless.SDL2.csproj
+++ b/src/Ryujinx.Headless.SDL2/Ryujinx.Headless.SDL2.csproj
@@ -32,18 +32,18 @@
</ItemGroup>
<ItemGroup>
- <Content Include="..\distribution\legal\THIRDPARTY.md">
+ <Content Include="..\..\distribution\legal\THIRDPARTY.md">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
<TargetPath>THIRDPARTY.md</TargetPath>
</Content>
- <Content Include="..\LICENSE.txt">
+ <Content Include="..\..\LICENSE.txt">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
<TargetPath>LICENSE.txt</TargetPath>
</Content>
</ItemGroup>
<ItemGroup Condition="'$(RuntimeIdentifier)' == 'linux-x64'">
- <Content Include="..\distribution\linux\Ryujinx.sh">
+ <Content Include="..\..\distribution\linux\Ryujinx.sh">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</ItemGroup>
diff --git a/Ryujinx.Headless.SDL2/Ryujinx.bmp b/src/Ryujinx.Headless.SDL2/Ryujinx.bmp
index 1daa7ce9..1daa7ce9 100644
--- a/Ryujinx.Headless.SDL2/Ryujinx.bmp
+++ b/src/Ryujinx.Headless.SDL2/Ryujinx.bmp
Binary files differ
diff --git a/Ryujinx.Headless.SDL2/SDL2Mouse.cs b/src/Ryujinx.Headless.SDL2/SDL2Mouse.cs
index 4ce8eafd..4ce8eafd 100644
--- a/Ryujinx.Headless.SDL2/SDL2Mouse.cs
+++ b/src/Ryujinx.Headless.SDL2/SDL2Mouse.cs
diff --git a/Ryujinx.Headless.SDL2/SDL2MouseDriver.cs b/src/Ryujinx.Headless.SDL2/SDL2MouseDriver.cs
index 8c3412ff..8c3412ff 100644
--- a/Ryujinx.Headless.SDL2/SDL2MouseDriver.cs
+++ b/src/Ryujinx.Headless.SDL2/SDL2MouseDriver.cs
diff --git a/Ryujinx.Headless.SDL2/StatusUpdatedEventArgs.cs b/src/Ryujinx.Headless.SDL2/StatusUpdatedEventArgs.cs
index 62e161df..62e161df 100644
--- a/Ryujinx.Headless.SDL2/StatusUpdatedEventArgs.cs
+++ b/src/Ryujinx.Headless.SDL2/StatusUpdatedEventArgs.cs
diff --git a/Ryujinx.Headless.SDL2/Vulkan/VulkanWindow.cs b/src/Ryujinx.Headless.SDL2/Vulkan/VulkanWindow.cs
index 172b7685..172b7685 100644
--- a/Ryujinx.Headless.SDL2/Vulkan/VulkanWindow.cs
+++ b/src/Ryujinx.Headless.SDL2/Vulkan/VulkanWindow.cs
diff --git a/Ryujinx.Headless.SDL2/WindowBase.cs b/src/Ryujinx.Headless.SDL2/WindowBase.cs
index e3371042..e3371042 100644
--- a/Ryujinx.Headless.SDL2/WindowBase.cs
+++ b/src/Ryujinx.Headless.SDL2/WindowBase.cs
diff --git a/Ryujinx.Horizon.Common/ISyscallApi.cs b/src/Ryujinx.Horizon.Common/ISyscallApi.cs
index 8fa276b5..8fa276b5 100644
--- a/Ryujinx.Horizon.Common/ISyscallApi.cs
+++ b/src/Ryujinx.Horizon.Common/ISyscallApi.cs
diff --git a/Ryujinx.Horizon.Common/IThreadContext.cs b/src/Ryujinx.Horizon.Common/IThreadContext.cs
index 47aea1a3..47aea1a3 100644
--- a/Ryujinx.Horizon.Common/IThreadContext.cs
+++ b/src/Ryujinx.Horizon.Common/IThreadContext.cs
diff --git a/Ryujinx.Horizon.Common/InvalidResultException.cs b/src/Ryujinx.Horizon.Common/InvalidResultException.cs
index cf38b640..cf38b640 100644
--- a/Ryujinx.Horizon.Common/InvalidResultException.cs
+++ b/src/Ryujinx.Horizon.Common/InvalidResultException.cs
diff --git a/Ryujinx.Horizon.Common/KernelResult.cs b/src/Ryujinx.Horizon.Common/KernelResult.cs
index 51fec205..51fec205 100644
--- a/Ryujinx.Horizon.Common/KernelResult.cs
+++ b/src/Ryujinx.Horizon.Common/KernelResult.cs
diff --git a/Ryujinx.Horizon.Common/OnScopeExit.cs b/src/Ryujinx.Horizon.Common/OnScopeExit.cs
index 2b81e492..2b81e492 100644
--- a/Ryujinx.Horizon.Common/OnScopeExit.cs
+++ b/src/Ryujinx.Horizon.Common/OnScopeExit.cs
diff --git a/Ryujinx.Horizon.Common/Result.cs b/src/Ryujinx.Horizon.Common/Result.cs
index 28056310..28056310 100644
--- a/Ryujinx.Horizon.Common/Result.cs
+++ b/src/Ryujinx.Horizon.Common/Result.cs
diff --git a/Ryujinx.Horizon.Common/ResultNames.cs b/src/Ryujinx.Horizon.Common/ResultNames.cs
index 8f8173ed..8f8173ed 100644
--- a/Ryujinx.Horizon.Common/ResultNames.cs
+++ b/src/Ryujinx.Horizon.Common/ResultNames.cs
diff --git a/Ryujinx.Horizon.Common/Ryujinx.Horizon.Common.csproj b/src/Ryujinx.Horizon.Common/Ryujinx.Horizon.Common.csproj
index d04c5a9b..d04c5a9b 100644
--- a/Ryujinx.Horizon.Common/Ryujinx.Horizon.Common.csproj
+++ b/src/Ryujinx.Horizon.Common/Ryujinx.Horizon.Common.csproj
diff --git a/Ryujinx.Horizon.Common/ThreadTerminatedException.cs b/src/Ryujinx.Horizon.Common/ThreadTerminatedException.cs
index c86cb05f..c86cb05f 100644
--- a/Ryujinx.Horizon.Common/ThreadTerminatedException.cs
+++ b/src/Ryujinx.Horizon.Common/ThreadTerminatedException.cs
diff --git a/Ryujinx.Horizon.Generators/CodeGenerator.cs b/src/Ryujinx.Horizon.Generators/CodeGenerator.cs
index 29e1c75c..29e1c75c 100644
--- a/Ryujinx.Horizon.Generators/CodeGenerator.cs
+++ b/src/Ryujinx.Horizon.Generators/CodeGenerator.cs
diff --git a/Ryujinx.Horizon.Generators/Hipc/CommandArgType.cs b/src/Ryujinx.Horizon.Generators/Hipc/CommandArgType.cs
index b859f1f3..b859f1f3 100644
--- a/Ryujinx.Horizon.Generators/Hipc/CommandArgType.cs
+++ b/src/Ryujinx.Horizon.Generators/Hipc/CommandArgType.cs
diff --git a/Ryujinx.Horizon.Generators/Hipc/CommandInterface.cs b/src/Ryujinx.Horizon.Generators/Hipc/CommandInterface.cs
index 2ee19282..2ee19282 100644
--- a/Ryujinx.Horizon.Generators/Hipc/CommandInterface.cs
+++ b/src/Ryujinx.Horizon.Generators/Hipc/CommandInterface.cs
diff --git a/Ryujinx.Horizon.Generators/Hipc/HipcGenerator.cs b/src/Ryujinx.Horizon.Generators/Hipc/HipcGenerator.cs
index 8f4c37f7..8f4c37f7 100644
--- a/Ryujinx.Horizon.Generators/Hipc/HipcGenerator.cs
+++ b/src/Ryujinx.Horizon.Generators/Hipc/HipcGenerator.cs
diff --git a/Ryujinx.Horizon.Generators/Hipc/HipcSyntaxReceiver.cs b/src/Ryujinx.Horizon.Generators/Hipc/HipcSyntaxReceiver.cs
index 4b998dbe..4b998dbe 100644
--- a/Ryujinx.Horizon.Generators/Hipc/HipcSyntaxReceiver.cs
+++ b/src/Ryujinx.Horizon.Generators/Hipc/HipcSyntaxReceiver.cs
diff --git a/Ryujinx.Horizon.Generators/Ryujinx.Horizon.Generators.csproj b/src/Ryujinx.Horizon.Generators/Ryujinx.Horizon.Generators.csproj
index d5880399..d5880399 100644
--- a/Ryujinx.Horizon.Generators/Ryujinx.Horizon.Generators.csproj
+++ b/src/Ryujinx.Horizon.Generators/Ryujinx.Horizon.Generators.csproj
diff --git a/Ryujinx.Horizon.Kernel.Generators/CodeGenerator.cs b/src/Ryujinx.Horizon.Kernel.Generators/CodeGenerator.cs
index 80a33c66..80a33c66 100644
--- a/Ryujinx.Horizon.Kernel.Generators/CodeGenerator.cs
+++ b/src/Ryujinx.Horizon.Kernel.Generators/CodeGenerator.cs
diff --git a/Ryujinx.Horizon.Kernel.Generators/Kernel/SyscallGenerator.cs b/src/Ryujinx.Horizon.Kernel.Generators/Kernel/SyscallGenerator.cs
index 51da2187..51da2187 100644
--- a/Ryujinx.Horizon.Kernel.Generators/Kernel/SyscallGenerator.cs
+++ b/src/Ryujinx.Horizon.Kernel.Generators/Kernel/SyscallGenerator.cs
diff --git a/Ryujinx.Horizon.Kernel.Generators/Kernel/SyscallSyntaxReceiver.cs b/src/Ryujinx.Horizon.Kernel.Generators/Kernel/SyscallSyntaxReceiver.cs
index e480a859..e480a859 100644
--- a/Ryujinx.Horizon.Kernel.Generators/Kernel/SyscallSyntaxReceiver.cs
+++ b/src/Ryujinx.Horizon.Kernel.Generators/Kernel/SyscallSyntaxReceiver.cs
diff --git a/Ryujinx.Horizon.Kernel.Generators/Ryujinx.Horizon.Kernel.Generators.csproj b/src/Ryujinx.Horizon.Kernel.Generators/Ryujinx.Horizon.Kernel.Generators.csproj
index d5880399..d5880399 100644
--- a/Ryujinx.Horizon.Kernel.Generators/Ryujinx.Horizon.Kernel.Generators.csproj
+++ b/src/Ryujinx.Horizon.Kernel.Generators/Ryujinx.Horizon.Kernel.Generators.csproj
diff --git a/Ryujinx.Horizon/HeapAllocator.cs b/src/Ryujinx.Horizon/HeapAllocator.cs
index 40ff14d0..40ff14d0 100644
--- a/Ryujinx.Horizon/HeapAllocator.cs
+++ b/src/Ryujinx.Horizon/HeapAllocator.cs
diff --git a/Ryujinx.Horizon/HorizonOptions.cs b/src/Ryujinx.Horizon/HorizonOptions.cs
index 6d580e8b..6d580e8b 100644
--- a/Ryujinx.Horizon/HorizonOptions.cs
+++ b/src/Ryujinx.Horizon/HorizonOptions.cs
diff --git a/Ryujinx.Horizon/HorizonStatic.cs b/src/Ryujinx.Horizon/HorizonStatic.cs
index e372df69..e372df69 100644
--- a/Ryujinx.Horizon/HorizonStatic.cs
+++ b/src/Ryujinx.Horizon/HorizonStatic.cs
diff --git a/Ryujinx.Horizon/IService.cs b/src/Ryujinx.Horizon/IService.cs
index c0bc0bcb..c0bc0bcb 100644
--- a/Ryujinx.Horizon/IService.cs
+++ b/src/Ryujinx.Horizon/IService.cs
diff --git a/Ryujinx.Horizon/LogManager/Ipc/LmLogger.cs b/src/Ryujinx.Horizon/LogManager/Ipc/LmLogger.cs
index e930bdd7..e930bdd7 100644
--- a/Ryujinx.Horizon/LogManager/Ipc/LmLogger.cs
+++ b/src/Ryujinx.Horizon/LogManager/Ipc/LmLogger.cs
diff --git a/Ryujinx.Horizon/LogManager/Ipc/LogService.cs b/src/Ryujinx.Horizon/LogManager/Ipc/LogService.cs
index 6899739e..6899739e 100644
--- a/Ryujinx.Horizon/LogManager/Ipc/LogService.cs
+++ b/src/Ryujinx.Horizon/LogManager/Ipc/LogService.cs
diff --git a/Ryujinx.Horizon/LogManager/LmIpcServer.cs b/src/Ryujinx.Horizon/LogManager/LmIpcServer.cs
index 71b844a2..71b844a2 100644
--- a/Ryujinx.Horizon/LogManager/LmIpcServer.cs
+++ b/src/Ryujinx.Horizon/LogManager/LmIpcServer.cs
diff --git a/Ryujinx.Horizon/LogManager/LmMain.cs b/src/Ryujinx.Horizon/LogManager/LmMain.cs
index bbe96d4c..bbe96d4c 100644
--- a/Ryujinx.Horizon/LogManager/LmMain.cs
+++ b/src/Ryujinx.Horizon/LogManager/LmMain.cs
diff --git a/Ryujinx.Horizon/LogManager/Types/LogPacket.cs b/src/Ryujinx.Horizon/LogManager/Types/LogPacket.cs
index dbff5e3e..dbff5e3e 100644
--- a/Ryujinx.Horizon/LogManager/Types/LogPacket.cs
+++ b/src/Ryujinx.Horizon/LogManager/Types/LogPacket.cs
diff --git a/Ryujinx.Horizon/Prepo/Ipc/PrepoService.cs b/src/Ryujinx.Horizon/Prepo/Ipc/PrepoService.cs
index e157fa56..e157fa56 100644
--- a/Ryujinx.Horizon/Prepo/Ipc/PrepoService.cs
+++ b/src/Ryujinx.Horizon/Prepo/Ipc/PrepoService.cs
diff --git a/Ryujinx.Horizon/Prepo/PrepoIpcServer.cs b/src/Ryujinx.Horizon/Prepo/PrepoIpcServer.cs
index ba19ff6f..ba19ff6f 100644
--- a/Ryujinx.Horizon/Prepo/PrepoIpcServer.cs
+++ b/src/Ryujinx.Horizon/Prepo/PrepoIpcServer.cs
diff --git a/Ryujinx.Horizon/Prepo/PrepoMain.cs b/src/Ryujinx.Horizon/Prepo/PrepoMain.cs
index 5ff0f53d..5ff0f53d 100644
--- a/Ryujinx.Horizon/Prepo/PrepoMain.cs
+++ b/src/Ryujinx.Horizon/Prepo/PrepoMain.cs
diff --git a/Ryujinx.Horizon/Prepo/PrepoResult.cs b/src/Ryujinx.Horizon/Prepo/PrepoResult.cs
index 12255e3d..12255e3d 100644
--- a/Ryujinx.Horizon/Prepo/PrepoResult.cs
+++ b/src/Ryujinx.Horizon/Prepo/PrepoResult.cs
diff --git a/Ryujinx.Horizon/Prepo/PrepoServerManager.cs b/src/Ryujinx.Horizon/Prepo/PrepoServerManager.cs
index 55e4ff7d..55e4ff7d 100644
--- a/Ryujinx.Horizon/Prepo/PrepoServerManager.cs
+++ b/src/Ryujinx.Horizon/Prepo/PrepoServerManager.cs
diff --git a/Ryujinx.Horizon/Prepo/Types/PrepoPortIndex.cs b/src/Ryujinx.Horizon/Prepo/Types/PrepoPortIndex.cs
index f4d6b877..f4d6b877 100644
--- a/Ryujinx.Horizon/Prepo/Types/PrepoPortIndex.cs
+++ b/src/Ryujinx.Horizon/Prepo/Types/PrepoPortIndex.cs
diff --git a/Ryujinx.Horizon/Prepo/Types/PrepoServicePermissionLevel.cs b/src/Ryujinx.Horizon/Prepo/Types/PrepoServicePermissionLevel.cs
index 8214f4b9..8214f4b9 100644
--- a/Ryujinx.Horizon/Prepo/Types/PrepoServicePermissionLevel.cs
+++ b/src/Ryujinx.Horizon/Prepo/Types/PrepoServicePermissionLevel.cs
diff --git a/Ryujinx.Horizon/Ryujinx.Horizon.csproj b/src/Ryujinx.Horizon/Ryujinx.Horizon.csproj
index 0139c367..0139c367 100644
--- a/Ryujinx.Horizon/Ryujinx.Horizon.csproj
+++ b/src/Ryujinx.Horizon/Ryujinx.Horizon.csproj
diff --git a/Ryujinx.Horizon/Sdk/Account/Uid.cs b/src/Ryujinx.Horizon/Sdk/Account/Uid.cs
index 5aad0463..5aad0463 100644
--- a/Ryujinx.Horizon/Sdk/Account/Uid.cs
+++ b/src/Ryujinx.Horizon/Sdk/Account/Uid.cs
diff --git a/Ryujinx.Horizon/Sdk/DebugUtil.cs b/src/Ryujinx.Horizon/Sdk/DebugUtil.cs
index f56a50ec..f56a50ec 100644
--- a/Ryujinx.Horizon/Sdk/DebugUtil.cs
+++ b/src/Ryujinx.Horizon/Sdk/DebugUtil.cs
diff --git a/Ryujinx.Horizon/Sdk/Diag/LogSeverity.cs b/src/Ryujinx.Horizon/Sdk/Diag/LogSeverity.cs
index 72acf789..72acf789 100644
--- a/Ryujinx.Horizon/Sdk/Diag/LogSeverity.cs
+++ b/src/Ryujinx.Horizon/Sdk/Diag/LogSeverity.cs
diff --git a/Ryujinx.Horizon/Sdk/Lm/ILmLogger.cs b/src/Ryujinx.Horizon/Sdk/Lm/ILmLogger.cs
index bb5770cb..bb5770cb 100644
--- a/Ryujinx.Horizon/Sdk/Lm/ILmLogger.cs
+++ b/src/Ryujinx.Horizon/Sdk/Lm/ILmLogger.cs
diff --git a/Ryujinx.Horizon/Sdk/Lm/ILogService.cs b/src/Ryujinx.Horizon/Sdk/Lm/ILogService.cs
index ad6c8455..ad6c8455 100644
--- a/Ryujinx.Horizon/Sdk/Lm/ILogService.cs
+++ b/src/Ryujinx.Horizon/Sdk/Lm/ILogService.cs
diff --git a/Ryujinx.Horizon/Sdk/Lm/LogDataChunkKey.cs b/src/Ryujinx.Horizon/Sdk/Lm/LogDataChunkKey.cs
index 90756ece..90756ece 100644
--- a/Ryujinx.Horizon/Sdk/Lm/LogDataChunkKey.cs
+++ b/src/Ryujinx.Horizon/Sdk/Lm/LogDataChunkKey.cs
diff --git a/Ryujinx.Horizon/Sdk/Lm/LogDestination.cs b/src/Ryujinx.Horizon/Sdk/Lm/LogDestination.cs
index 8b08548d..8b08548d 100644
--- a/Ryujinx.Horizon/Sdk/Lm/LogDestination.cs
+++ b/src/Ryujinx.Horizon/Sdk/Lm/LogDestination.cs
diff --git a/Ryujinx.Horizon/Sdk/Lm/LogPacketFlags.cs b/src/Ryujinx.Horizon/Sdk/Lm/LogPacketFlags.cs
index 75d9f40b..75d9f40b 100644
--- a/Ryujinx.Horizon/Sdk/Lm/LogPacketFlags.cs
+++ b/src/Ryujinx.Horizon/Sdk/Lm/LogPacketFlags.cs
diff --git a/Ryujinx.Horizon/Sdk/Lm/LogPacketHeader.cs b/src/Ryujinx.Horizon/Sdk/Lm/LogPacketHeader.cs
index 022ba8da..022ba8da 100644
--- a/Ryujinx.Horizon/Sdk/Lm/LogPacketHeader.cs
+++ b/src/Ryujinx.Horizon/Sdk/Lm/LogPacketHeader.cs
diff --git a/Ryujinx.Horizon/Sdk/Ncm/ApplicationId.cs b/src/Ryujinx.Horizon/Sdk/Ncm/ApplicationId.cs
index 37b4cbfb..37b4cbfb 100644
--- a/Ryujinx.Horizon/Sdk/Ncm/ApplicationId.cs
+++ b/src/Ryujinx.Horizon/Sdk/Ncm/ApplicationId.cs
diff --git a/Ryujinx.Horizon/Sdk/OsTypes/Event.cs b/src/Ryujinx.Horizon/Sdk/OsTypes/Event.cs
index 79d7408e..79d7408e 100644
--- a/Ryujinx.Horizon/Sdk/OsTypes/Event.cs
+++ b/src/Ryujinx.Horizon/Sdk/OsTypes/Event.cs
diff --git a/Ryujinx.Horizon/Sdk/OsTypes/EventClearMode.cs b/src/Ryujinx.Horizon/Sdk/OsTypes/EventClearMode.cs
index b500e6b3..b500e6b3 100644
--- a/Ryujinx.Horizon/Sdk/OsTypes/EventClearMode.cs
+++ b/src/Ryujinx.Horizon/Sdk/OsTypes/EventClearMode.cs
diff --git a/Ryujinx.Horizon/Sdk/OsTypes/EventType.cs b/src/Ryujinx.Horizon/Sdk/OsTypes/EventType.cs
index b4b1a275..b4b1a275 100644
--- a/Ryujinx.Horizon/Sdk/OsTypes/EventType.cs
+++ b/src/Ryujinx.Horizon/Sdk/OsTypes/EventType.cs
diff --git a/Ryujinx.Horizon/Sdk/OsTypes/Impl/InterProcessEvent.cs b/src/Ryujinx.Horizon/Sdk/OsTypes/Impl/InterProcessEvent.cs
index 62b5bf06..62b5bf06 100644
--- a/Ryujinx.Horizon/Sdk/OsTypes/Impl/InterProcessEvent.cs
+++ b/src/Ryujinx.Horizon/Sdk/OsTypes/Impl/InterProcessEvent.cs
diff --git a/Ryujinx.Horizon/Sdk/OsTypes/Impl/InterProcessEventImpl.cs b/src/Ryujinx.Horizon/Sdk/OsTypes/Impl/InterProcessEventImpl.cs
index a8aeacc9..a8aeacc9 100644
--- a/Ryujinx.Horizon/Sdk/OsTypes/Impl/InterProcessEventImpl.cs
+++ b/src/Ryujinx.Horizon/Sdk/OsTypes/Impl/InterProcessEventImpl.cs
diff --git a/Ryujinx.Horizon/Sdk/OsTypes/Impl/MultiWaitImpl.cs b/src/Ryujinx.Horizon/Sdk/OsTypes/Impl/MultiWaitImpl.cs
index a4a671ea..a4a671ea 100644
--- a/Ryujinx.Horizon/Sdk/OsTypes/Impl/MultiWaitImpl.cs
+++ b/src/Ryujinx.Horizon/Sdk/OsTypes/Impl/MultiWaitImpl.cs
diff --git a/Ryujinx.Horizon/Sdk/OsTypes/InitializationState.cs b/src/Ryujinx.Horizon/Sdk/OsTypes/InitializationState.cs
index 45ffd258..45ffd258 100644
--- a/Ryujinx.Horizon/Sdk/OsTypes/InitializationState.cs
+++ b/src/Ryujinx.Horizon/Sdk/OsTypes/InitializationState.cs
diff --git a/Ryujinx.Horizon/Sdk/OsTypes/InterProcessEventType.cs b/src/Ryujinx.Horizon/Sdk/OsTypes/InterProcessEventType.cs
index 5f6824fe..5f6824fe 100644
--- a/Ryujinx.Horizon/Sdk/OsTypes/InterProcessEventType.cs
+++ b/src/Ryujinx.Horizon/Sdk/OsTypes/InterProcessEventType.cs
diff --git a/Ryujinx.Horizon/Sdk/OsTypes/MultiWait.cs b/src/Ryujinx.Horizon/Sdk/OsTypes/MultiWait.cs
index 5a91f6c3..5a91f6c3 100644
--- a/Ryujinx.Horizon/Sdk/OsTypes/MultiWait.cs
+++ b/src/Ryujinx.Horizon/Sdk/OsTypes/MultiWait.cs
diff --git a/Ryujinx.Horizon/Sdk/OsTypes/MultiWaitHolder.cs b/src/Ryujinx.Horizon/Sdk/OsTypes/MultiWaitHolder.cs
index a24b1906..a24b1906 100644
--- a/Ryujinx.Horizon/Sdk/OsTypes/MultiWaitHolder.cs
+++ b/src/Ryujinx.Horizon/Sdk/OsTypes/MultiWaitHolder.cs
diff --git a/Ryujinx.Horizon/Sdk/OsTypes/MultiWaitHolderBase.cs b/src/Ryujinx.Horizon/Sdk/OsTypes/MultiWaitHolderBase.cs
index 018305ba..018305ba 100644
--- a/Ryujinx.Horizon/Sdk/OsTypes/MultiWaitHolderBase.cs
+++ b/src/Ryujinx.Horizon/Sdk/OsTypes/MultiWaitHolderBase.cs
diff --git a/Ryujinx.Horizon/Sdk/OsTypes/MultiWaitHolderOfEvent.cs b/src/Ryujinx.Horizon/Sdk/OsTypes/MultiWaitHolderOfEvent.cs
index 37ac22f0..37ac22f0 100644
--- a/Ryujinx.Horizon/Sdk/OsTypes/MultiWaitHolderOfEvent.cs
+++ b/src/Ryujinx.Horizon/Sdk/OsTypes/MultiWaitHolderOfEvent.cs
diff --git a/Ryujinx.Horizon/Sdk/OsTypes/MultiWaitHolderOfHandle.cs b/src/Ryujinx.Horizon/Sdk/OsTypes/MultiWaitHolderOfHandle.cs
index 6fc5c75b..6fc5c75b 100644
--- a/Ryujinx.Horizon/Sdk/OsTypes/MultiWaitHolderOfHandle.cs
+++ b/src/Ryujinx.Horizon/Sdk/OsTypes/MultiWaitHolderOfHandle.cs
diff --git a/Ryujinx.Horizon/Sdk/OsTypes/OsEvent.cs b/src/Ryujinx.Horizon/Sdk/OsTypes/OsEvent.cs
index cc7e8483..cc7e8483 100644
--- a/Ryujinx.Horizon/Sdk/OsTypes/OsEvent.cs
+++ b/src/Ryujinx.Horizon/Sdk/OsTypes/OsEvent.cs
diff --git a/Ryujinx.Horizon/Sdk/OsTypes/OsMultiWait.cs b/src/Ryujinx.Horizon/Sdk/OsTypes/OsMultiWait.cs
index 827de231..827de231 100644
--- a/Ryujinx.Horizon/Sdk/OsTypes/OsMultiWait.cs
+++ b/src/Ryujinx.Horizon/Sdk/OsTypes/OsMultiWait.cs
diff --git a/Ryujinx.Horizon/Sdk/OsTypes/OsProcessHandle.cs b/src/Ryujinx.Horizon/Sdk/OsTypes/OsProcessHandle.cs
index 6a6d9bf2..6a6d9bf2 100644
--- a/Ryujinx.Horizon/Sdk/OsTypes/OsProcessHandle.cs
+++ b/src/Ryujinx.Horizon/Sdk/OsTypes/OsProcessHandle.cs
diff --git a/Ryujinx.Horizon/Sdk/OsTypes/OsResult.cs b/src/Ryujinx.Horizon/Sdk/OsTypes/OsResult.cs
index 86dcd1fa..86dcd1fa 100644
--- a/Ryujinx.Horizon/Sdk/OsTypes/OsResult.cs
+++ b/src/Ryujinx.Horizon/Sdk/OsTypes/OsResult.cs
diff --git a/Ryujinx.Horizon/Sdk/OsTypes/OsSystemEvent.cs b/src/Ryujinx.Horizon/Sdk/OsTypes/OsSystemEvent.cs
index 40723a5c..40723a5c 100644
--- a/Ryujinx.Horizon/Sdk/OsTypes/OsSystemEvent.cs
+++ b/src/Ryujinx.Horizon/Sdk/OsTypes/OsSystemEvent.cs
diff --git a/Ryujinx.Horizon/Sdk/OsTypes/OsThreadManager.cs b/src/Ryujinx.Horizon/Sdk/OsTypes/OsThreadManager.cs
index 2037cd7f..2037cd7f 100644
--- a/Ryujinx.Horizon/Sdk/OsTypes/OsThreadManager.cs
+++ b/src/Ryujinx.Horizon/Sdk/OsTypes/OsThreadManager.cs
diff --git a/Ryujinx.Horizon/Sdk/OsTypes/SystemEventType.cs b/src/Ryujinx.Horizon/Sdk/OsTypes/SystemEventType.cs
index 338493d2..338493d2 100644
--- a/Ryujinx.Horizon/Sdk/OsTypes/SystemEventType.cs
+++ b/src/Ryujinx.Horizon/Sdk/OsTypes/SystemEventType.cs
diff --git a/Ryujinx.Horizon/Sdk/OsTypes/TriBool.cs b/src/Ryujinx.Horizon/Sdk/OsTypes/TriBool.cs
index 7debd9e2..7debd9e2 100644
--- a/Ryujinx.Horizon/Sdk/OsTypes/TriBool.cs
+++ b/src/Ryujinx.Horizon/Sdk/OsTypes/TriBool.cs
diff --git a/Ryujinx.Horizon/Sdk/Prepo/IPrepoService.cs b/src/Ryujinx.Horizon/Sdk/Prepo/IPrepoService.cs
index 042cb400..042cb400 100644
--- a/Ryujinx.Horizon/Sdk/Prepo/IPrepoService.cs
+++ b/src/Ryujinx.Horizon/Sdk/Prepo/IPrepoService.cs
diff --git a/Ryujinx.Horizon/Sdk/ServiceUtil.cs b/src/Ryujinx.Horizon/Sdk/ServiceUtil.cs
index fe6fcce1..fe6fcce1 100644
--- a/Ryujinx.Horizon/Sdk/ServiceUtil.cs
+++ b/src/Ryujinx.Horizon/Sdk/ServiceUtil.cs
diff --git a/Ryujinx.Horizon/Sdk/Sf/Cmif/CmifDomainInHeader.cs b/src/Ryujinx.Horizon/Sdk/Sf/Cmif/CmifDomainInHeader.cs
index beaff613..beaff613 100644
--- a/Ryujinx.Horizon/Sdk/Sf/Cmif/CmifDomainInHeader.cs
+++ b/src/Ryujinx.Horizon/Sdk/Sf/Cmif/CmifDomainInHeader.cs
diff --git a/Ryujinx.Horizon/Sdk/Sf/Cmif/CmifDomainOutHeader.cs b/src/Ryujinx.Horizon/Sdk/Sf/Cmif/CmifDomainOutHeader.cs
index 2086d24c..2086d24c 100644
--- a/Ryujinx.Horizon/Sdk/Sf/Cmif/CmifDomainOutHeader.cs
+++ b/src/Ryujinx.Horizon/Sdk/Sf/Cmif/CmifDomainOutHeader.cs
diff --git a/Ryujinx.Horizon/Sdk/Sf/Cmif/CmifDomainRequestType.cs b/src/Ryujinx.Horizon/Sdk/Sf/Cmif/CmifDomainRequestType.cs
index 1a02e082..1a02e082 100644
--- a/Ryujinx.Horizon/Sdk/Sf/Cmif/CmifDomainRequestType.cs
+++ b/src/Ryujinx.Horizon/Sdk/Sf/Cmif/CmifDomainRequestType.cs
diff --git a/Ryujinx.Horizon/Sdk/Sf/Cmif/CmifInHeader.cs b/src/Ryujinx.Horizon/Sdk/Sf/Cmif/CmifInHeader.cs
index 55b859fc..55b859fc 100644
--- a/Ryujinx.Horizon/Sdk/Sf/Cmif/CmifInHeader.cs
+++ b/src/Ryujinx.Horizon/Sdk/Sf/Cmif/CmifInHeader.cs
diff --git a/Ryujinx.Horizon/Sdk/Sf/Cmif/CmifMessage.cs b/src/Ryujinx.Horizon/Sdk/Sf/Cmif/CmifMessage.cs
index 0d23d33b..0d23d33b 100644
--- a/Ryujinx.Horizon/Sdk/Sf/Cmif/CmifMessage.cs
+++ b/src/Ryujinx.Horizon/Sdk/Sf/Cmif/CmifMessage.cs
diff --git a/Ryujinx.Horizon/Sdk/Sf/Cmif/CmifOutHeader.cs b/src/Ryujinx.Horizon/Sdk/Sf/Cmif/CmifOutHeader.cs
index 00b9d2bd..00b9d2bd 100644
--- a/Ryujinx.Horizon/Sdk/Sf/Cmif/CmifOutHeader.cs
+++ b/src/Ryujinx.Horizon/Sdk/Sf/Cmif/CmifOutHeader.cs
diff --git a/Ryujinx.Horizon/Sdk/Sf/Cmif/CmifRequest.cs b/src/Ryujinx.Horizon/Sdk/Sf/Cmif/CmifRequest.cs
index e44a84ec..e44a84ec 100644
--- a/Ryujinx.Horizon/Sdk/Sf/Cmif/CmifRequest.cs
+++ b/src/Ryujinx.Horizon/Sdk/Sf/Cmif/CmifRequest.cs
diff --git a/Ryujinx.Horizon/Sdk/Sf/Cmif/CmifRequestFormat.cs b/src/Ryujinx.Horizon/Sdk/Sf/Cmif/CmifRequestFormat.cs
index 592f11f4..592f11f4 100644
--- a/Ryujinx.Horizon/Sdk/Sf/Cmif/CmifRequestFormat.cs
+++ b/src/Ryujinx.Horizon/Sdk/Sf/Cmif/CmifRequestFormat.cs
diff --git a/Ryujinx.Horizon/Sdk/Sf/Cmif/CmifResponse.cs b/src/Ryujinx.Horizon/Sdk/Sf/Cmif/CmifResponse.cs
index 2ff31eb6..2ff31eb6 100644
--- a/Ryujinx.Horizon/Sdk/Sf/Cmif/CmifResponse.cs
+++ b/src/Ryujinx.Horizon/Sdk/Sf/Cmif/CmifResponse.cs
diff --git a/Ryujinx.Horizon/Sdk/Sf/Cmif/CommandType.cs b/src/Ryujinx.Horizon/Sdk/Sf/Cmif/CommandType.cs
index 82c0648b..82c0648b 100644
--- a/Ryujinx.Horizon/Sdk/Sf/Cmif/CommandType.cs
+++ b/src/Ryujinx.Horizon/Sdk/Sf/Cmif/CommandType.cs
diff --git a/Ryujinx.Horizon/Sdk/Sf/Cmif/DomainServiceObject.cs b/src/Ryujinx.Horizon/Sdk/Sf/Cmif/DomainServiceObject.cs
index 14839687..14839687 100644
--- a/Ryujinx.Horizon/Sdk/Sf/Cmif/DomainServiceObject.cs
+++ b/src/Ryujinx.Horizon/Sdk/Sf/Cmif/DomainServiceObject.cs
diff --git a/Ryujinx.Horizon/Sdk/Sf/Cmif/DomainServiceObjectDispatchTable.cs b/src/Ryujinx.Horizon/Sdk/Sf/Cmif/DomainServiceObjectDispatchTable.cs
index b0b4498d..b0b4498d 100644
--- a/Ryujinx.Horizon/Sdk/Sf/Cmif/DomainServiceObjectDispatchTable.cs
+++ b/src/Ryujinx.Horizon/Sdk/Sf/Cmif/DomainServiceObjectDispatchTable.cs
diff --git a/Ryujinx.Horizon/Sdk/Sf/Cmif/DomainServiceObjectProcessor.cs b/src/Ryujinx.Horizon/Sdk/Sf/Cmif/DomainServiceObjectProcessor.cs
index 796b8a78..796b8a78 100644
--- a/Ryujinx.Horizon/Sdk/Sf/Cmif/DomainServiceObjectProcessor.cs
+++ b/src/Ryujinx.Horizon/Sdk/Sf/Cmif/DomainServiceObjectProcessor.cs
diff --git a/Ryujinx.Horizon/Sdk/Sf/Cmif/HandlesToClose.cs b/src/Ryujinx.Horizon/Sdk/Sf/Cmif/HandlesToClose.cs
index 0f3b259a..0f3b259a 100644
--- a/Ryujinx.Horizon/Sdk/Sf/Cmif/HandlesToClose.cs
+++ b/src/Ryujinx.Horizon/Sdk/Sf/Cmif/HandlesToClose.cs
diff --git a/Ryujinx.Horizon/Sdk/Sf/Cmif/InlineContext.cs b/src/Ryujinx.Horizon/Sdk/Sf/Cmif/InlineContext.cs
index ddb6943f..ddb6943f 100644
--- a/Ryujinx.Horizon/Sdk/Sf/Cmif/InlineContext.cs
+++ b/src/Ryujinx.Horizon/Sdk/Sf/Cmif/InlineContext.cs
diff --git a/Ryujinx.Horizon/Sdk/Sf/Cmif/PointerAndSize.cs b/src/Ryujinx.Horizon/Sdk/Sf/Cmif/PointerAndSize.cs
index ad0e1824..ad0e1824 100644
--- a/Ryujinx.Horizon/Sdk/Sf/Cmif/PointerAndSize.cs
+++ b/src/Ryujinx.Horizon/Sdk/Sf/Cmif/PointerAndSize.cs
diff --git a/Ryujinx.Horizon/Sdk/Sf/Cmif/ScopedInlineContextChange.cs b/src/Ryujinx.Horizon/Sdk/Sf/Cmif/ScopedInlineContextChange.cs
index eabe544f..eabe544f 100644
--- a/Ryujinx.Horizon/Sdk/Sf/Cmif/ScopedInlineContextChange.cs
+++ b/src/Ryujinx.Horizon/Sdk/Sf/Cmif/ScopedInlineContextChange.cs
diff --git a/Ryujinx.Horizon/Sdk/Sf/Cmif/ServerDomainBase.cs b/src/Ryujinx.Horizon/Sdk/Sf/Cmif/ServerDomainBase.cs
index f38fa030..f38fa030 100644
--- a/Ryujinx.Horizon/Sdk/Sf/Cmif/ServerDomainBase.cs
+++ b/src/Ryujinx.Horizon/Sdk/Sf/Cmif/ServerDomainBase.cs
diff --git a/Ryujinx.Horizon/Sdk/Sf/Cmif/ServerDomainManager.cs b/src/Ryujinx.Horizon/Sdk/Sf/Cmif/ServerDomainManager.cs
index 62ee2738..62ee2738 100644
--- a/Ryujinx.Horizon/Sdk/Sf/Cmif/ServerDomainManager.cs
+++ b/src/Ryujinx.Horizon/Sdk/Sf/Cmif/ServerDomainManager.cs
diff --git a/Ryujinx.Horizon/Sdk/Sf/Cmif/ServerMessageProcessor.cs b/src/Ryujinx.Horizon/Sdk/Sf/Cmif/ServerMessageProcessor.cs
index e7650238..e7650238 100644
--- a/Ryujinx.Horizon/Sdk/Sf/Cmif/ServerMessageProcessor.cs
+++ b/src/Ryujinx.Horizon/Sdk/Sf/Cmif/ServerMessageProcessor.cs
diff --git a/Ryujinx.Horizon/Sdk/Sf/Cmif/ServerMessageRuntimeMetadata.cs b/src/Ryujinx.Horizon/Sdk/Sf/Cmif/ServerMessageRuntimeMetadata.cs
index 6a92e8d5..6a92e8d5 100644
--- a/Ryujinx.Horizon/Sdk/Sf/Cmif/ServerMessageRuntimeMetadata.cs
+++ b/src/Ryujinx.Horizon/Sdk/Sf/Cmif/ServerMessageRuntimeMetadata.cs
diff --git a/Ryujinx.Horizon/Sdk/Sf/Cmif/ServiceDispatchContext.cs b/src/Ryujinx.Horizon/Sdk/Sf/Cmif/ServiceDispatchContext.cs
index 31be810d..31be810d 100644
--- a/Ryujinx.Horizon/Sdk/Sf/Cmif/ServiceDispatchContext.cs
+++ b/src/Ryujinx.Horizon/Sdk/Sf/Cmif/ServiceDispatchContext.cs
diff --git a/Ryujinx.Horizon/Sdk/Sf/Cmif/ServiceDispatchMeta.cs b/src/Ryujinx.Horizon/Sdk/Sf/Cmif/ServiceDispatchMeta.cs
index 7fbd8eb8..7fbd8eb8 100644
--- a/Ryujinx.Horizon/Sdk/Sf/Cmif/ServiceDispatchMeta.cs
+++ b/src/Ryujinx.Horizon/Sdk/Sf/Cmif/ServiceDispatchMeta.cs
diff --git a/Ryujinx.Horizon/Sdk/Sf/Cmif/ServiceDispatchTable.cs b/src/Ryujinx.Horizon/Sdk/Sf/Cmif/ServiceDispatchTable.cs
index 21b342df..21b342df 100644
--- a/Ryujinx.Horizon/Sdk/Sf/Cmif/ServiceDispatchTable.cs
+++ b/src/Ryujinx.Horizon/Sdk/Sf/Cmif/ServiceDispatchTable.cs
diff --git a/Ryujinx.Horizon/Sdk/Sf/Cmif/ServiceDispatchTableBase.cs b/src/Ryujinx.Horizon/Sdk/Sf/Cmif/ServiceDispatchTableBase.cs
index 81600067..81600067 100644
--- a/Ryujinx.Horizon/Sdk/Sf/Cmif/ServiceDispatchTableBase.cs
+++ b/src/Ryujinx.Horizon/Sdk/Sf/Cmif/ServiceDispatchTableBase.cs
diff --git a/Ryujinx.Horizon/Sdk/Sf/Cmif/ServiceObjectHolder.cs b/src/Ryujinx.Horizon/Sdk/Sf/Cmif/ServiceObjectHolder.cs
index 6e87e340..6e87e340 100644
--- a/Ryujinx.Horizon/Sdk/Sf/Cmif/ServiceObjectHolder.cs
+++ b/src/Ryujinx.Horizon/Sdk/Sf/Cmif/ServiceObjectHolder.cs
diff --git a/Ryujinx.Horizon/Sdk/Sf/CmifCommandAttribute.cs b/src/Ryujinx.Horizon/Sdk/Sf/CmifCommandAttribute.cs
index 51a7b597..51a7b597 100644
--- a/Ryujinx.Horizon/Sdk/Sf/CmifCommandAttribute.cs
+++ b/src/Ryujinx.Horizon/Sdk/Sf/CmifCommandAttribute.cs
diff --git a/Ryujinx.Horizon/Sdk/Sf/CommandArg.cs b/src/Ryujinx.Horizon/Sdk/Sf/CommandArg.cs
index 47aedde9..47aedde9 100644
--- a/Ryujinx.Horizon/Sdk/Sf/CommandArg.cs
+++ b/src/Ryujinx.Horizon/Sdk/Sf/CommandArg.cs
diff --git a/Ryujinx.Horizon/Sdk/Sf/CommandArgAttributes.cs b/src/Ryujinx.Horizon/Sdk/Sf/CommandArgAttributes.cs
index 294c7d58..294c7d58 100644
--- a/Ryujinx.Horizon/Sdk/Sf/CommandArgAttributes.cs
+++ b/src/Ryujinx.Horizon/Sdk/Sf/CommandArgAttributes.cs
diff --git a/Ryujinx.Horizon/Sdk/Sf/CommandHandler.cs b/src/Ryujinx.Horizon/Sdk/Sf/CommandHandler.cs
index 081ce3be..081ce3be 100644
--- a/Ryujinx.Horizon/Sdk/Sf/CommandHandler.cs
+++ b/src/Ryujinx.Horizon/Sdk/Sf/CommandHandler.cs
diff --git a/Ryujinx.Horizon/Sdk/Sf/CommandSerialization.cs b/src/Ryujinx.Horizon/Sdk/Sf/CommandSerialization.cs
index 4205d3c1..4205d3c1 100644
--- a/Ryujinx.Horizon/Sdk/Sf/CommandSerialization.cs
+++ b/src/Ryujinx.Horizon/Sdk/Sf/CommandSerialization.cs
diff --git a/Ryujinx.Horizon/Sdk/Sf/Hipc/Api.cs b/src/Ryujinx.Horizon/Sdk/Sf/Hipc/Api.cs
index 33c42825..33c42825 100644
--- a/Ryujinx.Horizon/Sdk/Sf/Hipc/Api.cs
+++ b/src/Ryujinx.Horizon/Sdk/Sf/Hipc/Api.cs
diff --git a/Ryujinx.Horizon/Sdk/Sf/Hipc/Header.cs b/src/Ryujinx.Horizon/Sdk/Sf/Hipc/Header.cs
index cdb50b57..cdb50b57 100644
--- a/Ryujinx.Horizon/Sdk/Sf/Hipc/Header.cs
+++ b/src/Ryujinx.Horizon/Sdk/Sf/Hipc/Header.cs
diff --git a/Ryujinx.Horizon/Sdk/Sf/Hipc/HipcBufferDescriptor.cs b/src/Ryujinx.Horizon/Sdk/Sf/Hipc/HipcBufferDescriptor.cs
index 7778d5bc..7778d5bc 100644
--- a/Ryujinx.Horizon/Sdk/Sf/Hipc/HipcBufferDescriptor.cs
+++ b/src/Ryujinx.Horizon/Sdk/Sf/Hipc/HipcBufferDescriptor.cs
diff --git a/Ryujinx.Horizon/Sdk/Sf/Hipc/HipcBufferFlags.cs b/src/Ryujinx.Horizon/Sdk/Sf/Hipc/HipcBufferFlags.cs
index 269ab4fe..269ab4fe 100644
--- a/Ryujinx.Horizon/Sdk/Sf/Hipc/HipcBufferFlags.cs
+++ b/src/Ryujinx.Horizon/Sdk/Sf/Hipc/HipcBufferFlags.cs
diff --git a/Ryujinx.Horizon/Sdk/Sf/Hipc/HipcBufferMode.cs b/src/Ryujinx.Horizon/Sdk/Sf/Hipc/HipcBufferMode.cs
index b1e67253..b1e67253 100644
--- a/Ryujinx.Horizon/Sdk/Sf/Hipc/HipcBufferMode.cs
+++ b/src/Ryujinx.Horizon/Sdk/Sf/Hipc/HipcBufferMode.cs
diff --git a/Ryujinx.Horizon/Sdk/Sf/Hipc/HipcManager.cs b/src/Ryujinx.Horizon/Sdk/Sf/Hipc/HipcManager.cs
index 7541e294..7541e294 100644
--- a/Ryujinx.Horizon/Sdk/Sf/Hipc/HipcManager.cs
+++ b/src/Ryujinx.Horizon/Sdk/Sf/Hipc/HipcManager.cs
diff --git a/Ryujinx.Horizon/Sdk/Sf/Hipc/HipcMessage.cs b/src/Ryujinx.Horizon/Sdk/Sf/Hipc/HipcMessage.cs
index 6500d6cf..6500d6cf 100644
--- a/Ryujinx.Horizon/Sdk/Sf/Hipc/HipcMessage.cs
+++ b/src/Ryujinx.Horizon/Sdk/Sf/Hipc/HipcMessage.cs
diff --git a/Ryujinx.Horizon/Sdk/Sf/Hipc/HipcMessageData.cs b/src/Ryujinx.Horizon/Sdk/Sf/Hipc/HipcMessageData.cs
index 154b8f07..154b8f07 100644
--- a/Ryujinx.Horizon/Sdk/Sf/Hipc/HipcMessageData.cs
+++ b/src/Ryujinx.Horizon/Sdk/Sf/Hipc/HipcMessageData.cs
diff --git a/Ryujinx.Horizon/Sdk/Sf/Hipc/HipcMetadata.cs b/src/Ryujinx.Horizon/Sdk/Sf/Hipc/HipcMetadata.cs
index 10abc400..10abc400 100644
--- a/Ryujinx.Horizon/Sdk/Sf/Hipc/HipcMetadata.cs
+++ b/src/Ryujinx.Horizon/Sdk/Sf/Hipc/HipcMetadata.cs
diff --git a/Ryujinx.Horizon/Sdk/Sf/Hipc/HipcReceiveListEntry.cs b/src/Ryujinx.Horizon/Sdk/Sf/Hipc/HipcReceiveListEntry.cs
index 56cf16fb..56cf16fb 100644
--- a/Ryujinx.Horizon/Sdk/Sf/Hipc/HipcReceiveListEntry.cs
+++ b/src/Ryujinx.Horizon/Sdk/Sf/Hipc/HipcReceiveListEntry.cs
diff --git a/Ryujinx.Horizon/Sdk/Sf/Hipc/HipcResult.cs b/src/Ryujinx.Horizon/Sdk/Sf/Hipc/HipcResult.cs
index 3b483be8..3b483be8 100644
--- a/Ryujinx.Horizon/Sdk/Sf/Hipc/HipcResult.cs
+++ b/src/Ryujinx.Horizon/Sdk/Sf/Hipc/HipcResult.cs
diff --git a/Ryujinx.Horizon/Sdk/Sf/Hipc/HipcStaticDescriptor.cs b/src/Ryujinx.Horizon/Sdk/Sf/Hipc/HipcStaticDescriptor.cs
index 103820a6..103820a6 100644
--- a/Ryujinx.Horizon/Sdk/Sf/Hipc/HipcStaticDescriptor.cs
+++ b/src/Ryujinx.Horizon/Sdk/Sf/Hipc/HipcStaticDescriptor.cs
diff --git a/Ryujinx.Horizon/Sdk/Sf/Hipc/ManagerOptions.cs b/src/Ryujinx.Horizon/Sdk/Sf/Hipc/ManagerOptions.cs
index b99d63c5..b99d63c5 100644
--- a/Ryujinx.Horizon/Sdk/Sf/Hipc/ManagerOptions.cs
+++ b/src/Ryujinx.Horizon/Sdk/Sf/Hipc/ManagerOptions.cs
diff --git a/Ryujinx.Horizon/Sdk/Sf/Hipc/ReceiveResult.cs b/src/Ryujinx.Horizon/Sdk/Sf/Hipc/ReceiveResult.cs
index 7c380a01..7c380a01 100644
--- a/Ryujinx.Horizon/Sdk/Sf/Hipc/ReceiveResult.cs
+++ b/src/Ryujinx.Horizon/Sdk/Sf/Hipc/ReceiveResult.cs
diff --git a/Ryujinx.Horizon/Sdk/Sf/Hipc/Server.cs b/src/Ryujinx.Horizon/Sdk/Sf/Hipc/Server.cs
index bbbab898..bbbab898 100644
--- a/Ryujinx.Horizon/Sdk/Sf/Hipc/Server.cs
+++ b/src/Ryujinx.Horizon/Sdk/Sf/Hipc/Server.cs
diff --git a/Ryujinx.Horizon/Sdk/Sf/Hipc/ServerDomainSessionManager.cs b/src/Ryujinx.Horizon/Sdk/Sf/Hipc/ServerDomainSessionManager.cs
index dda77539..dda77539 100644
--- a/Ryujinx.Horizon/Sdk/Sf/Hipc/ServerDomainSessionManager.cs
+++ b/src/Ryujinx.Horizon/Sdk/Sf/Hipc/ServerDomainSessionManager.cs
diff --git a/Ryujinx.Horizon/Sdk/Sf/Hipc/ServerManager.cs b/src/Ryujinx.Horizon/Sdk/Sf/Hipc/ServerManager.cs
index 2ca9ceea..2ca9ceea 100644
--- a/Ryujinx.Horizon/Sdk/Sf/Hipc/ServerManager.cs
+++ b/src/Ryujinx.Horizon/Sdk/Sf/Hipc/ServerManager.cs
diff --git a/Ryujinx.Horizon/Sdk/Sf/Hipc/ServerManagerBase.cs b/src/Ryujinx.Horizon/Sdk/Sf/Hipc/ServerManagerBase.cs
index c36cdda2..c36cdda2 100644
--- a/Ryujinx.Horizon/Sdk/Sf/Hipc/ServerManagerBase.cs
+++ b/src/Ryujinx.Horizon/Sdk/Sf/Hipc/ServerManagerBase.cs
diff --git a/Ryujinx.Horizon/Sdk/Sf/Hipc/ServerSession.cs b/src/Ryujinx.Horizon/Sdk/Sf/Hipc/ServerSession.cs
index a1730082..a1730082 100644
--- a/Ryujinx.Horizon/Sdk/Sf/Hipc/ServerSession.cs
+++ b/src/Ryujinx.Horizon/Sdk/Sf/Hipc/ServerSession.cs
diff --git a/Ryujinx.Horizon/Sdk/Sf/Hipc/ServerSessionManager.cs b/src/Ryujinx.Horizon/Sdk/Sf/Hipc/ServerSessionManager.cs
index 6d395081..6d395081 100644
--- a/Ryujinx.Horizon/Sdk/Sf/Hipc/ServerSessionManager.cs
+++ b/src/Ryujinx.Horizon/Sdk/Sf/Hipc/ServerSessionManager.cs
diff --git a/Ryujinx.Horizon/Sdk/Sf/Hipc/SpecialHeader.cs b/src/Ryujinx.Horizon/Sdk/Sf/Hipc/SpecialHeader.cs
index 8b747626..8b747626 100644
--- a/Ryujinx.Horizon/Sdk/Sf/Hipc/SpecialHeader.cs
+++ b/src/Ryujinx.Horizon/Sdk/Sf/Hipc/SpecialHeader.cs
diff --git a/Ryujinx.Horizon/Sdk/Sf/HipcCommandProcessor.cs b/src/Ryujinx.Horizon/Sdk/Sf/HipcCommandProcessor.cs
index a0578d48..a0578d48 100644
--- a/Ryujinx.Horizon/Sdk/Sf/HipcCommandProcessor.cs
+++ b/src/Ryujinx.Horizon/Sdk/Sf/HipcCommandProcessor.cs
diff --git a/Ryujinx.Horizon/Sdk/Sf/IServiceObject.cs b/src/Ryujinx.Horizon/Sdk/Sf/IServiceObject.cs
index afa57fef..afa57fef 100644
--- a/Ryujinx.Horizon/Sdk/Sf/IServiceObject.cs
+++ b/src/Ryujinx.Horizon/Sdk/Sf/IServiceObject.cs
diff --git a/Ryujinx.Horizon/Sdk/Sf/RawDataOffsetCalculator.cs b/src/Ryujinx.Horizon/Sdk/Sf/RawDataOffsetCalculator.cs
index 10e4f909..10e4f909 100644
--- a/Ryujinx.Horizon/Sdk/Sf/RawDataOffsetCalculator.cs
+++ b/src/Ryujinx.Horizon/Sdk/Sf/RawDataOffsetCalculator.cs
diff --git a/Ryujinx.Horizon/Sdk/Sf/SfResult.cs b/src/Ryujinx.Horizon/Sdk/Sf/SfResult.cs
index 72502d17..72502d17 100644
--- a/Ryujinx.Horizon/Sdk/Sf/SfResult.cs
+++ b/src/Ryujinx.Horizon/Sdk/Sf/SfResult.cs
diff --git a/Ryujinx.Horizon/Sdk/Sm/IManagerService.cs b/src/Ryujinx.Horizon/Sdk/Sm/IManagerService.cs
index 64428583..64428583 100644
--- a/Ryujinx.Horizon/Sdk/Sm/IManagerService.cs
+++ b/src/Ryujinx.Horizon/Sdk/Sm/IManagerService.cs
diff --git a/Ryujinx.Horizon/Sdk/Sm/IUserService.cs b/src/Ryujinx.Horizon/Sdk/Sm/IUserService.cs
index ad9bc9d7..ad9bc9d7 100644
--- a/Ryujinx.Horizon/Sdk/Sm/IUserService.cs
+++ b/src/Ryujinx.Horizon/Sdk/Sm/IUserService.cs
diff --git a/Ryujinx.Horizon/Sdk/Sm/ServiceName.cs b/src/Ryujinx.Horizon/Sdk/Sm/ServiceName.cs
index 9b7fae3f..9b7fae3f 100644
--- a/Ryujinx.Horizon/Sdk/Sm/ServiceName.cs
+++ b/src/Ryujinx.Horizon/Sdk/Sm/ServiceName.cs
diff --git a/Ryujinx.Horizon/Sdk/Sm/SmApi.cs b/src/Ryujinx.Horizon/Sdk/Sm/SmApi.cs
index 533e68d9..533e68d9 100644
--- a/Ryujinx.Horizon/Sdk/Sm/SmApi.cs
+++ b/src/Ryujinx.Horizon/Sdk/Sm/SmApi.cs
diff --git a/Ryujinx.Horizon/ServiceEntry.cs b/src/Ryujinx.Horizon/ServiceEntry.cs
index 06152d9f..06152d9f 100644
--- a/Ryujinx.Horizon/ServiceEntry.cs
+++ b/src/Ryujinx.Horizon/ServiceEntry.cs
diff --git a/Ryujinx.Horizon/ServiceTable.cs b/src/Ryujinx.Horizon/ServiceTable.cs
index 2edc6ea1..2edc6ea1 100644
--- a/Ryujinx.Horizon/ServiceTable.cs
+++ b/src/Ryujinx.Horizon/ServiceTable.cs
diff --git a/Ryujinx.Horizon/Sm/Impl/ServiceInfo.cs b/src/Ryujinx.Horizon/Sm/Impl/ServiceInfo.cs
index 50c18a2c..50c18a2c 100644
--- a/Ryujinx.Horizon/Sm/Impl/ServiceInfo.cs
+++ b/src/Ryujinx.Horizon/Sm/Impl/ServiceInfo.cs
diff --git a/Ryujinx.Horizon/Sm/Impl/ServiceManager.cs b/src/Ryujinx.Horizon/Sm/Impl/ServiceManager.cs
index d1f94267..d1f94267 100644
--- a/Ryujinx.Horizon/Sm/Impl/ServiceManager.cs
+++ b/src/Ryujinx.Horizon/Sm/Impl/ServiceManager.cs
diff --git a/Ryujinx.Horizon/Sm/Ipc/ManagerService.cs b/src/Ryujinx.Horizon/Sm/Ipc/ManagerService.cs
index c7dcddc9..c7dcddc9 100644
--- a/Ryujinx.Horizon/Sm/Ipc/ManagerService.cs
+++ b/src/Ryujinx.Horizon/Sm/Ipc/ManagerService.cs
diff --git a/Ryujinx.Horizon/Sm/Ipc/UserService.cs b/src/Ryujinx.Horizon/Sm/Ipc/UserService.cs
index d093913a..d093913a 100644
--- a/Ryujinx.Horizon/Sm/Ipc/UserService.cs
+++ b/src/Ryujinx.Horizon/Sm/Ipc/UserService.cs
diff --git a/Ryujinx.Horizon/Sm/SmMain.cs b/src/Ryujinx.Horizon/Sm/SmMain.cs
index f0b4d330..f0b4d330 100644
--- a/Ryujinx.Horizon/Sm/SmMain.cs
+++ b/src/Ryujinx.Horizon/Sm/SmMain.cs
diff --git a/Ryujinx.Horizon/Sm/SmResult.cs b/src/Ryujinx.Horizon/Sm/SmResult.cs
index 2d503a4f..2d503a4f 100644
--- a/Ryujinx.Horizon/Sm/SmResult.cs
+++ b/src/Ryujinx.Horizon/Sm/SmResult.cs
diff --git a/Ryujinx.Horizon/Sm/SmServerManager.cs b/src/Ryujinx.Horizon/Sm/SmServerManager.cs
index dc8dc5b6..dc8dc5b6 100644
--- a/Ryujinx.Horizon/Sm/SmServerManager.cs
+++ b/src/Ryujinx.Horizon/Sm/SmServerManager.cs
diff --git a/Ryujinx.Horizon/Sm/Types/SmPortIndex.cs b/src/Ryujinx.Horizon/Sm/Types/SmPortIndex.cs
index 5325558b..5325558b 100644
--- a/Ryujinx.Horizon/Sm/Types/SmPortIndex.cs
+++ b/src/Ryujinx.Horizon/Sm/Types/SmPortIndex.cs
diff --git a/Ryujinx.Input.SDL2/Ryujinx.Input.SDL2.csproj b/src/Ryujinx.Input.SDL2/Ryujinx.Input.SDL2.csproj
index 817a96e2..817a96e2 100644
--- a/Ryujinx.Input.SDL2/Ryujinx.Input.SDL2.csproj
+++ b/src/Ryujinx.Input.SDL2/Ryujinx.Input.SDL2.csproj
diff --git a/Ryujinx.Input.SDL2/SDL2Gamepad.cs b/src/Ryujinx.Input.SDL2/SDL2Gamepad.cs
index 92552673..92552673 100644
--- a/Ryujinx.Input.SDL2/SDL2Gamepad.cs
+++ b/src/Ryujinx.Input.SDL2/SDL2Gamepad.cs
diff --git a/Ryujinx.Input.SDL2/SDL2GamepadDriver.cs b/src/Ryujinx.Input.SDL2/SDL2GamepadDriver.cs
index d4086a10..d4086a10 100644
--- a/Ryujinx.Input.SDL2/SDL2GamepadDriver.cs
+++ b/src/Ryujinx.Input.SDL2/SDL2GamepadDriver.cs
diff --git a/Ryujinx.Input.SDL2/SDL2Keyboard.cs b/src/Ryujinx.Input.SDL2/SDL2Keyboard.cs
index edadae15..edadae15 100644
--- a/Ryujinx.Input.SDL2/SDL2Keyboard.cs
+++ b/src/Ryujinx.Input.SDL2/SDL2Keyboard.cs
diff --git a/Ryujinx.Input.SDL2/SDLKeyboardDriver.cs b/src/Ryujinx.Input.SDL2/SDLKeyboardDriver.cs
index e9361c24..e9361c24 100644
--- a/Ryujinx.Input.SDL2/SDLKeyboardDriver.cs
+++ b/src/Ryujinx.Input.SDL2/SDLKeyboardDriver.cs
diff --git a/Ryujinx.Input/Assigner/GamepadButtonAssigner.cs b/src/Ryujinx.Input/Assigner/GamepadButtonAssigner.cs
index 8621b3a5..8621b3a5 100644
--- a/Ryujinx.Input/Assigner/GamepadButtonAssigner.cs
+++ b/src/Ryujinx.Input/Assigner/GamepadButtonAssigner.cs
diff --git a/Ryujinx.Input/Assigner/IButtonAssigner.cs b/src/Ryujinx.Input/Assigner/IButtonAssigner.cs
index 021736df..021736df 100644
--- a/Ryujinx.Input/Assigner/IButtonAssigner.cs
+++ b/src/Ryujinx.Input/Assigner/IButtonAssigner.cs
diff --git a/Ryujinx.Input/Assigner/KeyboardKeyAssigner.cs b/src/Ryujinx.Input/Assigner/KeyboardKeyAssigner.cs
index 23ae3655..23ae3655 100644
--- a/Ryujinx.Input/Assigner/KeyboardKeyAssigner.cs
+++ b/src/Ryujinx.Input/Assigner/KeyboardKeyAssigner.cs
diff --git a/Ryujinx.Input/GamepadButtonInputId.cs b/src/Ryujinx.Input/GamepadButtonInputId.cs
index d1e4b9ac..d1e4b9ac 100644
--- a/Ryujinx.Input/GamepadButtonInputId.cs
+++ b/src/Ryujinx.Input/GamepadButtonInputId.cs
diff --git a/Ryujinx.Input/GamepadFeaturesFlag.cs b/src/Ryujinx.Input/GamepadFeaturesFlag.cs
index 87310a32..87310a32 100644
--- a/Ryujinx.Input/GamepadFeaturesFlag.cs
+++ b/src/Ryujinx.Input/GamepadFeaturesFlag.cs
diff --git a/Ryujinx.Input/GamepadStateSnapshot.cs b/src/Ryujinx.Input/GamepadStateSnapshot.cs
index cf3e3e28..cf3e3e28 100644
--- a/Ryujinx.Input/GamepadStateSnapshot.cs
+++ b/src/Ryujinx.Input/GamepadStateSnapshot.cs
diff --git a/Ryujinx.Input/HLE/InputManager.cs b/src/Ryujinx.Input/HLE/InputManager.cs
index bc38cf5a..bc38cf5a 100644
--- a/Ryujinx.Input/HLE/InputManager.cs
+++ b/src/Ryujinx.Input/HLE/InputManager.cs
diff --git a/Ryujinx.Input/HLE/NpadController.cs b/src/Ryujinx.Input/HLE/NpadController.cs
index 46c0fc33..46c0fc33 100644
--- a/Ryujinx.Input/HLE/NpadController.cs
+++ b/src/Ryujinx.Input/HLE/NpadController.cs
diff --git a/Ryujinx.Input/HLE/NpadManager.cs b/src/Ryujinx.Input/HLE/NpadManager.cs
index 5290ecbb..5290ecbb 100644
--- a/Ryujinx.Input/HLE/NpadManager.cs
+++ b/src/Ryujinx.Input/HLE/NpadManager.cs
diff --git a/Ryujinx.Input/HLE/TouchScreenManager.cs b/src/Ryujinx.Input/HLE/TouchScreenManager.cs
index e4b0f8fc..e4b0f8fc 100644
--- a/Ryujinx.Input/HLE/TouchScreenManager.cs
+++ b/src/Ryujinx.Input/HLE/TouchScreenManager.cs
diff --git a/Ryujinx.Input/IGamepad.cs b/src/Ryujinx.Input/IGamepad.cs
index c83ad5f8..c83ad5f8 100644
--- a/Ryujinx.Input/IGamepad.cs
+++ b/src/Ryujinx.Input/IGamepad.cs
diff --git a/Ryujinx.Input/IGamepadDriver.cs b/src/Ryujinx.Input/IGamepadDriver.cs
index 792aef00..792aef00 100644
--- a/Ryujinx.Input/IGamepadDriver.cs
+++ b/src/Ryujinx.Input/IGamepadDriver.cs
diff --git a/Ryujinx.Input/IKeyboard.cs b/src/Ryujinx.Input/IKeyboard.cs
index 506ec099..506ec099 100644
--- a/Ryujinx.Input/IKeyboard.cs
+++ b/src/Ryujinx.Input/IKeyboard.cs
diff --git a/Ryujinx.Input/IMouse.cs b/src/Ryujinx.Input/IMouse.cs
index fde150fc..fde150fc 100644
--- a/Ryujinx.Input/IMouse.cs
+++ b/src/Ryujinx.Input/IMouse.cs
diff --git a/Ryujinx.Input/Key.cs b/src/Ryujinx.Input/Key.cs
index 5fa04484..5fa04484 100644
--- a/Ryujinx.Input/Key.cs
+++ b/src/Ryujinx.Input/Key.cs
diff --git a/Ryujinx.Input/KeyboardStateSnapshot.cs b/src/Ryujinx.Input/KeyboardStateSnapshot.cs
index da77a461..da77a461 100644
--- a/Ryujinx.Input/KeyboardStateSnapshot.cs
+++ b/src/Ryujinx.Input/KeyboardStateSnapshot.cs
diff --git a/Ryujinx.Input/Motion/CemuHook/Client.cs b/src/Ryujinx.Input/Motion/CemuHook/Client.cs
index 4498b8ca..4498b8ca 100644
--- a/Ryujinx.Input/Motion/CemuHook/Client.cs
+++ b/src/Ryujinx.Input/Motion/CemuHook/Client.cs
diff --git a/Ryujinx.Input/Motion/CemuHook/Protocol/ControllerData.cs b/src/Ryujinx.Input/Motion/CemuHook/Protocol/ControllerData.cs
index 7fb72344..7fb72344 100644
--- a/Ryujinx.Input/Motion/CemuHook/Protocol/ControllerData.cs
+++ b/src/Ryujinx.Input/Motion/CemuHook/Protocol/ControllerData.cs
diff --git a/Ryujinx.Input/Motion/CemuHook/Protocol/ControllerInfo.cs b/src/Ryujinx.Input/Motion/CemuHook/Protocol/ControllerInfo.cs
index 63d4524a..63d4524a 100644
--- a/Ryujinx.Input/Motion/CemuHook/Protocol/ControllerInfo.cs
+++ b/src/Ryujinx.Input/Motion/CemuHook/Protocol/ControllerInfo.cs
diff --git a/Ryujinx.Input/Motion/CemuHook/Protocol/Header.cs b/src/Ryujinx.Input/Motion/CemuHook/Protocol/Header.cs
index 57f58ff0..57f58ff0 100644
--- a/Ryujinx.Input/Motion/CemuHook/Protocol/Header.cs
+++ b/src/Ryujinx.Input/Motion/CemuHook/Protocol/Header.cs
diff --git a/Ryujinx.Input/Motion/CemuHook/Protocol/MessageType.cs b/src/Ryujinx.Input/Motion/CemuHook/Protocol/MessageType.cs
index de1e5e90..de1e5e90 100644
--- a/Ryujinx.Input/Motion/CemuHook/Protocol/MessageType.cs
+++ b/src/Ryujinx.Input/Motion/CemuHook/Protocol/MessageType.cs
diff --git a/Ryujinx.Input/Motion/CemuHook/Protocol/SharedResponse.cs b/src/Ryujinx.Input/Motion/CemuHook/Protocol/SharedResponse.cs
index e2e1ee9b..e2e1ee9b 100644
--- a/Ryujinx.Input/Motion/CemuHook/Protocol/SharedResponse.cs
+++ b/src/Ryujinx.Input/Motion/CemuHook/Protocol/SharedResponse.cs
diff --git a/Ryujinx.Input/Motion/MotionInput.cs b/src/Ryujinx.Input/Motion/MotionInput.cs
index 1923d9cb..1923d9cb 100644
--- a/Ryujinx.Input/Motion/MotionInput.cs
+++ b/src/Ryujinx.Input/Motion/MotionInput.cs
diff --git a/Ryujinx.Input/Motion/MotionSensorFilter.cs b/src/Ryujinx.Input/Motion/MotionSensorFilter.cs
index 440fa7ac..440fa7ac 100644
--- a/Ryujinx.Input/Motion/MotionSensorFilter.cs
+++ b/src/Ryujinx.Input/Motion/MotionSensorFilter.cs
diff --git a/Ryujinx.Input/MotionInputId.cs b/src/Ryujinx.Input/MotionInputId.cs
index 3176a987..3176a987 100644
--- a/Ryujinx.Input/MotionInputId.cs
+++ b/src/Ryujinx.Input/MotionInputId.cs
diff --git a/Ryujinx.Input/MouseButton.cs b/src/Ryujinx.Input/MouseButton.cs
index ab764216..ab764216 100644
--- a/Ryujinx.Input/MouseButton.cs
+++ b/src/Ryujinx.Input/MouseButton.cs
diff --git a/Ryujinx.Input/MouseStateSnapshot.cs b/src/Ryujinx.Input/MouseStateSnapshot.cs
index ddfdebc6..ddfdebc6 100644
--- a/Ryujinx.Input/MouseStateSnapshot.cs
+++ b/src/Ryujinx.Input/MouseStateSnapshot.cs
diff --git a/Ryujinx.Input/Ryujinx.Input.csproj b/src/Ryujinx.Input/Ryujinx.Input.csproj
index df462734..df462734 100644
--- a/Ryujinx.Input/Ryujinx.Input.csproj
+++ b/src/Ryujinx.Input/Ryujinx.Input.csproj
diff --git a/Ryujinx.Input/StickInputId.cs b/src/Ryujinx.Input/StickInputId.cs
index fc9d8043..fc9d8043 100644
--- a/Ryujinx.Input/StickInputId.cs
+++ b/src/Ryujinx.Input/StickInputId.cs
diff --git a/Ryujinx.Memory.Tests/MockVirtualMemoryManager.cs b/src/Ryujinx.Memory.Tests/MockVirtualMemoryManager.cs
index ef81a461..ef81a461 100644
--- a/Ryujinx.Memory.Tests/MockVirtualMemoryManager.cs
+++ b/src/Ryujinx.Memory.Tests/MockVirtualMemoryManager.cs
diff --git a/Ryujinx.Memory.Tests/MultiRegionTrackingTests.cs b/src/Ryujinx.Memory.Tests/MultiRegionTrackingTests.cs
index 38cb4921..38cb4921 100644
--- a/Ryujinx.Memory.Tests/MultiRegionTrackingTests.cs
+++ b/src/Ryujinx.Memory.Tests/MultiRegionTrackingTests.cs
diff --git a/Ryujinx.Memory.Tests/Ryujinx.Memory.Tests.csproj b/src/Ryujinx.Memory.Tests/Ryujinx.Memory.Tests.csproj
index 4dcb6962..4dcb6962 100644
--- a/Ryujinx.Memory.Tests/Ryujinx.Memory.Tests.csproj
+++ b/src/Ryujinx.Memory.Tests/Ryujinx.Memory.Tests.csproj
diff --git a/Ryujinx.Memory.Tests/Tests.cs b/src/Ryujinx.Memory.Tests/Tests.cs
index 2717b76a..2717b76a 100644
--- a/Ryujinx.Memory.Tests/Tests.cs
+++ b/src/Ryujinx.Memory.Tests/Tests.cs
diff --git a/Ryujinx.Memory.Tests/TrackingTests.cs b/src/Ryujinx.Memory.Tests/TrackingTests.cs
index eb679804..eb679804 100644
--- a/Ryujinx.Memory.Tests/TrackingTests.cs
+++ b/src/Ryujinx.Memory.Tests/TrackingTests.cs
diff --git a/Ryujinx.Memory/AddressSpaceManager.cs b/src/Ryujinx.Memory/AddressSpaceManager.cs
index ac89fca6..ac89fca6 100644
--- a/Ryujinx.Memory/AddressSpaceManager.cs
+++ b/src/Ryujinx.Memory/AddressSpaceManager.cs
diff --git a/Ryujinx.Memory/IRefCounted.cs b/src/Ryujinx.Memory/IRefCounted.cs
index e0a311d6..e0a311d6 100644
--- a/Ryujinx.Memory/IRefCounted.cs
+++ b/src/Ryujinx.Memory/IRefCounted.cs
diff --git a/Ryujinx.Memory/IVirtualMemoryManager.cs b/src/Ryujinx.Memory/IVirtualMemoryManager.cs
index edbfc885..edbfc885 100644
--- a/Ryujinx.Memory/IVirtualMemoryManager.cs
+++ b/src/Ryujinx.Memory/IVirtualMemoryManager.cs
diff --git a/Ryujinx.Memory/IWritableBlock.cs b/src/Ryujinx.Memory/IWritableBlock.cs
index 36b9f5a6..36b9f5a6 100644
--- a/Ryujinx.Memory/IWritableBlock.cs
+++ b/src/Ryujinx.Memory/IWritableBlock.cs
diff --git a/Ryujinx.Memory/InvalidAccessHandler.cs b/src/Ryujinx.Memory/InvalidAccessHandler.cs
index 3dadb766..3dadb766 100644
--- a/Ryujinx.Memory/InvalidAccessHandler.cs
+++ b/src/Ryujinx.Memory/InvalidAccessHandler.cs
diff --git a/Ryujinx.Memory/InvalidMemoryRegionException.cs b/src/Ryujinx.Memory/InvalidMemoryRegionException.cs
index 01482400..01482400 100644
--- a/Ryujinx.Memory/InvalidMemoryRegionException.cs
+++ b/src/Ryujinx.Memory/InvalidMemoryRegionException.cs
diff --git a/Ryujinx.Memory/MemoryAllocationFlags.cs b/src/Ryujinx.Memory/MemoryAllocationFlags.cs
index 6f0ef1aa..6f0ef1aa 100644
--- a/Ryujinx.Memory/MemoryAllocationFlags.cs
+++ b/src/Ryujinx.Memory/MemoryAllocationFlags.cs
diff --git a/Ryujinx.Memory/MemoryBlock.cs b/src/Ryujinx.Memory/MemoryBlock.cs
index 885ef456..885ef456 100644
--- a/Ryujinx.Memory/MemoryBlock.cs
+++ b/src/Ryujinx.Memory/MemoryBlock.cs
diff --git a/Ryujinx.Memory/MemoryConstants.cs b/src/Ryujinx.Memory/MemoryConstants.cs
index fc6f87e0..fc6f87e0 100644
--- a/Ryujinx.Memory/MemoryConstants.cs
+++ b/src/Ryujinx.Memory/MemoryConstants.cs
diff --git a/Ryujinx.Memory/MemoryManagement.cs b/src/Ryujinx.Memory/MemoryManagement.cs
index c4b5ac4c..c4b5ac4c 100644
--- a/Ryujinx.Memory/MemoryManagement.cs
+++ b/src/Ryujinx.Memory/MemoryManagement.cs
diff --git a/Ryujinx.Memory/MemoryManagementUnix.cs b/src/Ryujinx.Memory/MemoryManagementUnix.cs
index affcff92..affcff92 100644
--- a/Ryujinx.Memory/MemoryManagementUnix.cs
+++ b/src/Ryujinx.Memory/MemoryManagementUnix.cs
diff --git a/Ryujinx.Memory/MemoryManagementWindows.cs b/src/Ryujinx.Memory/MemoryManagementWindows.cs
index 2f89a921..2f89a921 100644
--- a/Ryujinx.Memory/MemoryManagementWindows.cs
+++ b/src/Ryujinx.Memory/MemoryManagementWindows.cs
diff --git a/Ryujinx.Memory/MemoryManagerUnixHelper.cs b/src/Ryujinx.Memory/MemoryManagerUnixHelper.cs
index 204f1ca4..204f1ca4 100644
--- a/Ryujinx.Memory/MemoryManagerUnixHelper.cs
+++ b/src/Ryujinx.Memory/MemoryManagerUnixHelper.cs
diff --git a/Ryujinx.Memory/MemoryMapFlags.cs b/src/Ryujinx.Memory/MemoryMapFlags.cs
index b4c74c8c..b4c74c8c 100644
--- a/Ryujinx.Memory/MemoryMapFlags.cs
+++ b/src/Ryujinx.Memory/MemoryMapFlags.cs
diff --git a/Ryujinx.Memory/MemoryNotContiguousException.cs b/src/Ryujinx.Memory/MemoryNotContiguousException.cs
index 3106955b..3106955b 100644
--- a/Ryujinx.Memory/MemoryNotContiguousException.cs
+++ b/src/Ryujinx.Memory/MemoryNotContiguousException.cs
diff --git a/Ryujinx.Memory/MemoryPermission.cs b/src/Ryujinx.Memory/MemoryPermission.cs
index 8c3e33cf..8c3e33cf 100644
--- a/Ryujinx.Memory/MemoryPermission.cs
+++ b/src/Ryujinx.Memory/MemoryPermission.cs
diff --git a/Ryujinx.Memory/MemoryProtectionException.cs b/src/Ryujinx.Memory/MemoryProtectionException.cs
index 27e950a1..27e950a1 100644
--- a/Ryujinx.Memory/MemoryProtectionException.cs
+++ b/src/Ryujinx.Memory/MemoryProtectionException.cs
diff --git a/Ryujinx.Memory/NativeMemoryManager.cs b/src/Ryujinx.Memory/NativeMemoryManager.cs
index d1757935..d1757935 100644
--- a/Ryujinx.Memory/NativeMemoryManager.cs
+++ b/src/Ryujinx.Memory/NativeMemoryManager.cs
diff --git a/Ryujinx.Memory/PageTable.cs b/src/Ryujinx.Memory/PageTable.cs
index 8fdedd4f..8fdedd4f 100644
--- a/Ryujinx.Memory/PageTable.cs
+++ b/src/Ryujinx.Memory/PageTable.cs
diff --git a/Ryujinx.Memory/Range/HostMemoryRange.cs b/src/Ryujinx.Memory/Range/HostMemoryRange.cs
index 79c649d8..79c649d8 100644
--- a/Ryujinx.Memory/Range/HostMemoryRange.cs
+++ b/src/Ryujinx.Memory/Range/HostMemoryRange.cs
diff --git a/Ryujinx.Memory/Range/IMultiRangeItem.cs b/src/Ryujinx.Memory/Range/IMultiRangeItem.cs
index e95a69fc..e95a69fc 100644
--- a/Ryujinx.Memory/Range/IMultiRangeItem.cs
+++ b/src/Ryujinx.Memory/Range/IMultiRangeItem.cs
diff --git a/Ryujinx.Memory/Range/INonOverlappingRange.cs b/src/Ryujinx.Memory/Range/INonOverlappingRange.cs
index 1886eb1d..1886eb1d 100644
--- a/Ryujinx.Memory/Range/INonOverlappingRange.cs
+++ b/src/Ryujinx.Memory/Range/INonOverlappingRange.cs
diff --git a/Ryujinx.Memory/Range/IRange.cs b/src/Ryujinx.Memory/Range/IRange.cs
index 1685396d..1685396d 100644
--- a/Ryujinx.Memory/Range/IRange.cs
+++ b/src/Ryujinx.Memory/Range/IRange.cs
diff --git a/Ryujinx.Memory/Range/MemoryRange.cs b/src/Ryujinx.Memory/Range/MemoryRange.cs
index 7465fbcb..7465fbcb 100644
--- a/Ryujinx.Memory/Range/MemoryRange.cs
+++ b/src/Ryujinx.Memory/Range/MemoryRange.cs
diff --git a/Ryujinx.Memory/Range/MultiRange.cs b/src/Ryujinx.Memory/Range/MultiRange.cs
index 9dbd76ec..9dbd76ec 100644
--- a/Ryujinx.Memory/Range/MultiRange.cs
+++ b/src/Ryujinx.Memory/Range/MultiRange.cs
diff --git a/Ryujinx.Memory/Range/MultiRangeList.cs b/src/Ryujinx.Memory/Range/MultiRangeList.cs
index 5131889f..5131889f 100644
--- a/Ryujinx.Memory/Range/MultiRangeList.cs
+++ b/src/Ryujinx.Memory/Range/MultiRangeList.cs
diff --git a/Ryujinx.Memory/Range/NonOverlappingRangeList.cs b/src/Ryujinx.Memory/Range/NonOverlappingRangeList.cs
index 60b2b378..60b2b378 100644
--- a/Ryujinx.Memory/Range/NonOverlappingRangeList.cs
+++ b/src/Ryujinx.Memory/Range/NonOverlappingRangeList.cs
diff --git a/Ryujinx.Memory/Range/RangeList.cs b/src/Ryujinx.Memory/Range/RangeList.cs
index 46919597..46919597 100644
--- a/Ryujinx.Memory/Range/RangeList.cs
+++ b/src/Ryujinx.Memory/Range/RangeList.cs
diff --git a/Ryujinx.Memory/Ryujinx.Memory.csproj b/src/Ryujinx.Memory/Ryujinx.Memory.csproj
index 91e46e48..91e46e48 100644
--- a/Ryujinx.Memory/Ryujinx.Memory.csproj
+++ b/src/Ryujinx.Memory/Ryujinx.Memory.csproj
diff --git a/Ryujinx.Memory/Tracking/AbstractRegion.cs b/src/Ryujinx.Memory/Tracking/AbstractRegion.cs
index bd4c8ab5..bd4c8ab5 100644
--- a/Ryujinx.Memory/Tracking/AbstractRegion.cs
+++ b/src/Ryujinx.Memory/Tracking/AbstractRegion.cs
diff --git a/Ryujinx.Memory/Tracking/BitMap.cs b/src/Ryujinx.Memory/Tracking/BitMap.cs
index 173952f3..173952f3 100644
--- a/Ryujinx.Memory/Tracking/BitMap.cs
+++ b/src/Ryujinx.Memory/Tracking/BitMap.cs
diff --git a/Ryujinx.Memory/Tracking/ConcurrentBitmap.cs b/src/Ryujinx.Memory/Tracking/ConcurrentBitmap.cs
index 994fda92..994fda92 100644
--- a/Ryujinx.Memory/Tracking/ConcurrentBitmap.cs
+++ b/src/Ryujinx.Memory/Tracking/ConcurrentBitmap.cs
diff --git a/Ryujinx.Memory/Tracking/IMultiRegionHandle.cs b/src/Ryujinx.Memory/Tracking/IMultiRegionHandle.cs
index 71bd602f..71bd602f 100644
--- a/Ryujinx.Memory/Tracking/IMultiRegionHandle.cs
+++ b/src/Ryujinx.Memory/Tracking/IMultiRegionHandle.cs
diff --git a/Ryujinx.Memory/Tracking/IRegionHandle.cs b/src/Ryujinx.Memory/Tracking/IRegionHandle.cs
index 9d99d90e..9d99d90e 100644
--- a/Ryujinx.Memory/Tracking/IRegionHandle.cs
+++ b/src/Ryujinx.Memory/Tracking/IRegionHandle.cs
diff --git a/Ryujinx.Memory/Tracking/MemoryTracking.cs b/src/Ryujinx.Memory/Tracking/MemoryTracking.cs
index bf1e0ad3..bf1e0ad3 100644
--- a/Ryujinx.Memory/Tracking/MemoryTracking.cs
+++ b/src/Ryujinx.Memory/Tracking/MemoryTracking.cs
diff --git a/Ryujinx.Memory/Tracking/MultiRegionHandle.cs b/src/Ryujinx.Memory/Tracking/MultiRegionHandle.cs
index 68fc5e75..68fc5e75 100644
--- a/Ryujinx.Memory/Tracking/MultiRegionHandle.cs
+++ b/src/Ryujinx.Memory/Tracking/MultiRegionHandle.cs
diff --git a/Ryujinx.Memory/Tracking/PreciseRegionSignal.cs b/src/Ryujinx.Memory/Tracking/PreciseRegionSignal.cs
index 038f9595..038f9595 100644
--- a/Ryujinx.Memory/Tracking/PreciseRegionSignal.cs
+++ b/src/Ryujinx.Memory/Tracking/PreciseRegionSignal.cs
diff --git a/Ryujinx.Memory/Tracking/RegionHandle.cs b/src/Ryujinx.Memory/Tracking/RegionHandle.cs
index 7a59f9f2..7a59f9f2 100644
--- a/Ryujinx.Memory/Tracking/RegionHandle.cs
+++ b/src/Ryujinx.Memory/Tracking/RegionHandle.cs
diff --git a/Ryujinx.Memory/Tracking/RegionSignal.cs b/src/Ryujinx.Memory/Tracking/RegionSignal.cs
index c8a28d7d..c8a28d7d 100644
--- a/Ryujinx.Memory/Tracking/RegionSignal.cs
+++ b/src/Ryujinx.Memory/Tracking/RegionSignal.cs
diff --git a/Ryujinx.Memory/Tracking/SmartMultiRegionHandle.cs b/src/Ryujinx.Memory/Tracking/SmartMultiRegionHandle.cs
index 4acddefa..4acddefa 100644
--- a/Ryujinx.Memory/Tracking/SmartMultiRegionHandle.cs
+++ b/src/Ryujinx.Memory/Tracking/SmartMultiRegionHandle.cs
diff --git a/Ryujinx.Memory/Tracking/VirtualRegion.cs b/src/Ryujinx.Memory/Tracking/VirtualRegion.cs
index 9651426b..9651426b 100644
--- a/Ryujinx.Memory/Tracking/VirtualRegion.cs
+++ b/src/Ryujinx.Memory/Tracking/VirtualRegion.cs
diff --git a/Ryujinx.Memory/WindowsShared/MappingTree.cs b/src/Ryujinx.Memory/WindowsShared/MappingTree.cs
index 97758c2b..97758c2b 100644
--- a/Ryujinx.Memory/WindowsShared/MappingTree.cs
+++ b/src/Ryujinx.Memory/WindowsShared/MappingTree.cs
diff --git a/Ryujinx.Memory/WindowsShared/PlaceholderManager.cs b/src/Ryujinx.Memory/WindowsShared/PlaceholderManager.cs
index 3022b661..3022b661 100644
--- a/Ryujinx.Memory/WindowsShared/PlaceholderManager.cs
+++ b/src/Ryujinx.Memory/WindowsShared/PlaceholderManager.cs
diff --git a/Ryujinx.Memory/WindowsShared/WindowsApi.cs b/src/Ryujinx.Memory/WindowsShared/WindowsApi.cs
index 67e704ea..67e704ea 100644
--- a/Ryujinx.Memory/WindowsShared/WindowsApi.cs
+++ b/src/Ryujinx.Memory/WindowsShared/WindowsApi.cs
diff --git a/Ryujinx.Memory/WindowsShared/WindowsApiException.cs b/src/Ryujinx.Memory/WindowsShared/WindowsApiException.cs
index 3140d705..3140d705 100644
--- a/Ryujinx.Memory/WindowsShared/WindowsApiException.cs
+++ b/src/Ryujinx.Memory/WindowsShared/WindowsApiException.cs
diff --git a/Ryujinx.Memory/WindowsShared/WindowsFlags.cs b/src/Ryujinx.Memory/WindowsShared/WindowsFlags.cs
index ca69cfe9..ca69cfe9 100644
--- a/Ryujinx.Memory/WindowsShared/WindowsFlags.cs
+++ b/src/Ryujinx.Memory/WindowsShared/WindowsFlags.cs
diff --git a/Ryujinx.Memory/WritableRegion.cs b/src/Ryujinx.Memory/WritableRegion.cs
index 21565ea5..21565ea5 100644
--- a/Ryujinx.Memory/WritableRegion.cs
+++ b/src/Ryujinx.Memory/WritableRegion.cs
diff --git a/Ryujinx.SDL2.Common/Ryujinx.SDL2.Common.csproj b/src/Ryujinx.SDL2.Common/Ryujinx.SDL2.Common.csproj
index 955e6d3f..955e6d3f 100644
--- a/Ryujinx.SDL2.Common/Ryujinx.SDL2.Common.csproj
+++ b/src/Ryujinx.SDL2.Common/Ryujinx.SDL2.Common.csproj
diff --git a/Ryujinx.SDL2.Common/SDL2Driver.cs b/src/Ryujinx.SDL2.Common/SDL2Driver.cs
index 970e287d..970e287d 100644
--- a/Ryujinx.SDL2.Common/SDL2Driver.cs
+++ b/src/Ryujinx.SDL2.Common/SDL2Driver.cs
diff --git a/Ryujinx.ShaderTools/Program.cs b/src/Ryujinx.ShaderTools/Program.cs
index 3acebbda..3acebbda 100644
--- a/Ryujinx.ShaderTools/Program.cs
+++ b/src/Ryujinx.ShaderTools/Program.cs
diff --git a/Ryujinx.ShaderTools/Ryujinx.ShaderTools.csproj b/src/Ryujinx.ShaderTools/Ryujinx.ShaderTools.csproj
index 74b4ec2f..74b4ec2f 100644
--- a/Ryujinx.ShaderTools/Ryujinx.ShaderTools.csproj
+++ b/src/Ryujinx.ShaderTools/Ryujinx.ShaderTools.csproj
diff --git a/Ryujinx.Tests.Unicorn/IndexedProperty.cs b/src/Ryujinx.Tests.Unicorn/IndexedProperty.cs
index 65d445fc..65d445fc 100644
--- a/Ryujinx.Tests.Unicorn/IndexedProperty.cs
+++ b/src/Ryujinx.Tests.Unicorn/IndexedProperty.cs
diff --git a/Ryujinx.Tests.Unicorn/MemoryPermission.cs b/src/Ryujinx.Tests.Unicorn/MemoryPermission.cs
index 044b3176..044b3176 100644
--- a/Ryujinx.Tests.Unicorn/MemoryPermission.cs
+++ b/src/Ryujinx.Tests.Unicorn/MemoryPermission.cs
diff --git a/Ryujinx.Tests.Unicorn/Ryujinx.Tests.Unicorn.csproj b/src/Ryujinx.Tests.Unicorn/Ryujinx.Tests.Unicorn.csproj
index d925546f..d925546f 100644
--- a/Ryujinx.Tests.Unicorn/Ryujinx.Tests.Unicorn.csproj
+++ b/src/Ryujinx.Tests.Unicorn/Ryujinx.Tests.Unicorn.csproj
diff --git a/Ryujinx.Tests.Unicorn/SimdValue.cs b/src/Ryujinx.Tests.Unicorn/SimdValue.cs
index 2b528430..2b528430 100644
--- a/Ryujinx.Tests.Unicorn/SimdValue.cs
+++ b/src/Ryujinx.Tests.Unicorn/SimdValue.cs
diff --git a/Ryujinx.Tests.Unicorn/UnicornAArch32.cs b/src/Ryujinx.Tests.Unicorn/UnicornAArch32.cs
index a095e664..a095e664 100644
--- a/Ryujinx.Tests.Unicorn/UnicornAArch32.cs
+++ b/src/Ryujinx.Tests.Unicorn/UnicornAArch32.cs
diff --git a/Ryujinx.Tests.Unicorn/UnicornAArch64.cs b/src/Ryujinx.Tests.Unicorn/UnicornAArch64.cs
index 16dfd93b..16dfd93b 100644
--- a/Ryujinx.Tests.Unicorn/UnicornAArch64.cs
+++ b/src/Ryujinx.Tests.Unicorn/UnicornAArch64.cs
diff --git a/Ryujinx.Tests/.runsettings b/src/Ryujinx.Tests/.runsettings
index ca70d359..ca70d359 100644
--- a/Ryujinx.Tests/.runsettings
+++ b/src/Ryujinx.Tests/.runsettings
diff --git a/Ryujinx.Tests/Audio/Renderer/AudioRendererConfigurationTests.cs b/src/Ryujinx.Tests/Audio/Renderer/AudioRendererConfigurationTests.cs
index 6467bdf3..6467bdf3 100644
--- a/Ryujinx.Tests/Audio/Renderer/AudioRendererConfigurationTests.cs
+++ b/src/Ryujinx.Tests/Audio/Renderer/AudioRendererConfigurationTests.cs
diff --git a/Ryujinx.Tests/Audio/Renderer/BehaviourParameterTests.cs b/src/Ryujinx.Tests/Audio/Renderer/BehaviourParameterTests.cs
index cf87e15c..cf87e15c 100644
--- a/Ryujinx.Tests/Audio/Renderer/BehaviourParameterTests.cs
+++ b/src/Ryujinx.Tests/Audio/Renderer/BehaviourParameterTests.cs
diff --git a/Ryujinx.Tests/Audio/Renderer/BiquadFilterParameterTests.cs b/src/Ryujinx.Tests/Audio/Renderer/BiquadFilterParameterTests.cs
index 0f6e3833..0f6e3833 100644
--- a/Ryujinx.Tests/Audio/Renderer/BiquadFilterParameterTests.cs
+++ b/src/Ryujinx.Tests/Audio/Renderer/BiquadFilterParameterTests.cs
diff --git a/Ryujinx.Tests/Audio/Renderer/Common/UpdateDataHeaderTests.cs b/src/Ryujinx.Tests/Audio/Renderer/Common/UpdateDataHeaderTests.cs
index f6572e55..f6572e55 100644
--- a/Ryujinx.Tests/Audio/Renderer/Common/UpdateDataHeaderTests.cs
+++ b/src/Ryujinx.Tests/Audio/Renderer/Common/UpdateDataHeaderTests.cs
diff --git a/Ryujinx.Tests/Audio/Renderer/Common/VoiceUpdateStateTests.cs b/src/Ryujinx.Tests/Audio/Renderer/Common/VoiceUpdateStateTests.cs
index fe935cb6..fe935cb6 100644
--- a/Ryujinx.Tests/Audio/Renderer/Common/VoiceUpdateStateTests.cs
+++ b/src/Ryujinx.Tests/Audio/Renderer/Common/VoiceUpdateStateTests.cs
diff --git a/Ryujinx.Tests/Audio/Renderer/Common/WaveBufferTests.cs b/src/Ryujinx.Tests/Audio/Renderer/Common/WaveBufferTests.cs
index f7411e71..f7411e71 100644
--- a/Ryujinx.Tests/Audio/Renderer/Common/WaveBufferTests.cs
+++ b/src/Ryujinx.Tests/Audio/Renderer/Common/WaveBufferTests.cs
diff --git a/Ryujinx.Tests/Audio/Renderer/Dsp/ResamplerTests.cs b/src/Ryujinx.Tests/Audio/Renderer/Dsp/ResamplerTests.cs
index 364837ee..364837ee 100644
--- a/Ryujinx.Tests/Audio/Renderer/Dsp/ResamplerTests.cs
+++ b/src/Ryujinx.Tests/Audio/Renderer/Dsp/ResamplerTests.cs
diff --git a/Ryujinx.Tests/Audio/Renderer/Dsp/UpsamplerTests.cs b/src/Ryujinx.Tests/Audio/Renderer/Dsp/UpsamplerTests.cs
index 2018752b..2018752b 100644
--- a/Ryujinx.Tests/Audio/Renderer/Dsp/UpsamplerTests.cs
+++ b/src/Ryujinx.Tests/Audio/Renderer/Dsp/UpsamplerTests.cs
diff --git a/Ryujinx.Tests/Audio/Renderer/EffectInfoParameterTests.cs b/src/Ryujinx.Tests/Audio/Renderer/EffectInfoParameterTests.cs
index c4ac82f0..c4ac82f0 100644
--- a/Ryujinx.Tests/Audio/Renderer/EffectInfoParameterTests.cs
+++ b/src/Ryujinx.Tests/Audio/Renderer/EffectInfoParameterTests.cs
diff --git a/Ryujinx.Tests/Audio/Renderer/EffectOutStatusTests.cs b/src/Ryujinx.Tests/Audio/Renderer/EffectOutStatusTests.cs
index 8cb57da3..8cb57da3 100644
--- a/Ryujinx.Tests/Audio/Renderer/EffectOutStatusTests.cs
+++ b/src/Ryujinx.Tests/Audio/Renderer/EffectOutStatusTests.cs
diff --git a/Ryujinx.Tests/Audio/Renderer/MemoryPoolParameterTests.cs b/src/Ryujinx.Tests/Audio/Renderer/MemoryPoolParameterTests.cs
index 2850fd35..2850fd35 100644
--- a/Ryujinx.Tests/Audio/Renderer/MemoryPoolParameterTests.cs
+++ b/src/Ryujinx.Tests/Audio/Renderer/MemoryPoolParameterTests.cs
diff --git a/Ryujinx.Tests/Audio/Renderer/Parameter/BehaviourErrorInfoOutStatusTests.cs b/src/Ryujinx.Tests/Audio/Renderer/Parameter/BehaviourErrorInfoOutStatusTests.cs
index 7323e720..7323e720 100644
--- a/Ryujinx.Tests/Audio/Renderer/Parameter/BehaviourErrorInfoOutStatusTests.cs
+++ b/src/Ryujinx.Tests/Audio/Renderer/Parameter/BehaviourErrorInfoOutStatusTests.cs
diff --git a/Ryujinx.Tests/Audio/Renderer/Parameter/Effect/AuxParameterTests.cs b/src/Ryujinx.Tests/Audio/Renderer/Parameter/Effect/AuxParameterTests.cs
index 101bd348..101bd348 100644
--- a/Ryujinx.Tests/Audio/Renderer/Parameter/Effect/AuxParameterTests.cs
+++ b/src/Ryujinx.Tests/Audio/Renderer/Parameter/Effect/AuxParameterTests.cs
diff --git a/Ryujinx.Tests/Audio/Renderer/Parameter/Effect/BiquadFilterEffectParameterTests.cs b/src/Ryujinx.Tests/Audio/Renderer/Parameter/Effect/BiquadFilterEffectParameterTests.cs
index 6cb7d93a..6cb7d93a 100644
--- a/Ryujinx.Tests/Audio/Renderer/Parameter/Effect/BiquadFilterEffectParameterTests.cs
+++ b/src/Ryujinx.Tests/Audio/Renderer/Parameter/Effect/BiquadFilterEffectParameterTests.cs
diff --git a/Ryujinx.Tests/Audio/Renderer/Parameter/Effect/BufferMixerParameterTests.cs b/src/Ryujinx.Tests/Audio/Renderer/Parameter/Effect/BufferMixerParameterTests.cs
index 49ff509c..49ff509c 100644
--- a/Ryujinx.Tests/Audio/Renderer/Parameter/Effect/BufferMixerParameterTests.cs
+++ b/src/Ryujinx.Tests/Audio/Renderer/Parameter/Effect/BufferMixerParameterTests.cs
diff --git a/Ryujinx.Tests/Audio/Renderer/Parameter/Effect/CompressorParameterTests.cs b/src/Ryujinx.Tests/Audio/Renderer/Parameter/Effect/CompressorParameterTests.cs
index 24b834fc..24b834fc 100644
--- a/Ryujinx.Tests/Audio/Renderer/Parameter/Effect/CompressorParameterTests.cs
+++ b/src/Ryujinx.Tests/Audio/Renderer/Parameter/Effect/CompressorParameterTests.cs
diff --git a/Ryujinx.Tests/Audio/Renderer/Parameter/Effect/DelayParameterTests.cs b/src/Ryujinx.Tests/Audio/Renderer/Parameter/Effect/DelayParameterTests.cs
index b11e3f47..b11e3f47 100644
--- a/Ryujinx.Tests/Audio/Renderer/Parameter/Effect/DelayParameterTests.cs
+++ b/src/Ryujinx.Tests/Audio/Renderer/Parameter/Effect/DelayParameterTests.cs
diff --git a/Ryujinx.Tests/Audio/Renderer/Parameter/Effect/LimiterParameterTests.cs b/src/Ryujinx.Tests/Audio/Renderer/Parameter/Effect/LimiterParameterTests.cs
index 8512ebd4..8512ebd4 100644
--- a/Ryujinx.Tests/Audio/Renderer/Parameter/Effect/LimiterParameterTests.cs
+++ b/src/Ryujinx.Tests/Audio/Renderer/Parameter/Effect/LimiterParameterTests.cs
diff --git a/Ryujinx.Tests/Audio/Renderer/Parameter/Effect/LimiterStatisticsTests.cs b/src/Ryujinx.Tests/Audio/Renderer/Parameter/Effect/LimiterStatisticsTests.cs
index 43645ae4..43645ae4 100644
--- a/Ryujinx.Tests/Audio/Renderer/Parameter/Effect/LimiterStatisticsTests.cs
+++ b/src/Ryujinx.Tests/Audio/Renderer/Parameter/Effect/LimiterStatisticsTests.cs
diff --git a/Ryujinx.Tests/Audio/Renderer/Parameter/Effect/Reverb3dParameterTests.cs b/src/Ryujinx.Tests/Audio/Renderer/Parameter/Effect/Reverb3dParameterTests.cs
index 694ed55d..694ed55d 100644
--- a/Ryujinx.Tests/Audio/Renderer/Parameter/Effect/Reverb3dParameterTests.cs
+++ b/src/Ryujinx.Tests/Audio/Renderer/Parameter/Effect/Reverb3dParameterTests.cs
diff --git a/Ryujinx.Tests/Audio/Renderer/Parameter/Effect/ReverbParameterTests.cs b/src/Ryujinx.Tests/Audio/Renderer/Parameter/Effect/ReverbParameterTests.cs
index ef9f3457..ef9f3457 100644
--- a/Ryujinx.Tests/Audio/Renderer/Parameter/Effect/ReverbParameterTests.cs
+++ b/src/Ryujinx.Tests/Audio/Renderer/Parameter/Effect/ReverbParameterTests.cs
diff --git a/Ryujinx.Tests/Audio/Renderer/Parameter/MixInParameterDirtyOnlyUpdateTests.cs b/src/Ryujinx.Tests/Audio/Renderer/Parameter/MixInParameterDirtyOnlyUpdateTests.cs
index 03184fdf..03184fdf 100644
--- a/Ryujinx.Tests/Audio/Renderer/Parameter/MixInParameterDirtyOnlyUpdateTests.cs
+++ b/src/Ryujinx.Tests/Audio/Renderer/Parameter/MixInParameterDirtyOnlyUpdateTests.cs
diff --git a/Ryujinx.Tests/Audio/Renderer/Parameter/MixParameterTests.cs b/src/Ryujinx.Tests/Audio/Renderer/Parameter/MixParameterTests.cs
index 4fb2bb77..4fb2bb77 100644
--- a/Ryujinx.Tests/Audio/Renderer/Parameter/MixParameterTests.cs
+++ b/src/Ryujinx.Tests/Audio/Renderer/Parameter/MixParameterTests.cs
diff --git a/Ryujinx.Tests/Audio/Renderer/Parameter/PerformanceInParameterTests.cs b/src/Ryujinx.Tests/Audio/Renderer/Parameter/PerformanceInParameterTests.cs
index a81fa146..a81fa146 100644
--- a/Ryujinx.Tests/Audio/Renderer/Parameter/PerformanceInParameterTests.cs
+++ b/src/Ryujinx.Tests/Audio/Renderer/Parameter/PerformanceInParameterTests.cs
diff --git a/Ryujinx.Tests/Audio/Renderer/Parameter/PerformanceOutStatusTests.cs b/src/Ryujinx.Tests/Audio/Renderer/Parameter/PerformanceOutStatusTests.cs
index e61dea2e..e61dea2e 100644
--- a/Ryujinx.Tests/Audio/Renderer/Parameter/PerformanceOutStatusTests.cs
+++ b/src/Ryujinx.Tests/Audio/Renderer/Parameter/PerformanceOutStatusTests.cs
diff --git a/Ryujinx.Tests/Audio/Renderer/Parameter/RendererInfoOutStatusTests.cs b/src/Ryujinx.Tests/Audio/Renderer/Parameter/RendererInfoOutStatusTests.cs
index 6b60db29..6b60db29 100644
--- a/Ryujinx.Tests/Audio/Renderer/Parameter/RendererInfoOutStatusTests.cs
+++ b/src/Ryujinx.Tests/Audio/Renderer/Parameter/RendererInfoOutStatusTests.cs
diff --git a/Ryujinx.Tests/Audio/Renderer/Parameter/Sink/CircularBufferParameterTests.cs b/src/Ryujinx.Tests/Audio/Renderer/Parameter/Sink/CircularBufferParameterTests.cs
index 8bc37c1c..8bc37c1c 100644
--- a/Ryujinx.Tests/Audio/Renderer/Parameter/Sink/CircularBufferParameterTests.cs
+++ b/src/Ryujinx.Tests/Audio/Renderer/Parameter/Sink/CircularBufferParameterTests.cs
diff --git a/Ryujinx.Tests/Audio/Renderer/Parameter/Sink/DeviceParameterTests.cs b/src/Ryujinx.Tests/Audio/Renderer/Parameter/Sink/DeviceParameterTests.cs
index 27ae2b47..27ae2b47 100644
--- a/Ryujinx.Tests/Audio/Renderer/Parameter/Sink/DeviceParameterTests.cs
+++ b/src/Ryujinx.Tests/Audio/Renderer/Parameter/Sink/DeviceParameterTests.cs
diff --git a/Ryujinx.Tests/Audio/Renderer/Parameter/SinkInParameterTests.cs b/src/Ryujinx.Tests/Audio/Renderer/Parameter/SinkInParameterTests.cs
index 21a17889..21a17889 100644
--- a/Ryujinx.Tests/Audio/Renderer/Parameter/SinkInParameterTests.cs
+++ b/src/Ryujinx.Tests/Audio/Renderer/Parameter/SinkInParameterTests.cs
diff --git a/Ryujinx.Tests/Audio/Renderer/Parameter/SinkOutStatusTests.cs b/src/Ryujinx.Tests/Audio/Renderer/Parameter/SinkOutStatusTests.cs
index 828248af..828248af 100644
--- a/Ryujinx.Tests/Audio/Renderer/Parameter/SinkOutStatusTests.cs
+++ b/src/Ryujinx.Tests/Audio/Renderer/Parameter/SinkOutStatusTests.cs
diff --git a/Ryujinx.Tests/Audio/Renderer/Parameter/SplitterInParamHeaderTests.cs b/src/Ryujinx.Tests/Audio/Renderer/Parameter/SplitterInParamHeaderTests.cs
index fc966e4c..fc966e4c 100644
--- a/Ryujinx.Tests/Audio/Renderer/Parameter/SplitterInParamHeaderTests.cs
+++ b/src/Ryujinx.Tests/Audio/Renderer/Parameter/SplitterInParamHeaderTests.cs
diff --git a/Ryujinx.Tests/Audio/Renderer/Server/AddressInfoTests.cs b/src/Ryujinx.Tests/Audio/Renderer/Server/AddressInfoTests.cs
index 7c6b6526..7c6b6526 100644
--- a/Ryujinx.Tests/Audio/Renderer/Server/AddressInfoTests.cs
+++ b/src/Ryujinx.Tests/Audio/Renderer/Server/AddressInfoTests.cs
diff --git a/Ryujinx.Tests/Audio/Renderer/Server/BehaviourContextTests.cs b/src/Ryujinx.Tests/Audio/Renderer/Server/BehaviourContextTests.cs
index df946a12..df946a12 100644
--- a/Ryujinx.Tests/Audio/Renderer/Server/BehaviourContextTests.cs
+++ b/src/Ryujinx.Tests/Audio/Renderer/Server/BehaviourContextTests.cs
diff --git a/Ryujinx.Tests/Audio/Renderer/Server/MemoryPoolStateTests.cs b/src/Ryujinx.Tests/Audio/Renderer/Server/MemoryPoolStateTests.cs
index 94dc6906..94dc6906 100644
--- a/Ryujinx.Tests/Audio/Renderer/Server/MemoryPoolStateTests.cs
+++ b/src/Ryujinx.Tests/Audio/Renderer/Server/MemoryPoolStateTests.cs
diff --git a/Ryujinx.Tests/Audio/Renderer/Server/MixStateTests.cs b/src/Ryujinx.Tests/Audio/Renderer/Server/MixStateTests.cs
index d1ddf64d..d1ddf64d 100644
--- a/Ryujinx.Tests/Audio/Renderer/Server/MixStateTests.cs
+++ b/src/Ryujinx.Tests/Audio/Renderer/Server/MixStateTests.cs
diff --git a/Ryujinx.Tests/Audio/Renderer/Server/PoolMapperTests.cs b/src/Ryujinx.Tests/Audio/Renderer/Server/PoolMapperTests.cs
index d2c2e6cb..d2c2e6cb 100644
--- a/Ryujinx.Tests/Audio/Renderer/Server/PoolMapperTests.cs
+++ b/src/Ryujinx.Tests/Audio/Renderer/Server/PoolMapperTests.cs
diff --git a/Ryujinx.Tests/Audio/Renderer/Server/SplitterDestinationTests.cs b/src/Ryujinx.Tests/Audio/Renderer/Server/SplitterDestinationTests.cs
index 51362954..51362954 100644
--- a/Ryujinx.Tests/Audio/Renderer/Server/SplitterDestinationTests.cs
+++ b/src/Ryujinx.Tests/Audio/Renderer/Server/SplitterDestinationTests.cs
diff --git a/Ryujinx.Tests/Audio/Renderer/Server/SplitterStateTests.cs b/src/Ryujinx.Tests/Audio/Renderer/Server/SplitterStateTests.cs
index 2486f8c0..2486f8c0 100644
--- a/Ryujinx.Tests/Audio/Renderer/Server/SplitterStateTests.cs
+++ b/src/Ryujinx.Tests/Audio/Renderer/Server/SplitterStateTests.cs
diff --git a/Ryujinx.Tests/Audio/Renderer/Server/VoiceChannelResourceTests.cs b/src/Ryujinx.Tests/Audio/Renderer/Server/VoiceChannelResourceTests.cs
index 0b867286..0b867286 100644
--- a/Ryujinx.Tests/Audio/Renderer/Server/VoiceChannelResourceTests.cs
+++ b/src/Ryujinx.Tests/Audio/Renderer/Server/VoiceChannelResourceTests.cs
diff --git a/Ryujinx.Tests/Audio/Renderer/Server/VoiceStateTests.cs b/src/Ryujinx.Tests/Audio/Renderer/Server/VoiceStateTests.cs
index ddd05bc4..ddd05bc4 100644
--- a/Ryujinx.Tests/Audio/Renderer/Server/VoiceStateTests.cs
+++ b/src/Ryujinx.Tests/Audio/Renderer/Server/VoiceStateTests.cs
diff --git a/Ryujinx.Tests/Audio/Renderer/Server/WaveBufferTests.cs b/src/Ryujinx.Tests/Audio/Renderer/Server/WaveBufferTests.cs
index 9f3889c0..9f3889c0 100644
--- a/Ryujinx.Tests/Audio/Renderer/Server/WaveBufferTests.cs
+++ b/src/Ryujinx.Tests/Audio/Renderer/Server/WaveBufferTests.cs
diff --git a/Ryujinx.Tests/Audio/Renderer/VoiceChannelResourceInParameterTests.cs b/src/Ryujinx.Tests/Audio/Renderer/VoiceChannelResourceInParameterTests.cs
index b04f505e..b04f505e 100644
--- a/Ryujinx.Tests/Audio/Renderer/VoiceChannelResourceInParameterTests.cs
+++ b/src/Ryujinx.Tests/Audio/Renderer/VoiceChannelResourceInParameterTests.cs
diff --git a/Ryujinx.Tests/Audio/Renderer/VoiceInParameterTests.cs b/src/Ryujinx.Tests/Audio/Renderer/VoiceInParameterTests.cs
index 9770189c..9770189c 100644
--- a/Ryujinx.Tests/Audio/Renderer/VoiceInParameterTests.cs
+++ b/src/Ryujinx.Tests/Audio/Renderer/VoiceInParameterTests.cs
diff --git a/Ryujinx.Tests/Audio/Renderer/VoiceOutStatusTests.cs b/src/Ryujinx.Tests/Audio/Renderer/VoiceOutStatusTests.cs
index abef0646..abef0646 100644
--- a/Ryujinx.Tests/Audio/Renderer/VoiceOutStatusTests.cs
+++ b/src/Ryujinx.Tests/Audio/Renderer/VoiceOutStatusTests.cs
diff --git a/Ryujinx.Tests/Cpu/Arm64CodeGenCommonTests.cs b/src/Ryujinx.Tests/Cpu/Arm64CodeGenCommonTests.cs
index e16361bb..e16361bb 100644
--- a/Ryujinx.Tests/Cpu/Arm64CodeGenCommonTests.cs
+++ b/src/Ryujinx.Tests/Cpu/Arm64CodeGenCommonTests.cs
diff --git a/Ryujinx.Tests/Cpu/CpuContext.cs b/src/Ryujinx.Tests/Cpu/CpuContext.cs
index 96b4965a..96b4965a 100644
--- a/Ryujinx.Tests/Cpu/CpuContext.cs
+++ b/src/Ryujinx.Tests/Cpu/CpuContext.cs
diff --git a/Ryujinx.Tests/Cpu/CpuTest.cs b/src/Ryujinx.Tests/Cpu/CpuTest.cs
index 979b313b..979b313b 100644
--- a/Ryujinx.Tests/Cpu/CpuTest.cs
+++ b/src/Ryujinx.Tests/Cpu/CpuTest.cs
diff --git a/Ryujinx.Tests/Cpu/CpuTest32.cs b/src/Ryujinx.Tests/Cpu/CpuTest32.cs
index 47dc9f8a..47dc9f8a 100644
--- a/Ryujinx.Tests/Cpu/CpuTest32.cs
+++ b/src/Ryujinx.Tests/Cpu/CpuTest32.cs
diff --git a/Ryujinx.Tests/Cpu/CpuTestAlu.cs b/src/Ryujinx.Tests/Cpu/CpuTestAlu.cs
index 7318d979..7318d979 100644
--- a/Ryujinx.Tests/Cpu/CpuTestAlu.cs
+++ b/src/Ryujinx.Tests/Cpu/CpuTestAlu.cs
diff --git a/Ryujinx.Tests/Cpu/CpuTestAlu32.cs b/src/Ryujinx.Tests/Cpu/CpuTestAlu32.cs
index 0d009e90..0d009e90 100644
--- a/Ryujinx.Tests/Cpu/CpuTestAlu32.cs
+++ b/src/Ryujinx.Tests/Cpu/CpuTestAlu32.cs
diff --git a/Ryujinx.Tests/Cpu/CpuTestAluBinary.cs b/src/Ryujinx.Tests/Cpu/CpuTestAluBinary.cs
index 0265e523..0265e523 100644
--- a/Ryujinx.Tests/Cpu/CpuTestAluBinary.cs
+++ b/src/Ryujinx.Tests/Cpu/CpuTestAluBinary.cs
diff --git a/Ryujinx.Tests/Cpu/CpuTestAluBinary32.cs b/src/Ryujinx.Tests/Cpu/CpuTestAluBinary32.cs
index d92a9522..d92a9522 100644
--- a/Ryujinx.Tests/Cpu/CpuTestAluBinary32.cs
+++ b/src/Ryujinx.Tests/Cpu/CpuTestAluBinary32.cs
diff --git a/Ryujinx.Tests/Cpu/CpuTestAluImm.cs b/src/Ryujinx.Tests/Cpu/CpuTestAluImm.cs
index c97ef9ed..c97ef9ed 100644
--- a/Ryujinx.Tests/Cpu/CpuTestAluImm.cs
+++ b/src/Ryujinx.Tests/Cpu/CpuTestAluImm.cs
diff --git a/Ryujinx.Tests/Cpu/CpuTestAluImm32.cs b/src/Ryujinx.Tests/Cpu/CpuTestAluImm32.cs
index cc12f387..cc12f387 100644
--- a/Ryujinx.Tests/Cpu/CpuTestAluImm32.cs
+++ b/src/Ryujinx.Tests/Cpu/CpuTestAluImm32.cs
diff --git a/Ryujinx.Tests/Cpu/CpuTestAluRs.cs b/src/Ryujinx.Tests/Cpu/CpuTestAluRs.cs
index 20e0e396..20e0e396 100644
--- a/Ryujinx.Tests/Cpu/CpuTestAluRs.cs
+++ b/src/Ryujinx.Tests/Cpu/CpuTestAluRs.cs
diff --git a/Ryujinx.Tests/Cpu/CpuTestAluRs32.cs b/src/Ryujinx.Tests/Cpu/CpuTestAluRs32.cs
index d241aac4..d241aac4 100644
--- a/Ryujinx.Tests/Cpu/CpuTestAluRs32.cs
+++ b/src/Ryujinx.Tests/Cpu/CpuTestAluRs32.cs
diff --git a/Ryujinx.Tests/Cpu/CpuTestAluRx.cs b/src/Ryujinx.Tests/Cpu/CpuTestAluRx.cs
index d51e7620..d51e7620 100644
--- a/Ryujinx.Tests/Cpu/CpuTestAluRx.cs
+++ b/src/Ryujinx.Tests/Cpu/CpuTestAluRx.cs
diff --git a/Ryujinx.Tests/Cpu/CpuTestBf32.cs b/src/Ryujinx.Tests/Cpu/CpuTestBf32.cs
index 871e7649..871e7649 100644
--- a/Ryujinx.Tests/Cpu/CpuTestBf32.cs
+++ b/src/Ryujinx.Tests/Cpu/CpuTestBf32.cs
diff --git a/Ryujinx.Tests/Cpu/CpuTestBfm.cs b/src/Ryujinx.Tests/Cpu/CpuTestBfm.cs
index c169ee41..c169ee41 100644
--- a/Ryujinx.Tests/Cpu/CpuTestBfm.cs
+++ b/src/Ryujinx.Tests/Cpu/CpuTestBfm.cs
diff --git a/Ryujinx.Tests/Cpu/CpuTestCcmpImm.cs b/src/Ryujinx.Tests/Cpu/CpuTestCcmpImm.cs
index 2c431fb2..2c431fb2 100644
--- a/Ryujinx.Tests/Cpu/CpuTestCcmpImm.cs
+++ b/src/Ryujinx.Tests/Cpu/CpuTestCcmpImm.cs
diff --git a/Ryujinx.Tests/Cpu/CpuTestCcmpReg.cs b/src/Ryujinx.Tests/Cpu/CpuTestCcmpReg.cs
index 1021de93..1021de93 100644
--- a/Ryujinx.Tests/Cpu/CpuTestCcmpReg.cs
+++ b/src/Ryujinx.Tests/Cpu/CpuTestCcmpReg.cs
diff --git a/Ryujinx.Tests/Cpu/CpuTestCsel.cs b/src/Ryujinx.Tests/Cpu/CpuTestCsel.cs
index 379cdfd8..379cdfd8 100644
--- a/Ryujinx.Tests/Cpu/CpuTestCsel.cs
+++ b/src/Ryujinx.Tests/Cpu/CpuTestCsel.cs
diff --git a/Ryujinx.Tests/Cpu/CpuTestMisc.cs b/src/Ryujinx.Tests/Cpu/CpuTestMisc.cs
index b643a102..b643a102 100644
--- a/Ryujinx.Tests/Cpu/CpuTestMisc.cs
+++ b/src/Ryujinx.Tests/Cpu/CpuTestMisc.cs
diff --git a/Ryujinx.Tests/Cpu/CpuTestMisc32.cs b/src/Ryujinx.Tests/Cpu/CpuTestMisc32.cs
index e6115013..e6115013 100644
--- a/Ryujinx.Tests/Cpu/CpuTestMisc32.cs
+++ b/src/Ryujinx.Tests/Cpu/CpuTestMisc32.cs
diff --git a/Ryujinx.Tests/Cpu/CpuTestMov.cs b/src/Ryujinx.Tests/Cpu/CpuTestMov.cs
index c437560a..c437560a 100644
--- a/Ryujinx.Tests/Cpu/CpuTestMov.cs
+++ b/src/Ryujinx.Tests/Cpu/CpuTestMov.cs
diff --git a/Ryujinx.Tests/Cpu/CpuTestMul.cs b/src/Ryujinx.Tests/Cpu/CpuTestMul.cs
index c94bcbdb..c94bcbdb 100644
--- a/Ryujinx.Tests/Cpu/CpuTestMul.cs
+++ b/src/Ryujinx.Tests/Cpu/CpuTestMul.cs
diff --git a/Ryujinx.Tests/Cpu/CpuTestMul32.cs b/src/Ryujinx.Tests/Cpu/CpuTestMul32.cs
index 0743e913..0743e913 100644
--- a/Ryujinx.Tests/Cpu/CpuTestMul32.cs
+++ b/src/Ryujinx.Tests/Cpu/CpuTestMul32.cs
diff --git a/Ryujinx.Tests/Cpu/CpuTestSimd.cs b/src/Ryujinx.Tests/Cpu/CpuTestSimd.cs
index 7c68c0fa..7c68c0fa 100644
--- a/Ryujinx.Tests/Cpu/CpuTestSimd.cs
+++ b/src/Ryujinx.Tests/Cpu/CpuTestSimd.cs
diff --git a/Ryujinx.Tests/Cpu/CpuTestSimd32.cs b/src/Ryujinx.Tests/Cpu/CpuTestSimd32.cs
index 42bc2ac5..42bc2ac5 100644
--- a/Ryujinx.Tests/Cpu/CpuTestSimd32.cs
+++ b/src/Ryujinx.Tests/Cpu/CpuTestSimd32.cs
diff --git a/Ryujinx.Tests/Cpu/CpuTestSimdCrypto.cs b/src/Ryujinx.Tests/Cpu/CpuTestSimdCrypto.cs
index fd8ec9c5..fd8ec9c5 100644
--- a/Ryujinx.Tests/Cpu/CpuTestSimdCrypto.cs
+++ b/src/Ryujinx.Tests/Cpu/CpuTestSimdCrypto.cs
diff --git a/Ryujinx.Tests/Cpu/CpuTestSimdCrypto32.cs b/src/Ryujinx.Tests/Cpu/CpuTestSimdCrypto32.cs
index 0bcb7a1f..0bcb7a1f 100644
--- a/Ryujinx.Tests/Cpu/CpuTestSimdCrypto32.cs
+++ b/src/Ryujinx.Tests/Cpu/CpuTestSimdCrypto32.cs
diff --git a/Ryujinx.Tests/Cpu/CpuTestSimdCvt.cs b/src/Ryujinx.Tests/Cpu/CpuTestSimdCvt.cs
index dbb9410c..dbb9410c 100644
--- a/Ryujinx.Tests/Cpu/CpuTestSimdCvt.cs
+++ b/src/Ryujinx.Tests/Cpu/CpuTestSimdCvt.cs
diff --git a/Ryujinx.Tests/Cpu/CpuTestSimdCvt32.cs b/src/Ryujinx.Tests/Cpu/CpuTestSimdCvt32.cs
index aa68cded..aa68cded 100644
--- a/Ryujinx.Tests/Cpu/CpuTestSimdCvt32.cs
+++ b/src/Ryujinx.Tests/Cpu/CpuTestSimdCvt32.cs
diff --git a/Ryujinx.Tests/Cpu/CpuTestSimdExt.cs b/src/Ryujinx.Tests/Cpu/CpuTestSimdExt.cs
index dae09a16..dae09a16 100644
--- a/Ryujinx.Tests/Cpu/CpuTestSimdExt.cs
+++ b/src/Ryujinx.Tests/Cpu/CpuTestSimdExt.cs
diff --git a/Ryujinx.Tests/Cpu/CpuTestSimdFcond.cs b/src/Ryujinx.Tests/Cpu/CpuTestSimdFcond.cs
index bf13236e..bf13236e 100644
--- a/Ryujinx.Tests/Cpu/CpuTestSimdFcond.cs
+++ b/src/Ryujinx.Tests/Cpu/CpuTestSimdFcond.cs
diff --git a/Ryujinx.Tests/Cpu/CpuTestSimdFmov.cs b/src/Ryujinx.Tests/Cpu/CpuTestSimdFmov.cs
index aa6e0c94..aa6e0c94 100644
--- a/Ryujinx.Tests/Cpu/CpuTestSimdFmov.cs
+++ b/src/Ryujinx.Tests/Cpu/CpuTestSimdFmov.cs
diff --git a/Ryujinx.Tests/Cpu/CpuTestSimdImm.cs b/src/Ryujinx.Tests/Cpu/CpuTestSimdImm.cs
index d946b433..d946b433 100644
--- a/Ryujinx.Tests/Cpu/CpuTestSimdImm.cs
+++ b/src/Ryujinx.Tests/Cpu/CpuTestSimdImm.cs
diff --git a/Ryujinx.Tests/Cpu/CpuTestSimdIns.cs b/src/Ryujinx.Tests/Cpu/CpuTestSimdIns.cs
index e1e81a00..e1e81a00 100644
--- a/Ryujinx.Tests/Cpu/CpuTestSimdIns.cs
+++ b/src/Ryujinx.Tests/Cpu/CpuTestSimdIns.cs
diff --git a/Ryujinx.Tests/Cpu/CpuTestSimdLogical32.cs b/src/Ryujinx.Tests/Cpu/CpuTestSimdLogical32.cs
index 2cc1a094..2cc1a094 100644
--- a/Ryujinx.Tests/Cpu/CpuTestSimdLogical32.cs
+++ b/src/Ryujinx.Tests/Cpu/CpuTestSimdLogical32.cs
diff --git a/Ryujinx.Tests/Cpu/CpuTestSimdMemory32.cs b/src/Ryujinx.Tests/Cpu/CpuTestSimdMemory32.cs
index 2f9504cb..2f9504cb 100644
--- a/Ryujinx.Tests/Cpu/CpuTestSimdMemory32.cs
+++ b/src/Ryujinx.Tests/Cpu/CpuTestSimdMemory32.cs
diff --git a/Ryujinx.Tests/Cpu/CpuTestSimdMov32.cs b/src/Ryujinx.Tests/Cpu/CpuTestSimdMov32.cs
index 399b058f..399b058f 100644
--- a/Ryujinx.Tests/Cpu/CpuTestSimdMov32.cs
+++ b/src/Ryujinx.Tests/Cpu/CpuTestSimdMov32.cs
diff --git a/Ryujinx.Tests/Cpu/CpuTestSimdReg.cs b/src/Ryujinx.Tests/Cpu/CpuTestSimdReg.cs
index 1f2a6bc8..1f2a6bc8 100644
--- a/Ryujinx.Tests/Cpu/CpuTestSimdReg.cs
+++ b/src/Ryujinx.Tests/Cpu/CpuTestSimdReg.cs
diff --git a/Ryujinx.Tests/Cpu/CpuTestSimdReg32.cs b/src/Ryujinx.Tests/Cpu/CpuTestSimdReg32.cs
index b19137a4..b19137a4 100644
--- a/Ryujinx.Tests/Cpu/CpuTestSimdReg32.cs
+++ b/src/Ryujinx.Tests/Cpu/CpuTestSimdReg32.cs
diff --git a/Ryujinx.Tests/Cpu/CpuTestSimdRegElem.cs b/src/Ryujinx.Tests/Cpu/CpuTestSimdRegElem.cs
index 7f5f6d17..7f5f6d17 100644
--- a/Ryujinx.Tests/Cpu/CpuTestSimdRegElem.cs
+++ b/src/Ryujinx.Tests/Cpu/CpuTestSimdRegElem.cs
diff --git a/Ryujinx.Tests/Cpu/CpuTestSimdRegElem32.cs b/src/Ryujinx.Tests/Cpu/CpuTestSimdRegElem32.cs
index cf960dfd..cf960dfd 100644
--- a/Ryujinx.Tests/Cpu/CpuTestSimdRegElem32.cs
+++ b/src/Ryujinx.Tests/Cpu/CpuTestSimdRegElem32.cs
diff --git a/Ryujinx.Tests/Cpu/CpuTestSimdRegElemF.cs b/src/Ryujinx.Tests/Cpu/CpuTestSimdRegElemF.cs
index 31b23604..31b23604 100644
--- a/Ryujinx.Tests/Cpu/CpuTestSimdRegElemF.cs
+++ b/src/Ryujinx.Tests/Cpu/CpuTestSimdRegElemF.cs
diff --git a/Ryujinx.Tests/Cpu/CpuTestSimdShImm.cs b/src/Ryujinx.Tests/Cpu/CpuTestSimdShImm.cs
index 4a49814e..4a49814e 100644
--- a/Ryujinx.Tests/Cpu/CpuTestSimdShImm.cs
+++ b/src/Ryujinx.Tests/Cpu/CpuTestSimdShImm.cs
diff --git a/Ryujinx.Tests/Cpu/CpuTestSimdShImm32.cs b/src/Ryujinx.Tests/Cpu/CpuTestSimdShImm32.cs
index e7fad89f..e7fad89f 100644
--- a/Ryujinx.Tests/Cpu/CpuTestSimdShImm32.cs
+++ b/src/Ryujinx.Tests/Cpu/CpuTestSimdShImm32.cs
diff --git a/Ryujinx.Tests/Cpu/CpuTestSimdTbl.cs b/src/Ryujinx.Tests/Cpu/CpuTestSimdTbl.cs
index 7bafc195..7bafc195 100644
--- a/Ryujinx.Tests/Cpu/CpuTestSimdTbl.cs
+++ b/src/Ryujinx.Tests/Cpu/CpuTestSimdTbl.cs
diff --git a/Ryujinx.Tests/Cpu/CpuTestSystem.cs b/src/Ryujinx.Tests/Cpu/CpuTestSystem.cs
index cb8d9ce1..cb8d9ce1 100644
--- a/Ryujinx.Tests/Cpu/CpuTestSystem.cs
+++ b/src/Ryujinx.Tests/Cpu/CpuTestSystem.cs
diff --git a/Ryujinx.Tests/Cpu/CpuTestT32Alu.cs b/src/Ryujinx.Tests/Cpu/CpuTestT32Alu.cs
index caef53d8..caef53d8 100644
--- a/Ryujinx.Tests/Cpu/CpuTestT32Alu.cs
+++ b/src/Ryujinx.Tests/Cpu/CpuTestT32Alu.cs
diff --git a/Ryujinx.Tests/Cpu/CpuTestT32Flow.cs b/src/Ryujinx.Tests/Cpu/CpuTestT32Flow.cs
index 2c83b01d..2c83b01d 100644
--- a/Ryujinx.Tests/Cpu/CpuTestT32Flow.cs
+++ b/src/Ryujinx.Tests/Cpu/CpuTestT32Flow.cs
diff --git a/Ryujinx.Tests/Cpu/CpuTestT32Mem.cs b/src/Ryujinx.Tests/Cpu/CpuTestT32Mem.cs
index e3f8d7ec..e3f8d7ec 100644
--- a/Ryujinx.Tests/Cpu/CpuTestT32Mem.cs
+++ b/src/Ryujinx.Tests/Cpu/CpuTestT32Mem.cs
diff --git a/Ryujinx.Tests/Cpu/CpuTestThumb.cs b/src/Ryujinx.Tests/Cpu/CpuTestThumb.cs
index b740f524..b740f524 100644
--- a/Ryujinx.Tests/Cpu/CpuTestThumb.cs
+++ b/src/Ryujinx.Tests/Cpu/CpuTestThumb.cs
diff --git a/Ryujinx.Tests/Cpu/EnvironmentTests.cs b/src/Ryujinx.Tests/Cpu/EnvironmentTests.cs
index d374c08a..d374c08a 100644
--- a/Ryujinx.Tests/Cpu/EnvironmentTests.cs
+++ b/src/Ryujinx.Tests/Cpu/EnvironmentTests.cs
diff --git a/Ryujinx.Tests/Cpu/PrecomputedMemoryThumbTestCase.cs b/src/Ryujinx.Tests/Cpu/PrecomputedMemoryThumbTestCase.cs
index cec5a668..cec5a668 100644
--- a/Ryujinx.Tests/Cpu/PrecomputedMemoryThumbTestCase.cs
+++ b/src/Ryujinx.Tests/Cpu/PrecomputedMemoryThumbTestCase.cs
diff --git a/Ryujinx.Tests/Cpu/PrecomputedThumbTestCase.cs b/src/Ryujinx.Tests/Cpu/PrecomputedThumbTestCase.cs
index 7e911230..7e911230 100644
--- a/Ryujinx.Tests/Cpu/PrecomputedThumbTestCase.cs
+++ b/src/Ryujinx.Tests/Cpu/PrecomputedThumbTestCase.cs
diff --git a/Ryujinx.Tests/HLE/SoftwareKeyboardTests.cs b/src/Ryujinx.Tests/HLE/SoftwareKeyboardTests.cs
index d16039ad..d16039ad 100644
--- a/Ryujinx.Tests/HLE/SoftwareKeyboardTests.cs
+++ b/src/Ryujinx.Tests/HLE/SoftwareKeyboardTests.cs
diff --git a/Ryujinx.Tests/Memory/MockMemoryManager.cs b/src/Ryujinx.Tests/Memory/MockMemoryManager.cs
index eeecf419..eeecf419 100644
--- a/Ryujinx.Tests/Memory/MockMemoryManager.cs
+++ b/src/Ryujinx.Tests/Memory/MockMemoryManager.cs
diff --git a/Ryujinx.Tests/Memory/PartialUnmaps.cs b/src/Ryujinx.Tests/Memory/PartialUnmaps.cs
index b805969d..b805969d 100644
--- a/Ryujinx.Tests/Memory/PartialUnmaps.cs
+++ b/src/Ryujinx.Tests/Memory/PartialUnmaps.cs
diff --git a/Ryujinx.Tests/Ryujinx.Tests.csproj b/src/Ryujinx.Tests/Ryujinx.Tests.csproj
index 5976e998..5976e998 100644
--- a/Ryujinx.Tests/Ryujinx.Tests.csproj
+++ b/src/Ryujinx.Tests/Ryujinx.Tests.csproj
diff --git a/Ryujinx.Tests/Time/TimeZoneRuleTests.cs b/src/Ryujinx.Tests/Time/TimeZoneRuleTests.cs
index 4d5c4eaa..4d5c4eaa 100644
--- a/Ryujinx.Tests/Time/TimeZoneRuleTests.cs
+++ b/src/Ryujinx.Tests/Time/TimeZoneRuleTests.cs
diff --git a/Ryujinx.Tests/TreeDictionaryTests.cs b/src/Ryujinx.Tests/TreeDictionaryTests.cs
index 610c2f6e..610c2f6e 100644
--- a/Ryujinx.Tests/TreeDictionaryTests.cs
+++ b/src/Ryujinx.Tests/TreeDictionaryTests.cs
diff --git a/Ryujinx.Ui.Common/App/ApplicationAddedEventArgs.cs b/src/Ryujinx.Ui.Common/App/ApplicationAddedEventArgs.cs
index 6ae7409a..6ae7409a 100644
--- a/Ryujinx.Ui.Common/App/ApplicationAddedEventArgs.cs
+++ b/src/Ryujinx.Ui.Common/App/ApplicationAddedEventArgs.cs
diff --git a/Ryujinx.Ui.Common/App/ApplicationCountUpdatedEventArgs.cs b/src/Ryujinx.Ui.Common/App/ApplicationCountUpdatedEventArgs.cs
index 981a82d5..981a82d5 100644
--- a/Ryujinx.Ui.Common/App/ApplicationCountUpdatedEventArgs.cs
+++ b/src/Ryujinx.Ui.Common/App/ApplicationCountUpdatedEventArgs.cs
diff --git a/Ryujinx.Ui.Common/App/ApplicationData.cs b/src/Ryujinx.Ui.Common/App/ApplicationData.cs
index ba430172..ba430172 100644
--- a/Ryujinx.Ui.Common/App/ApplicationData.cs
+++ b/src/Ryujinx.Ui.Common/App/ApplicationData.cs
diff --git a/Ryujinx.Ui.Common/App/ApplicationJsonSerializerContext.cs b/src/Ryujinx.Ui.Common/App/ApplicationJsonSerializerContext.cs
index f81121c2..f81121c2 100644
--- a/Ryujinx.Ui.Common/App/ApplicationJsonSerializerContext.cs
+++ b/src/Ryujinx.Ui.Common/App/ApplicationJsonSerializerContext.cs
diff --git a/Ryujinx.Ui.Common/App/ApplicationLibrary.cs b/src/Ryujinx.Ui.Common/App/ApplicationLibrary.cs
index b7b57f1a..b7b57f1a 100644
--- a/Ryujinx.Ui.Common/App/ApplicationLibrary.cs
+++ b/src/Ryujinx.Ui.Common/App/ApplicationLibrary.cs
diff --git a/Ryujinx.Ui.Common/App/ApplicationMetadata.cs b/src/Ryujinx.Ui.Common/App/ApplicationMetadata.cs
index e19f7483..e19f7483 100644
--- a/Ryujinx.Ui.Common/App/ApplicationMetadata.cs
+++ b/src/Ryujinx.Ui.Common/App/ApplicationMetadata.cs
diff --git a/Ryujinx.Ui.Common/Configuration/AudioBackend.cs b/src/Ryujinx.Ui.Common/Configuration/AudioBackend.cs
index 1f9bd0ba..1f9bd0ba 100644
--- a/Ryujinx.Ui.Common/Configuration/AudioBackend.cs
+++ b/src/Ryujinx.Ui.Common/Configuration/AudioBackend.cs
diff --git a/Ryujinx.Ui.Common/Configuration/ConfigurationFileFormat.cs b/src/Ryujinx.Ui.Common/Configuration/ConfigurationFileFormat.cs
index c9e7f80e..c9e7f80e 100644
--- a/Ryujinx.Ui.Common/Configuration/ConfigurationFileFormat.cs
+++ b/src/Ryujinx.Ui.Common/Configuration/ConfigurationFileFormat.cs
diff --git a/Ryujinx.Ui.Common/Configuration/ConfigurationFileFormatSettings.cs b/src/Ryujinx.Ui.Common/Configuration/ConfigurationFileFormatSettings.cs
index 6ce2ef01..6ce2ef01 100644
--- a/Ryujinx.Ui.Common/Configuration/ConfigurationFileFormatSettings.cs
+++ b/src/Ryujinx.Ui.Common/Configuration/ConfigurationFileFormatSettings.cs
diff --git a/Ryujinx.Ui.Common/Configuration/ConfigurationJsonSerializerContext.cs b/src/Ryujinx.Ui.Common/Configuration/ConfigurationJsonSerializerContext.cs
index bb8dfb49..bb8dfb49 100644
--- a/Ryujinx.Ui.Common/Configuration/ConfigurationJsonSerializerContext.cs
+++ b/src/Ryujinx.Ui.Common/Configuration/ConfigurationJsonSerializerContext.cs
diff --git a/Ryujinx.Ui.Common/Configuration/ConfigurationLoadResult.cs b/src/Ryujinx.Ui.Common/Configuration/ConfigurationLoadResult.cs
index 6b08baa6..6b08baa6 100644
--- a/Ryujinx.Ui.Common/Configuration/ConfigurationLoadResult.cs
+++ b/src/Ryujinx.Ui.Common/Configuration/ConfigurationLoadResult.cs
diff --git a/Ryujinx.Ui.Common/Configuration/ConfigurationState.cs b/src/Ryujinx.Ui.Common/Configuration/ConfigurationState.cs
index 3a68cc26..3a68cc26 100644
--- a/Ryujinx.Ui.Common/Configuration/ConfigurationState.cs
+++ b/src/Ryujinx.Ui.Common/Configuration/ConfigurationState.cs
diff --git a/Ryujinx.Ui.Common/Configuration/FileTypes.cs b/src/Ryujinx.Ui.Common/Configuration/FileTypes.cs
index 0b8b7384..0b8b7384 100644
--- a/Ryujinx.Ui.Common/Configuration/FileTypes.cs
+++ b/src/Ryujinx.Ui.Common/Configuration/FileTypes.cs
diff --git a/Ryujinx.Ui.Common/Configuration/LoggerModule.cs b/src/Ryujinx.Ui.Common/Configuration/LoggerModule.cs
index f4712213..f4712213 100644
--- a/Ryujinx.Ui.Common/Configuration/LoggerModule.cs
+++ b/src/Ryujinx.Ui.Common/Configuration/LoggerModule.cs
diff --git a/Ryujinx.Ui.Common/Configuration/System/Language.cs b/src/Ryujinx.Ui.Common/Configuration/System/Language.cs
index 404f8063..404f8063 100644
--- a/Ryujinx.Ui.Common/Configuration/System/Language.cs
+++ b/src/Ryujinx.Ui.Common/Configuration/System/Language.cs
diff --git a/Ryujinx.Ui.Common/Configuration/System/Region.cs b/src/Ryujinx.Ui.Common/Configuration/System/Region.cs
index 7dfac638..7dfac638 100644
--- a/Ryujinx.Ui.Common/Configuration/System/Region.cs
+++ b/src/Ryujinx.Ui.Common/Configuration/System/Region.cs
diff --git a/Ryujinx.Ui.Common/Configuration/Ui/ColumnSort.cs b/src/Ryujinx.Ui.Common/Configuration/Ui/ColumnSort.cs
index 95bb43f8..95bb43f8 100644
--- a/Ryujinx.Ui.Common/Configuration/Ui/ColumnSort.cs
+++ b/src/Ryujinx.Ui.Common/Configuration/Ui/ColumnSort.cs
diff --git a/Ryujinx.Ui.Common/Configuration/Ui/GuiColumns.cs b/src/Ryujinx.Ui.Common/Configuration/Ui/GuiColumns.cs
index 89264cff..89264cff 100644
--- a/Ryujinx.Ui.Common/Configuration/Ui/GuiColumns.cs
+++ b/src/Ryujinx.Ui.Common/Configuration/Ui/GuiColumns.cs
diff --git a/Ryujinx.Ui.Common/Configuration/Ui/ShownFileTypes.cs b/src/Ryujinx.Ui.Common/Configuration/Ui/ShownFileTypes.cs
index c0b76e85..c0b76e85 100644
--- a/Ryujinx.Ui.Common/Configuration/Ui/ShownFileTypes.cs
+++ b/src/Ryujinx.Ui.Common/Configuration/Ui/ShownFileTypes.cs
diff --git a/Ryujinx.Ui.Common/DiscordIntegrationModule.cs b/src/Ryujinx.Ui.Common/DiscordIntegrationModule.cs
index 5ae886ac..5ae886ac 100644
--- a/Ryujinx.Ui.Common/DiscordIntegrationModule.cs
+++ b/src/Ryujinx.Ui.Common/DiscordIntegrationModule.cs
diff --git a/Ryujinx.Ui.Common/Extensions/FileTypeExtensions.cs b/src/Ryujinx.Ui.Common/Extensions/FileTypeExtensions.cs
index e2ac4950..e2ac4950 100644
--- a/Ryujinx.Ui.Common/Extensions/FileTypeExtensions.cs
+++ b/src/Ryujinx.Ui.Common/Extensions/FileTypeExtensions.cs
diff --git a/Ryujinx.Ui.Common/Helper/CommandLineState.cs b/src/Ryujinx.Ui.Common/Helper/CommandLineState.cs
index 8ca7fba1..8ca7fba1 100644
--- a/Ryujinx.Ui.Common/Helper/CommandLineState.cs
+++ b/src/Ryujinx.Ui.Common/Helper/CommandLineState.cs
diff --git a/Ryujinx.Ui.Common/Helper/ConsoleHelper.cs b/src/Ryujinx.Ui.Common/Helper/ConsoleHelper.cs
index 4eb3b79c..4eb3b79c 100644
--- a/Ryujinx.Ui.Common/Helper/ConsoleHelper.cs
+++ b/src/Ryujinx.Ui.Common/Helper/ConsoleHelper.cs
diff --git a/Ryujinx.Ui.Common/Helper/FileAssociationHelper.cs b/src/Ryujinx.Ui.Common/Helper/FileAssociationHelper.cs
index 4f4b2524..4f4b2524 100644
--- a/Ryujinx.Ui.Common/Helper/FileAssociationHelper.cs
+++ b/src/Ryujinx.Ui.Common/Helper/FileAssociationHelper.cs
diff --git a/Ryujinx.Ui.Common/Helper/ObjectiveC.cs b/src/Ryujinx.Ui.Common/Helper/ObjectiveC.cs
index 234f7597..234f7597 100644
--- a/Ryujinx.Ui.Common/Helper/ObjectiveC.cs
+++ b/src/Ryujinx.Ui.Common/Helper/ObjectiveC.cs
diff --git a/Ryujinx.Ui.Common/Helper/OpenHelper.cs b/src/Ryujinx.Ui.Common/Helper/OpenHelper.cs
index 5b2e8663..5b2e8663 100644
--- a/Ryujinx.Ui.Common/Helper/OpenHelper.cs
+++ b/src/Ryujinx.Ui.Common/Helper/OpenHelper.cs
diff --git a/Ryujinx.Ui.Common/Helper/SetupValidator.cs b/src/Ryujinx.Ui.Common/Helper/SetupValidator.cs
index 3d779fdf..3d779fdf 100644
--- a/Ryujinx.Ui.Common/Helper/SetupValidator.cs
+++ b/src/Ryujinx.Ui.Common/Helper/SetupValidator.cs
diff --git a/Ryujinx.Ui.Common/Models/Amiibo/AmiiboApi.cs b/src/Ryujinx.Ui.Common/Models/Amiibo/AmiiboApi.cs
index f412b950..f412b950 100644
--- a/Ryujinx.Ui.Common/Models/Amiibo/AmiiboApi.cs
+++ b/src/Ryujinx.Ui.Common/Models/Amiibo/AmiiboApi.cs
diff --git a/Ryujinx.Ui.Common/Models/Amiibo/AmiiboApiGamesSwitch.cs b/src/Ryujinx.Ui.Common/Models/Amiibo/AmiiboApiGamesSwitch.cs
index def7d1bc..def7d1bc 100644
--- a/Ryujinx.Ui.Common/Models/Amiibo/AmiiboApiGamesSwitch.cs
+++ b/src/Ryujinx.Ui.Common/Models/Amiibo/AmiiboApiGamesSwitch.cs
diff --git a/Ryujinx.Ui.Common/Models/Amiibo/AmiiboApiUsage.cs b/src/Ryujinx.Ui.Common/Models/Amiibo/AmiiboApiUsage.cs
index 814573c2..814573c2 100644
--- a/Ryujinx.Ui.Common/Models/Amiibo/AmiiboApiUsage.cs
+++ b/src/Ryujinx.Ui.Common/Models/Amiibo/AmiiboApiUsage.cs
diff --git a/Ryujinx.Ui.Common/Models/Amiibo/AmiiboJson.cs b/src/Ryujinx.Ui.Common/Models/Amiibo/AmiiboJson.cs
index feb7993c..feb7993c 100644
--- a/Ryujinx.Ui.Common/Models/Amiibo/AmiiboJson.cs
+++ b/src/Ryujinx.Ui.Common/Models/Amiibo/AmiiboJson.cs
diff --git a/Ryujinx.Ui.Common/Models/Amiibo/AmiiboJsonSerializerContext.cs b/src/Ryujinx.Ui.Common/Models/Amiibo/AmiiboJsonSerializerContext.cs
index 4cbb5a7b..4cbb5a7b 100644
--- a/Ryujinx.Ui.Common/Models/Amiibo/AmiiboJsonSerializerContext.cs
+++ b/src/Ryujinx.Ui.Common/Models/Amiibo/AmiiboJsonSerializerContext.cs
diff --git a/Ryujinx.Ui.Common/Models/Github/GithubReleaseAssetJsonResponse.cs b/src/Ryujinx.Ui.Common/Models/Github/GithubReleaseAssetJsonResponse.cs
index 10d01478..10d01478 100644
--- a/Ryujinx.Ui.Common/Models/Github/GithubReleaseAssetJsonResponse.cs
+++ b/src/Ryujinx.Ui.Common/Models/Github/GithubReleaseAssetJsonResponse.cs
diff --git a/Ryujinx.Ui.Common/Models/Github/GithubReleasesJsonResponse.cs b/src/Ryujinx.Ui.Common/Models/Github/GithubReleasesJsonResponse.cs
index 954d03e3..954d03e3 100644
--- a/Ryujinx.Ui.Common/Models/Github/GithubReleasesJsonResponse.cs
+++ b/src/Ryujinx.Ui.Common/Models/Github/GithubReleasesJsonResponse.cs
diff --git a/Ryujinx.Ui.Common/Models/Github/GithubReleasesJsonSerializerContext.cs b/src/Ryujinx.Ui.Common/Models/Github/GithubReleasesJsonSerializerContext.cs
index e5fd9d09..e5fd9d09 100644
--- a/Ryujinx.Ui.Common/Models/Github/GithubReleasesJsonSerializerContext.cs
+++ b/src/Ryujinx.Ui.Common/Models/Github/GithubReleasesJsonSerializerContext.cs
diff --git a/Ryujinx.Ui.Common/Resources/Controller_JoyConLeft.svg b/src/Ryujinx.Ui.Common/Resources/Controller_JoyConLeft.svg
index 03585e65..03585e65 100644
--- a/Ryujinx.Ui.Common/Resources/Controller_JoyConLeft.svg
+++ b/src/Ryujinx.Ui.Common/Resources/Controller_JoyConLeft.svg
diff --git a/Ryujinx.Ui.Common/Resources/Controller_JoyConPair.svg b/src/Ryujinx.Ui.Common/Resources/Controller_JoyConPair.svg
index c073c9c0..c073c9c0 100644
--- a/Ryujinx.Ui.Common/Resources/Controller_JoyConPair.svg
+++ b/src/Ryujinx.Ui.Common/Resources/Controller_JoyConPair.svg
diff --git a/Ryujinx.Ui.Common/Resources/Controller_JoyConRight.svg b/src/Ryujinx.Ui.Common/Resources/Controller_JoyConRight.svg
index f4f12514..f4f12514 100644
--- a/Ryujinx.Ui.Common/Resources/Controller_JoyConRight.svg
+++ b/src/Ryujinx.Ui.Common/Resources/Controller_JoyConRight.svg
diff --git a/Ryujinx.Ui.Common/Resources/Controller_ProCon.svg b/src/Ryujinx.Ui.Common/Resources/Controller_ProCon.svg
index 88216776..88216776 100644
--- a/Ryujinx.Ui.Common/Resources/Controller_ProCon.svg
+++ b/src/Ryujinx.Ui.Common/Resources/Controller_ProCon.svg
diff --git a/Ryujinx.Ui.Common/Resources/Icon_NCA.png b/src/Ryujinx.Ui.Common/Resources/Icon_NCA.png
index feae77b9..feae77b9 100644
--- a/Ryujinx.Ui.Common/Resources/Icon_NCA.png
+++ b/src/Ryujinx.Ui.Common/Resources/Icon_NCA.png
Binary files differ
diff --git a/Ryujinx.Ui.Common/Resources/Icon_NRO.png b/src/Ryujinx.Ui.Common/Resources/Icon_NRO.png
index 3a9da621..3a9da621 100644
--- a/Ryujinx.Ui.Common/Resources/Icon_NRO.png
+++ b/src/Ryujinx.Ui.Common/Resources/Icon_NRO.png
Binary files differ
diff --git a/Ryujinx.Ui.Common/Resources/Icon_NSO.png b/src/Ryujinx.Ui.Common/Resources/Icon_NSO.png
index 16de84be..16de84be 100644
--- a/Ryujinx.Ui.Common/Resources/Icon_NSO.png
+++ b/src/Ryujinx.Ui.Common/Resources/Icon_NSO.png
Binary files differ
diff --git a/Ryujinx.Ui.Common/Resources/Icon_NSP.png b/src/Ryujinx.Ui.Common/Resources/Icon_NSP.png
index 4f98e22e..4f98e22e 100644
--- a/Ryujinx.Ui.Common/Resources/Icon_NSP.png
+++ b/src/Ryujinx.Ui.Common/Resources/Icon_NSP.png
Binary files differ
diff --git a/Ryujinx.Ui.Common/Resources/Icon_XCI.png b/src/Ryujinx.Ui.Common/Resources/Icon_XCI.png
index f9c34f47..f9c34f47 100644
--- a/Ryujinx.Ui.Common/Resources/Icon_XCI.png
+++ b/src/Ryujinx.Ui.Common/Resources/Icon_XCI.png
Binary files differ
diff --git a/Ryujinx.Ui.Common/Resources/Logo_Amiibo.png b/src/Ryujinx.Ui.Common/Resources/Logo_Amiibo.png
index cbee8037..cbee8037 100644
--- a/Ryujinx.Ui.Common/Resources/Logo_Amiibo.png
+++ b/src/Ryujinx.Ui.Common/Resources/Logo_Amiibo.png
Binary files differ
diff --git a/Ryujinx.Ui.Common/Resources/Logo_Discord_Dark.png b/src/Ryujinx.Ui.Common/Resources/Logo_Discord_Dark.png
index baececa9..baececa9 100644
--- a/Ryujinx.Ui.Common/Resources/Logo_Discord_Dark.png
+++ b/src/Ryujinx.Ui.Common/Resources/Logo_Discord_Dark.png
Binary files differ
diff --git a/Ryujinx.Ui.Common/Resources/Logo_Discord_Light.png b/src/Ryujinx.Ui.Common/Resources/Logo_Discord_Light.png
index 25fc892d..25fc892d 100644
--- a/Ryujinx.Ui.Common/Resources/Logo_Discord_Light.png
+++ b/src/Ryujinx.Ui.Common/Resources/Logo_Discord_Light.png
Binary files differ
diff --git a/Ryujinx.Ui.Common/Resources/Logo_GitHub_Dark.png b/src/Ryujinx.Ui.Common/Resources/Logo_GitHub_Dark.png
index 50b81752..50b81752 100644
--- a/Ryujinx.Ui.Common/Resources/Logo_GitHub_Dark.png
+++ b/src/Ryujinx.Ui.Common/Resources/Logo_GitHub_Dark.png
Binary files differ
diff --git a/Ryujinx.Ui.Common/Resources/Logo_GitHub_Light.png b/src/Ryujinx.Ui.Common/Resources/Logo_GitHub_Light.png
index 95bc742b..95bc742b 100644
--- a/Ryujinx.Ui.Common/Resources/Logo_GitHub_Light.png
+++ b/src/Ryujinx.Ui.Common/Resources/Logo_GitHub_Light.png
Binary files differ
diff --git a/Ryujinx.Ui.Common/Resources/Logo_Patreon_Dark.png b/src/Ryujinx.Ui.Common/Resources/Logo_Patreon_Dark.png
index 9a521e3f..9a521e3f 100644
--- a/Ryujinx.Ui.Common/Resources/Logo_Patreon_Dark.png
+++ b/src/Ryujinx.Ui.Common/Resources/Logo_Patreon_Dark.png
Binary files differ
diff --git a/Ryujinx.Ui.Common/Resources/Logo_Patreon_Light.png b/src/Ryujinx.Ui.Common/Resources/Logo_Patreon_Light.png
index 44da0ac4..44da0ac4 100644
--- a/Ryujinx.Ui.Common/Resources/Logo_Patreon_Light.png
+++ b/src/Ryujinx.Ui.Common/Resources/Logo_Patreon_Light.png
Binary files differ
diff --git a/Ryujinx.Ui.Common/Resources/Logo_Ryujinx.png b/src/Ryujinx.Ui.Common/Resources/Logo_Ryujinx.png
index 0e8da15e..0e8da15e 100644
--- a/Ryujinx.Ui.Common/Resources/Logo_Ryujinx.png
+++ b/src/Ryujinx.Ui.Common/Resources/Logo_Ryujinx.png
Binary files differ
diff --git a/Ryujinx.Ui.Common/Resources/Logo_Twitter_Dark.png b/src/Ryujinx.Ui.Common/Resources/Logo_Twitter_Dark.png
index 66962e7d..66962e7d 100644
--- a/Ryujinx.Ui.Common/Resources/Logo_Twitter_Dark.png
+++ b/src/Ryujinx.Ui.Common/Resources/Logo_Twitter_Dark.png
Binary files differ
diff --git a/Ryujinx.Ui.Common/Resources/Logo_Twitter_Light.png b/src/Ryujinx.Ui.Common/Resources/Logo_Twitter_Light.png
index 040ca169..040ca169 100644
--- a/Ryujinx.Ui.Common/Resources/Logo_Twitter_Light.png
+++ b/src/Ryujinx.Ui.Common/Resources/Logo_Twitter_Light.png
Binary files differ
diff --git a/Ryujinx.Ui.Common/Ryujinx.Ui.Common.csproj b/src/Ryujinx.Ui.Common/Ryujinx.Ui.Common.csproj
index 511a0389..511a0389 100644
--- a/Ryujinx.Ui.Common/Ryujinx.Ui.Common.csproj
+++ b/src/Ryujinx.Ui.Common/Ryujinx.Ui.Common.csproj
diff --git a/Ryujinx.Ui.Common/UserError.cs b/src/Ryujinx.Ui.Common/UserError.cs
index f4cfa26d..f4cfa26d 100644
--- a/Ryujinx.Ui.Common/UserError.cs
+++ b/src/Ryujinx.Ui.Common/UserError.cs
diff --git a/Ryujinx.Ui.LocaleGenerator/LocaleGenerator.cs b/src/Ryujinx.Ui.LocaleGenerator/LocaleGenerator.cs
index f154e704..f154e704 100644
--- a/Ryujinx.Ui.LocaleGenerator/LocaleGenerator.cs
+++ b/src/Ryujinx.Ui.LocaleGenerator/LocaleGenerator.cs
diff --git a/Ryujinx.Ui.LocaleGenerator/Ryujinx.Ui.LocaleGenerator.csproj b/src/Ryujinx.Ui.LocaleGenerator/Ryujinx.Ui.LocaleGenerator.csproj
index 05cbc764..05cbc764 100644
--- a/Ryujinx.Ui.LocaleGenerator/Ryujinx.Ui.LocaleGenerator.csproj
+++ b/src/Ryujinx.Ui.LocaleGenerator/Ryujinx.Ui.LocaleGenerator.csproj
diff --git a/Ryujinx/Input/GTK3/GTK3Keyboard.cs b/src/Ryujinx/Input/GTK3/GTK3Keyboard.cs
index bc0ad87e..bc0ad87e 100644
--- a/Ryujinx/Input/GTK3/GTK3Keyboard.cs
+++ b/src/Ryujinx/Input/GTK3/GTK3Keyboard.cs
diff --git a/Ryujinx/Input/GTK3/GTK3KeyboardDriver.cs b/src/Ryujinx/Input/GTK3/GTK3KeyboardDriver.cs
index 10c092fe..10c092fe 100644
--- a/Ryujinx/Input/GTK3/GTK3KeyboardDriver.cs
+++ b/src/Ryujinx/Input/GTK3/GTK3KeyboardDriver.cs
diff --git a/Ryujinx/Input/GTK3/GTK3MappingHelper.cs b/src/Ryujinx/Input/GTK3/GTK3MappingHelper.cs
index 7a72a609..7a72a609 100644
--- a/Ryujinx/Input/GTK3/GTK3MappingHelper.cs
+++ b/src/Ryujinx/Input/GTK3/GTK3MappingHelper.cs
diff --git a/Ryujinx/Input/GTK3/GTK3Mouse.cs b/src/Ryujinx/Input/GTK3/GTK3Mouse.cs
index 836c2bf4..836c2bf4 100644
--- a/Ryujinx/Input/GTK3/GTK3Mouse.cs
+++ b/src/Ryujinx/Input/GTK3/GTK3Mouse.cs
diff --git a/Ryujinx/Input/GTK3/GTK3MouseDriver.cs b/src/Ryujinx/Input/GTK3/GTK3MouseDriver.cs
index df37e4f4..df37e4f4 100644
--- a/Ryujinx/Input/GTK3/GTK3MouseDriver.cs
+++ b/src/Ryujinx/Input/GTK3/GTK3MouseDriver.cs
diff --git a/Ryujinx/Modules/Updater/UpdateDialog.cs b/src/Ryujinx/Modules/Updater/UpdateDialog.cs
index 4957b681..4957b681 100644
--- a/Ryujinx/Modules/Updater/UpdateDialog.cs
+++ b/src/Ryujinx/Modules/Updater/UpdateDialog.cs
diff --git a/Ryujinx/Modules/Updater/UpdateDialog.glade b/src/Ryujinx/Modules/Updater/UpdateDialog.glade
index cc80167e..cc80167e 100644
--- a/Ryujinx/Modules/Updater/UpdateDialog.glade
+++ b/src/Ryujinx/Modules/Updater/UpdateDialog.glade
diff --git a/Ryujinx/Modules/Updater/Updater.cs b/src/Ryujinx/Modules/Updater/Updater.cs
index 3e0dc99b..3e0dc99b 100644
--- a/Ryujinx/Modules/Updater/Updater.cs
+++ b/src/Ryujinx/Modules/Updater/Updater.cs
diff --git a/Ryujinx/Program.cs b/src/Ryujinx/Program.cs
index 2e6ede44..2e6ede44 100644
--- a/Ryujinx/Program.cs
+++ b/src/Ryujinx/Program.cs
diff --git a/Ryujinx/Ryujinx.csproj b/src/Ryujinx/Ryujinx.csproj
index 6aae6296..027cdd12 100644
--- a/Ryujinx/Ryujinx.csproj
+++ b/src/Ryujinx/Ryujinx.csproj
@@ -48,25 +48,25 @@
</ItemGroup>
<ItemGroup>
- <Content Include="..\distribution\windows\alsoft.ini" Condition="'$(RuntimeIdentifier)' != 'linux-x64' AND '$(RuntimeIdentifier)' != 'osx-x64'">
+ <Content Include="..\..\distribution\windows\alsoft.ini" Condition="'$(RuntimeIdentifier)' != 'linux-x64' AND '$(RuntimeIdentifier)' != 'osx-x64'">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
<TargetPath>alsoft.ini</TargetPath>
</Content>
- <Content Include="..\distribution\legal\THIRDPARTY.md">
+ <Content Include="..\..\distribution\legal\THIRDPARTY.md">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
<TargetPath>THIRDPARTY.md</TargetPath>
</Content>
- <Content Include="..\LICENSE.txt">
+ <Content Include="..\..\LICENSE.txt">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
<TargetPath>LICENSE.txt</TargetPath>
</Content>
</ItemGroup>
<ItemGroup Condition="'$(RuntimeIdentifier)' == 'linux-x64'">
- <Content Include="..\distribution\linux\Ryujinx.sh">
+ <Content Include="..\..\distribution\linux\Ryujinx.sh">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
- <Content Include="..\distribution\linux\mime\Ryujinx.xml">
+ <Content Include="..\..\distribution\linux\mime\Ryujinx.xml">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
<TargetPath>mime\Ryujinx.xml</TargetPath>
</Content>
diff --git a/Ryujinx/Ryujinx.ico b/src/Ryujinx/Ryujinx.ico
index edf1b93f..edf1b93f 100644
--- a/Ryujinx/Ryujinx.ico
+++ b/src/Ryujinx/Ryujinx.ico
Binary files differ
diff --git a/Ryujinx/Ui/Applet/ErrorAppletDialog.cs b/src/Ryujinx/Ui/Applet/ErrorAppletDialog.cs
index d4cc7ccc..d4cc7ccc 100644
--- a/Ryujinx/Ui/Applet/ErrorAppletDialog.cs
+++ b/src/Ryujinx/Ui/Applet/ErrorAppletDialog.cs
diff --git a/Ryujinx/Ui/Applet/GtkDynamicTextInputHandler.cs b/src/Ryujinx/Ui/Applet/GtkDynamicTextInputHandler.cs
index 79df3cc7..79df3cc7 100644
--- a/Ryujinx/Ui/Applet/GtkDynamicTextInputHandler.cs
+++ b/src/Ryujinx/Ui/Applet/GtkDynamicTextInputHandler.cs
diff --git a/Ryujinx/Ui/Applet/GtkHostUiHandler.cs b/src/Ryujinx/Ui/Applet/GtkHostUiHandler.cs
index d81cbe3c..d81cbe3c 100644
--- a/Ryujinx/Ui/Applet/GtkHostUiHandler.cs
+++ b/src/Ryujinx/Ui/Applet/GtkHostUiHandler.cs
diff --git a/Ryujinx/Ui/Applet/GtkHostUiTheme.cs b/src/Ryujinx/Ui/Applet/GtkHostUiTheme.cs
index f25da47c..f25da47c 100644
--- a/Ryujinx/Ui/Applet/GtkHostUiTheme.cs
+++ b/src/Ryujinx/Ui/Applet/GtkHostUiTheme.cs
diff --git a/Ryujinx/Ui/Applet/SwkbdAppletDialog.cs b/src/Ryujinx/Ui/Applet/SwkbdAppletDialog.cs
index 7c14f0e8..7c14f0e8 100644
--- a/Ryujinx/Ui/Applet/SwkbdAppletDialog.cs
+++ b/src/Ryujinx/Ui/Applet/SwkbdAppletDialog.cs
diff --git a/Ryujinx/Ui/GLRenderer.cs b/src/Ryujinx/Ui/GLRenderer.cs
index e3a9804e..e3a9804e 100644
--- a/Ryujinx/Ui/GLRenderer.cs
+++ b/src/Ryujinx/Ui/GLRenderer.cs
diff --git a/Ryujinx/Ui/Helper/MetalHelper.cs b/src/Ryujinx/Ui/Helper/MetalHelper.cs
index c2d4893e..c2d4893e 100644
--- a/Ryujinx/Ui/Helper/MetalHelper.cs
+++ b/src/Ryujinx/Ui/Helper/MetalHelper.cs
diff --git a/Ryujinx/Ui/Helper/SortHelper.cs b/src/Ryujinx/Ui/Helper/SortHelper.cs
index 0c0eefd2..0c0eefd2 100644
--- a/Ryujinx/Ui/Helper/SortHelper.cs
+++ b/src/Ryujinx/Ui/Helper/SortHelper.cs
diff --git a/Ryujinx/Ui/Helper/ThemeHelper.cs b/src/Ryujinx/Ui/Helper/ThemeHelper.cs
index 448afcc9..448afcc9 100644
--- a/Ryujinx/Ui/Helper/ThemeHelper.cs
+++ b/src/Ryujinx/Ui/Helper/ThemeHelper.cs
diff --git a/Ryujinx/Ui/MainWindow.cs b/src/Ryujinx/Ui/MainWindow.cs
index bf96e18a..bf96e18a 100644
--- a/Ryujinx/Ui/MainWindow.cs
+++ b/src/Ryujinx/Ui/MainWindow.cs
diff --git a/Ryujinx/Ui/MainWindow.glade b/src/Ryujinx/Ui/MainWindow.glade
index 58d5d955..58d5d955 100644
--- a/Ryujinx/Ui/MainWindow.glade
+++ b/src/Ryujinx/Ui/MainWindow.glade
diff --git a/Ryujinx/Ui/OpenToolkitBindingsContext.cs b/src/Ryujinx/Ui/OpenToolkitBindingsContext.cs
index ec4111fa..ec4111fa 100644
--- a/Ryujinx/Ui/OpenToolkitBindingsContext.cs
+++ b/src/Ryujinx/Ui/OpenToolkitBindingsContext.cs
diff --git a/Ryujinx/Ui/RendererWidgetBase.cs b/src/Ryujinx/Ui/RendererWidgetBase.cs
index 65afa6e4..65afa6e4 100644
--- a/Ryujinx/Ui/RendererWidgetBase.cs
+++ b/src/Ryujinx/Ui/RendererWidgetBase.cs
diff --git a/Ryujinx/Ui/SPBOpenGLContext.cs b/src/Ryujinx/Ui/SPBOpenGLContext.cs
index 97644269..97644269 100644
--- a/Ryujinx/Ui/SPBOpenGLContext.cs
+++ b/src/Ryujinx/Ui/SPBOpenGLContext.cs
diff --git a/Ryujinx/Ui/StatusUpdatedEventArgs.cs b/src/Ryujinx/Ui/StatusUpdatedEventArgs.cs
index 046597b0..046597b0 100644
--- a/Ryujinx/Ui/StatusUpdatedEventArgs.cs
+++ b/src/Ryujinx/Ui/StatusUpdatedEventArgs.cs
diff --git a/Ryujinx/Ui/VKRenderer.cs b/src/Ryujinx/Ui/VKRenderer.cs
index d2106c58..d2106c58 100644
--- a/Ryujinx/Ui/VKRenderer.cs
+++ b/src/Ryujinx/Ui/VKRenderer.cs
diff --git a/Ryujinx/Ui/Widgets/GameTableContextMenu.Designer.cs b/src/Ryujinx/Ui/Widgets/GameTableContextMenu.Designer.cs
index 5a0563d9..5a0563d9 100644
--- a/Ryujinx/Ui/Widgets/GameTableContextMenu.Designer.cs
+++ b/src/Ryujinx/Ui/Widgets/GameTableContextMenu.Designer.cs
diff --git a/Ryujinx/Ui/Widgets/GameTableContextMenu.cs b/src/Ryujinx/Ui/Widgets/GameTableContextMenu.cs
index 558288aa..558288aa 100644
--- a/Ryujinx/Ui/Widgets/GameTableContextMenu.cs
+++ b/src/Ryujinx/Ui/Widgets/GameTableContextMenu.cs
diff --git a/Ryujinx/Ui/Widgets/GtkDialog.cs b/src/Ryujinx/Ui/Widgets/GtkDialog.cs
index d2cab219..d2cab219 100644
--- a/Ryujinx/Ui/Widgets/GtkDialog.cs
+++ b/src/Ryujinx/Ui/Widgets/GtkDialog.cs
diff --git a/Ryujinx/Ui/Widgets/GtkInputDialog.cs b/src/Ryujinx/Ui/Widgets/GtkInputDialog.cs
index 21b34937..21b34937 100644
--- a/Ryujinx/Ui/Widgets/GtkInputDialog.cs
+++ b/src/Ryujinx/Ui/Widgets/GtkInputDialog.cs
diff --git a/Ryujinx/Ui/Widgets/ProfileDialog.cs b/src/Ryujinx/Ui/Widgets/ProfileDialog.cs
index 242e8bd7..242e8bd7 100644
--- a/Ryujinx/Ui/Widgets/ProfileDialog.cs
+++ b/src/Ryujinx/Ui/Widgets/ProfileDialog.cs
diff --git a/Ryujinx/Ui/Widgets/ProfileDialog.glade b/src/Ryujinx/Ui/Widgets/ProfileDialog.glade
index adaf6608..adaf6608 100644
--- a/Ryujinx/Ui/Widgets/ProfileDialog.glade
+++ b/src/Ryujinx/Ui/Widgets/ProfileDialog.glade
diff --git a/Ryujinx/Ui/Widgets/RawInputToTextEntry.cs b/src/Ryujinx/Ui/Widgets/RawInputToTextEntry.cs
index a0092f29..a0092f29 100644
--- a/Ryujinx/Ui/Widgets/RawInputToTextEntry.cs
+++ b/src/Ryujinx/Ui/Widgets/RawInputToTextEntry.cs
diff --git a/Ryujinx/Ui/Widgets/UserErrorDialog.cs b/src/Ryujinx/Ui/Widgets/UserErrorDialog.cs
index fc3938d4..fc3938d4 100644
--- a/Ryujinx/Ui/Widgets/UserErrorDialog.cs
+++ b/src/Ryujinx/Ui/Widgets/UserErrorDialog.cs
diff --git a/Ryujinx/Ui/Windows/AboutWindow.Designer.cs b/src/Ryujinx/Ui/Windows/AboutWindow.Designer.cs
index fa1a0657..fa1a0657 100644
--- a/Ryujinx/Ui/Windows/AboutWindow.Designer.cs
+++ b/src/Ryujinx/Ui/Windows/AboutWindow.Designer.cs
diff --git a/Ryujinx/Ui/Windows/AboutWindow.cs b/src/Ryujinx/Ui/Windows/AboutWindow.cs
index 41cf9c01..41cf9c01 100644
--- a/Ryujinx/Ui/Windows/AboutWindow.cs
+++ b/src/Ryujinx/Ui/Windows/AboutWindow.cs
diff --git a/Ryujinx/Ui/Windows/AmiiboWindow.Designer.cs b/src/Ryujinx/Ui/Windows/AmiiboWindow.Designer.cs
index 3480c6e8..3480c6e8 100644
--- a/Ryujinx/Ui/Windows/AmiiboWindow.Designer.cs
+++ b/src/Ryujinx/Ui/Windows/AmiiboWindow.Designer.cs
diff --git a/Ryujinx/Ui/Windows/AmiiboWindow.cs b/src/Ryujinx/Ui/Windows/AmiiboWindow.cs
index 11a566d8..11a566d8 100644
--- a/Ryujinx/Ui/Windows/AmiiboWindow.cs
+++ b/src/Ryujinx/Ui/Windows/AmiiboWindow.cs
diff --git a/Ryujinx/Ui/Windows/AvatarWindow.cs b/src/Ryujinx/Ui/Windows/AvatarWindow.cs
index 0cda890f..0cda890f 100644
--- a/Ryujinx/Ui/Windows/AvatarWindow.cs
+++ b/src/Ryujinx/Ui/Windows/AvatarWindow.cs
diff --git a/Ryujinx/Ui/Windows/CheatWindow.cs b/src/Ryujinx/Ui/Windows/CheatWindow.cs
index 917603b2..917603b2 100644
--- a/Ryujinx/Ui/Windows/CheatWindow.cs
+++ b/src/Ryujinx/Ui/Windows/CheatWindow.cs
diff --git a/Ryujinx/Ui/Windows/CheatWindow.glade b/src/Ryujinx/Ui/Windows/CheatWindow.glade
index 37b1cbe0..37b1cbe0 100644
--- a/Ryujinx/Ui/Windows/CheatWindow.glade
+++ b/src/Ryujinx/Ui/Windows/CheatWindow.glade
diff --git a/Ryujinx/Ui/Windows/ControllerWindow.cs b/src/Ryujinx/Ui/Windows/ControllerWindow.cs
index 9b4befd8..9b4befd8 100644
--- a/Ryujinx/Ui/Windows/ControllerWindow.cs
+++ b/src/Ryujinx/Ui/Windows/ControllerWindow.cs
diff --git a/Ryujinx/Ui/Windows/ControllerWindow.glade b/src/Ryujinx/Ui/Windows/ControllerWindow.glade
index e433f5cc..e433f5cc 100644
--- a/Ryujinx/Ui/Windows/ControllerWindow.glade
+++ b/src/Ryujinx/Ui/Windows/ControllerWindow.glade
diff --git a/Ryujinx/Ui/Windows/DlcWindow.cs b/src/Ryujinx/Ui/Windows/DlcWindow.cs
index b22f1593..b22f1593 100644
--- a/Ryujinx/Ui/Windows/DlcWindow.cs
+++ b/src/Ryujinx/Ui/Windows/DlcWindow.cs
diff --git a/Ryujinx/Ui/Windows/DlcWindow.glade b/src/Ryujinx/Ui/Windows/DlcWindow.glade
index cd0d8674..cd0d8674 100644
--- a/Ryujinx/Ui/Windows/DlcWindow.glade
+++ b/src/Ryujinx/Ui/Windows/DlcWindow.glade
diff --git a/Ryujinx/Ui/Windows/SettingsWindow.cs b/src/Ryujinx/Ui/Windows/SettingsWindow.cs
index 27080bda..27080bda 100644
--- a/Ryujinx/Ui/Windows/SettingsWindow.cs
+++ b/src/Ryujinx/Ui/Windows/SettingsWindow.cs
diff --git a/Ryujinx/Ui/Windows/SettingsWindow.glade b/src/Ryujinx/Ui/Windows/SettingsWindow.glade
index 8ae6ea72..8ae6ea72 100644
--- a/Ryujinx/Ui/Windows/SettingsWindow.glade
+++ b/src/Ryujinx/Ui/Windows/SettingsWindow.glade
diff --git a/Ryujinx/Ui/Windows/TitleUpdateWindow.cs b/src/Ryujinx/Ui/Windows/TitleUpdateWindow.cs
index c40adc11..c40adc11 100644
--- a/Ryujinx/Ui/Windows/TitleUpdateWindow.cs
+++ b/src/Ryujinx/Ui/Windows/TitleUpdateWindow.cs
diff --git a/Ryujinx/Ui/Windows/TitleUpdateWindow.glade b/src/Ryujinx/Ui/Windows/TitleUpdateWindow.glade
index de557471..de557471 100644
--- a/Ryujinx/Ui/Windows/TitleUpdateWindow.glade
+++ b/src/Ryujinx/Ui/Windows/TitleUpdateWindow.glade
diff --git a/Ryujinx/Ui/Windows/UserProfilesManagerWindow.Designer.cs b/src/Ryujinx/Ui/Windows/UserProfilesManagerWindow.Designer.cs
index 7c9ae8ba..7c9ae8ba 100644
--- a/Ryujinx/Ui/Windows/UserProfilesManagerWindow.Designer.cs
+++ b/src/Ryujinx/Ui/Windows/UserProfilesManagerWindow.Designer.cs
diff --git a/Ryujinx/Ui/Windows/UserProfilesManagerWindow.cs b/src/Ryujinx/Ui/Windows/UserProfilesManagerWindow.cs
index a08b5dd1..a08b5dd1 100644
--- a/Ryujinx/Ui/Windows/UserProfilesManagerWindow.cs
+++ b/src/Ryujinx/Ui/Windows/UserProfilesManagerWindow.cs
diff --git a/Spv.Generator/Autogenerated/CoreGrammar.cs b/src/Spv.Generator/Autogenerated/CoreGrammar.cs
index 3b2f6fa6..3b2f6fa6 100644
--- a/Spv.Generator/Autogenerated/CoreGrammar.cs
+++ b/src/Spv.Generator/Autogenerated/CoreGrammar.cs
diff --git a/Spv.Generator/Autogenerated/GlslStd450Grammar.cs b/src/Spv.Generator/Autogenerated/GlslStd450Grammar.cs
index 4722d2e4..4722d2e4 100644
--- a/Spv.Generator/Autogenerated/GlslStd450Grammar.cs
+++ b/src/Spv.Generator/Autogenerated/GlslStd450Grammar.cs
diff --git a/Spv.Generator/Autogenerated/OpenClGrammar.cs b/src/Spv.Generator/Autogenerated/OpenClGrammar.cs
index ac990fbc..ac990fbc 100644
--- a/Spv.Generator/Autogenerated/OpenClGrammar.cs
+++ b/src/Spv.Generator/Autogenerated/OpenClGrammar.cs
diff --git a/Spv.Generator/ConstantKey.cs b/src/Spv.Generator/ConstantKey.cs
index d3c1b905..d3c1b905 100644
--- a/Spv.Generator/ConstantKey.cs
+++ b/src/Spv.Generator/ConstantKey.cs
diff --git a/Spv.Generator/DeterministicHashCode.cs b/src/Spv.Generator/DeterministicHashCode.cs
index 1bf0b468..1bf0b468 100644
--- a/Spv.Generator/DeterministicHashCode.cs
+++ b/src/Spv.Generator/DeterministicHashCode.cs
diff --git a/Spv.Generator/DeterministicStringKey.cs b/src/Spv.Generator/DeterministicStringKey.cs
index 491bb745..491bb745 100644
--- a/Spv.Generator/DeterministicStringKey.cs
+++ b/src/Spv.Generator/DeterministicStringKey.cs
diff --git a/Spv.Generator/GeneratorPool.cs b/src/Spv.Generator/GeneratorPool.cs
index f6c92918..f6c92918 100644
--- a/Spv.Generator/GeneratorPool.cs
+++ b/src/Spv.Generator/GeneratorPool.cs
diff --git a/Spv.Generator/Instruction.cs b/src/Spv.Generator/Instruction.cs
index 8ecfe683..8ecfe683 100644
--- a/Spv.Generator/Instruction.cs
+++ b/src/Spv.Generator/Instruction.cs
diff --git a/Spv.Generator/InstructionOperands.cs b/src/Spv.Generator/InstructionOperands.cs
index c48b004f..c48b004f 100644
--- a/Spv.Generator/InstructionOperands.cs
+++ b/src/Spv.Generator/InstructionOperands.cs
diff --git a/Spv.Generator/LICENSE b/src/Spv.Generator/LICENSE
index 31aa7938..31aa7938 100644
--- a/Spv.Generator/LICENSE
+++ b/src/Spv.Generator/LICENSE
diff --git a/Spv.Generator/LiteralInteger.cs b/src/Spv.Generator/LiteralInteger.cs
index 22cb5484..22cb5484 100644
--- a/Spv.Generator/LiteralInteger.cs
+++ b/src/Spv.Generator/LiteralInteger.cs
diff --git a/Spv.Generator/LiteralString.cs b/src/Spv.Generator/LiteralString.cs
index 629ff7bf..629ff7bf 100644
--- a/Spv.Generator/LiteralString.cs
+++ b/src/Spv.Generator/LiteralString.cs
diff --git a/Spv.Generator/Module.cs b/src/Spv.Generator/Module.cs
index 34ad6036..34ad6036 100644
--- a/Spv.Generator/Module.cs
+++ b/src/Spv.Generator/Module.cs
diff --git a/Spv.Generator/Operand.cs b/src/Spv.Generator/Operand.cs
index eaa2e13e..eaa2e13e 100644
--- a/Spv.Generator/Operand.cs
+++ b/src/Spv.Generator/Operand.cs
diff --git a/Spv.Generator/OperandType.cs b/src/Spv.Generator/OperandType.cs
index 06e8e1fb..06e8e1fb 100644
--- a/Spv.Generator/OperandType.cs
+++ b/src/Spv.Generator/OperandType.cs
diff --git a/Spv.Generator/Spv.Generator.csproj b/src/Spv.Generator/Spv.Generator.csproj
index 082dac9c..082dac9c 100644
--- a/Spv.Generator/Spv.Generator.csproj
+++ b/src/Spv.Generator/Spv.Generator.csproj
diff --git a/Spv.Generator/TypeDeclarationKey.cs b/src/Spv.Generator/TypeDeclarationKey.cs
index a4aa9563..a4aa9563 100644
--- a/Spv.Generator/TypeDeclarationKey.cs
+++ b/src/Spv.Generator/TypeDeclarationKey.cs
diff --git a/Spv.Generator/spirv.cs b/src/Spv.Generator/spirv.cs
index df28438b..df28438b 100644
--- a/Spv.Generator/spirv.cs
+++ b/src/Spv.Generator/spirv.cs