diff options
author | dec05eba <dec05eba@protonmail.com> | 2021-11-07 08:24:55 +0100 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2021-11-07 08:24:55 +0100 |
commit | 16b0ce3748f1b3ea788bbaf4caaeb342a8f58d6f (patch) | |
tree | 32f0b62f1b4c21d8f7c38bbcda9658e468a28113 /src/graphics | |
parent | b3b9e8c2b8068ce2566a9be2a813b2f04088f3ce (diff) |
Use char array for text entered str, reset text fields on deinit
Diffstat (limited to 'src/graphics')
-rw-r--r-- | src/graphics/text.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/graphics/text.c b/src/graphics/text.c index 9804ab2..2f410d4 100644 --- a/src/graphics/text.c +++ b/src/graphics/text.c @@ -52,7 +52,11 @@ int mgl_text_init(mgl_text *self, mgl_font *font, const char *str, size_t str_si } void mgl_text_deinit(mgl_text *self) { - (void)self; + self->font = NULL; + self->position = (mgl_vec2f){ 0.0f, 0.0f }; + self->text = NULL; + self->text_size = 0; + self->bounds = (mgl_vec2f){ 0.0f, 0.0f }; } int mgl_text_set_string(mgl_text *self, const char *str, size_t str_size) { |