Fix blank lines

merge-requests/93/head
MrKev312 2025-08-01 22:46:36 +02:00 committed by GreemDev
parent 17f7ca8bdc
commit d081aa8a74
1 changed files with 1 additions and 1 deletions

View File

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