diff options
| author | iamcheeseman <[email protected]> | 2026-05-21 20:51:58 -0400 |
|---|---|---|
| committer | iamcheeseman <[email protected]> | 2026-05-21 20:51:58 -0400 |
| commit | bc5203f5a2e88aa6dd9f3ed54496d9813dfbc84e (patch) | |
| tree | 927dac209a6bae30761495ff8990f878c38422c3 /teensy/teensy.h | |
| parent | a573068a4faad9aa1a0aa9fad92162ce0f2ad483 (diff) | |
allow size 0 clips
Diffstat (limited to 'teensy/teensy.h')
| -rw-r--r-- | teensy/teensy.h | 2 |
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 ) |
