diff options
| author | Glenn <terids@gmail.com> | 2025-11-03 23:16:25 +0000 |
|---|---|---|
| committer | Glenn <terids@gmail.com> | 2025-11-03 23:16:25 +0000 |
| commit | 2951e51487ee7a0c40db39b94da7bf2e96a76084 (patch) | |
| tree | aa9c356ebb1fa600f87973fa6d223887c652731f | |
| parent | 4485a45866f2e0ca50e197822c54e085fbafcaea (diff) | |
Add comma to last enums to fix build check
| -rw-r--r-- | core/sys/darwin/Foundation/NSEvent.odin | 4 |
1 files 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, ) } |