diff options
author | Leo Tenenbaum <pommicket@gmail.com> | 2021-01-27 17:45:04 -0500 |
---|---|---|
committer | Leo Tenenbaum <pommicket@gmail.com> | 2021-01-27 17:45:04 -0500 |
commit | 4554db338221f8fd1c7b4855b8d5bc50780815d2 (patch) | |
tree | 330e1f1130c758190c68830d7367927e9b9035a4 /text.h | |
parent | f02fa3b6e1f6c3b1c1325b999f101b5ca6e02558 (diff) |
more warn overwrite
Diffstat (limited to 'text.h')
-rw-r--r-- | text.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -13,6 +13,7 @@ typedef struct Font Font; typedef struct { // should the text actually be rendered (set to false to get text size) bool render; + bool wrap; // should the text wrap around to min_x when it reaches max_x? NOTE: this is character-by-character wrapping, not word wrap float x, y; // points at which the text should be cut off |