From 2951e51487ee7a0c40db39b94da7bf2e96a76084 Mon Sep 17 00:00:00 2001 From: Glenn Date: Mon, 3 Nov 2025 23:16:25 +0000 Subject: [PATCH] Add comma to last enums to fix build check --- core/sys/darwin/Foundation/NSEvent.odin | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/sys/darwin/Foundation/NSEvent.odin b/core/sys/darwin/Foundation/NSEvent.odin index c7968423c..3bd0c1879 100644 --- a/core/sys/darwin/Foundation/NSEvent.odin +++ b/core/sys/darwin/Foundation/NSEvent.odin @@ -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, ) }