aboutsummaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
authorGlenn <terids@gmail.com>2025-11-03 23:16:25 +0000
committerGlenn <terids@gmail.com>2025-11-03 23:16:25 +0000
commit2951e51487ee7a0c40db39b94da7bf2e96a76084 (patch)
treeaa9c356ebb1fa600f87973fa6d223887c652731f /core
parent4485a45866f2e0ca50e197822c54e085fbafcaea (diff)
Add comma to last enums to fix build check
Diffstat (limited to 'core')
-rw-r--r--core/sys/darwin/Foundation/NSEvent.odin4
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,
)
}