aboutsummaryrefslogtreecommitdiff
path: root/teensy/teensy.h
diff options
context:
space:
mode:
authoriamcheeseman <[email protected]>2026-05-21 20:51:58 -0400
committeriamcheeseman <[email protected]>2026-05-21 20:51:58 -0400
commitbc5203f5a2e88aa6dd9f3ed54496d9813dfbc84e (patch)
tree927dac209a6bae30761495ff8990f878c38422c3 /teensy/teensy.h
parenta573068a4faad9aa1a0aa9fad92162ce0f2ad483 (diff)
allow size 0 clips
Diffstat (limited to 'teensy/teensy.h')
-rw-r--r--teensy/teensy.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/teensy/teensy.h b/teensy/teensy.h
index 300939c..e5954fc 100644
--- a/teensy/teensy.h
+++ b/teensy/teensy.h
@@ -23,7 +23,7 @@
#define ty_max(a, b) ((a) > (b) ? (a) : (b))
#define ty_min(a, b) ((a) < (b) ? (a) : (b))
-#define TY_CLIP_NONE ((ty_Recti){0})
+#define TY_CLIP_NONE (ty_recti(0, 0, -1, -1))
#define TY_COLOR_BLACK ty_color(0, 0, 0 )
#define TY_COLOR_RED ty_color(255, 0, 0 )