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

View File

@@ -262,7 +262,7 @@ Event_otherEventWithType :: proc "c" (
ctx: id,
subtype: i16,
data1: Integer,
data2: Integer
data2: Integer,
) -> ^Event {
return msgSend(
^Event,
@@ -276,7 +276,7 @@ Event_otherEventWithType :: proc "c" (
ctx,
subtype,
data1,
data2
data2,
)
}