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;