From d081aa8a743fe61690c7c77dda4c6f6268ae47fd Mon Sep 17 00:00:00 2001 From: MrKev312 <34964788+MrKev312@users.noreply.github.com> Date: Fri, 1 Aug 2025 22:46:36 +0200 Subject: [PATCH] Fix blank lines --- src/Ryujinx.Horizon.Kernel.Generators/SyscallGenerator.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Ryujinx.Horizon.Kernel.Generators/SyscallGenerator.cs b/src/Ryujinx.Horizon.Kernel.Generators/SyscallGenerator.cs index 9673784bd..c2cfec255 100644 --- a/src/Ryujinx.Horizon.Kernel.Generators/SyscallGenerator.cs +++ b/src/Ryujinx.Horizon.Kernel.Generators/SyscallGenerator.cs @@ -498,6 +498,7 @@ namespace Ryujinx.Horizon.Kernel.Generators { generator.AppendLine($"{syscall.Name}{suffix}(syscall, context);"); } + generator.AppendLine("break;"); generator.DecreaseIndentation(); @@ -514,7 +515,6 @@ namespace Ryujinx.Horizon.Kernel.Generators generator.LeaveScope(); } - private static bool Is32BitInteger(string canonicalTypeName) { return canonicalTypeName is TypeSystemInt32 or TypeSystemUInt32;