diff options
author | Raymaekers Luca <raymaekers.luca@gmail.com> | 2024-12-07 19:17:33 +0100 |
---|---|---|
committer | Raymaekers Luca <luca@spacehb.net> | 2025-01-07 18:51:21 +0100 |
commit | 0574f5a7c5159a2ae1d7d2182cec982509947db9 (patch) | |
tree | 2a9678fd39bcf8ead03c7ee979caf668f2f17892 /archived/wrap.c | |
parent | 4aec2e1331650cabb966bbf24ed83f76cbbe9912 (diff) |
checkpoint
Diffstat (limited to 'archived/wrap.c')
-rw-r--r-- | archived/wrap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/archived/wrap.c b/archived/wrap.c index 57506b8..2317c6e 100644 --- a/archived/wrap.c +++ b/archived/wrap.c @@ -33,7 +33,7 @@ wrap(u8* Text, u32 Len, u32 XLimit, u32 YLimit) // break t = Text[X]; - *(Text + X) = '\0'; + Text[X] = '\0'; tb_printf(0, Y, 0, 0, "%s", Text + PrevX); Text[X] = t; Y++; |