Add comma to last enums to fix build check

This commit is contained in:
Glenn
2025-11-03 23:16:25 +00:00
parent 4485a45866
commit 2951e51487
+2 -2
View File
@@ -262,7 +262,7 @@ Event_otherEventWithType :: proc "c" (
ctx: id, ctx: id,
subtype: i16, subtype: i16,
data1: Integer, data1: Integer,
data2: Integer data2: Integer,
) -> ^Event { ) -> ^Event {
return msgSend( return msgSend(
^Event, ^Event,
@@ -276,7 +276,7 @@ Event_otherEventWithType :: proc "c" (
ctx, ctx,
subtype, subtype,
data1, data1,
data2 data2,
) )
} }