aboutsummaryrefslogtreecommitdiff
path: root/src/graphics
diff options
context:
space:
mode:
Diffstat (limited to 'src/graphics')
-rw-r--r--src/graphics/text.c6
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) {